Meet the new c-Class


 
Thread Tools Search this Thread
Operating Systems HP-UX HP Server News and Podcasts RSS Meet the new c-Class
# 1  
Old 09-09-2008
Meet the new c-Class

We call this one the "empty box pitch" you'll see how we fill it up with the best blade technology in the industry to tackle our customers' toughest datacenter problems.

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Programming

C++ : Base class member function not accessible from derived class

Hello All, I am a learner in C++. I was testing my inheritance knowledge with following piece of code. #include <iostream> using namespace std; class base { public : void display() { cout << "In base display()" << endl; } void display(int k) {... (2 Replies)
Discussion started by: anand.shah
2 Replies

2. Programming

Size of Derived class, upon virtual base class inheritance

I have the two class definition as follows. class A { public: int a; }; class B : virtual public A{ }; The size of class A is shown as 4, and size of class B is shown as 16. Why is this effect ?. (2 Replies)
Discussion started by: techmonk
2 Replies

3. UNIX for Advanced & Expert Users

Get pointer for existing device class (struct class) in Linux kernel module

Hi all! I am trying to register a device in an existing device class, but I am having trouble getting the pointer to an existing class. I can create a class in a module, get the pointer to it and then use it to register the device with: *cl = class_create(THIS_MODULE, className);... (0 Replies)
Discussion started by: hdaniel@ualg.pt
0 Replies

4. Programming

static use for class inside the same class c++

Hi, I believe the next code is wrong: class Egg { Egg e; int i; Egg(int ii=0) : i(ii) {} }; because you would end up with an endless definition (memory allocation) of Egg objects, thus int i. Ok, so God Eckel proposes for a singleton: class Egg { static Egg e; int... (5 Replies)
Discussion started by: xavipoes
5 Replies

5. Programming

C++ class definition with a member of the same class

Hi, i have a question about C++. Is it possible to declare a class with a member ot the same class? For example, a linked list or i want to convert this C code to C++ class (Elemento) typedef struct elemento { char name; char value; List<struct elemento> ltElementos; ... (7 Replies)
Discussion started by: pogdorica
7 Replies

6. UNIX for Dummies Questions & Answers

car class (not school class)

im just trying to have some fun and kill some time writing a c++ program that has a person type in a car make and model then gives them a year and a price. or something like that. i always have problems getting it goin but once the ball is rolling im usually pretty good. anyone wanna help me out? ... (1 Reply)
Discussion started by: rickym2626
1 Replies

7. Shell Programming and Scripting

Need to meet anbu23

hi anbu23 u have just replied to my post i want to ask u something else can we get into contact thanks or reply itself mv -f $XXTEST_TOP/install/SPE1/XXTEST_SPE1_XX_QUOTE_DETAILS_TBL.sql $XXTEST_TOP/admin2/sql if then echo "Move is successful" fi 1. What u mean by $? here can u be... (1 Reply)
Discussion started by: Lutchumaya
1 Replies
Login or Register to Ask a Question
calendar(1)						      General Commands Manual						       calendar(1)

NAME
calendar - Writes reminder messages to standard output SYNOPSIS
calendar [-] STANDARDS
Interfaces documented on this reference page conform to industry standards as follows: calendar: XCU5.0 Refer to the standards(5) reference page for more information about industry standards and associated tags. OPTIONS
[Tru64 UNIX] Calls calendar for all users who have a calendar file in their home directories and sends reminders by mail. This flag is usually used only by the superuser as part of daily administrative procedures. DESCRIPTION
The calendar command reads a file named calendar in your current (usually home) directory and writes to standard output any line in the file that contains the current date or the next day's date. The calendar command recognizes date formats such as Dec. 7 or 12/7. It also recognizes the special character * (asterisk) to match any month. For example, it interprets */7 or * 7 as the seventh day of every month. On Fridays, calendar writes all lines containing the dates for Friday, Saturday, Sunday, and Monday. It does not recognize holidays, so if the next day is a holiday calendar prints lines for that day, rather than for the next working day. For you to get reminder service when other users run calendar -, your calendar file must be readable by others (see the chmod command). NOTES
The calendar utility is marked LEGACY in XCU Issue 5. EXIT STATUS
The following exit values are returned: Successful completion. An error occurred. EXAMPLES
To display information in the calendar file that pertains to today and tomorrow, enter: calendar A typical calendar file might look like this: */25 - Prepare monthly report Aug. 12 - Fly to Denver aug 23 - board meeting Martha out of town - 8/23, 8/24, 8/25 8/24 - Mail car payment sat aug/25 - beach trip August 27 - Meet with Simmons August 28 - Meet with Wilson If today is Friday, August 24, then the calendar command displays: */25 - Prepare monthly report Martha out of town - 8/23, 8/24, 8/25 8/24 - Mail car payment sat aug/25 - beach trip August 27 - Meet with Simmons ENVIRONMENT VARIABLES
The following environment variables affect the execution of calendar: [Tru64 UNIX] If this variable is set, the calendar command uses its value as the full pathname of a template file that contains format strings. The strings consist of field descriptors and text characters which are used to provide a more robust set of allowable date formats in different languages using the appropriate settings of the environ- ment variables LANG or LC_TIME. See environ(5) for more information. The list of allowable field descriptions is provided in the date(1) reference page. Provides a default value for the internationalization variables that are unset or null. If LANG is unset or null, the cor- responding value from the default locale is used. If any of the internationalization variables contain an invalid setting, the utility behaves as if none of the variables had been defined. If set to a non-empty string value, overrides the values of all the other interna- tionalization variables. Determines the locale for the interpretation of sequences of bytes of text data as characters (for example, sin- gle-byte as opposed to multibyte characters in input files). Determines the locale for the format and contents of diagnostic messages written to standard error. Determines the format of date strings recognized by the calendar command. Determines the location of message catalogues for the processing of LC_MESSAGES. FILES
Contains user calendar entries. Determines dates. Contains user information. SEE ALSO
Commands: chmod(1), date(1), mail(1), mailx(1) Environment: environ(5) Standards: standards(5) calendar(1)