Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for printhello (0.25 sec)

  1. src/internal/xcoff/testdata/printhello.c

    #include <stdio.h>
    
    void printhello(){
    	printf("Helloworld\n");
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 11 16:15:10 UTC 2018
    - 66 bytes
    - Viewed (0)
  2. src/internal/xcoff/ar_test.go

    	members           []*MemberHeader
    	membersFileHeader []FileHeader
    }
    
    var archTest = []archiveTest{
    	{
    		"testdata/bigar-ppc64",
    		ArchiveHeader{AIAMAGBIG},
    		[]*MemberHeader{
    			{"printbye.o", 836},
    			{"printhello.o", 860},
    		},
    		[]FileHeader{
    			{U64_TOCMAGIC},
    			{U64_TOCMAGIC},
    		},
    	},
    	{
    		"testdata/bigar-empty",
    		ArchiveHeader{AIAMAGBIG},
    		[]*MemberHeader{},
    		[]FileHeader{},
    	},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 22:19:22 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  3. samples/kind-lb/setupkind.sh

          SERVICESUBNET="$2"; shift 2;;
        -i|--ip-family)
          IPFAMILY="${2,,}";shift 2;;
        --ipv6gw)
          IPV6GW=true; shift;;
        -h|--help)
          printHelp; exit 0;;
        *) # unknown option
          echo "parameter $1 is not supported"; printHelp; exit 1;;
      esac
    done
    
    # This block is to setup kind to have a local image repo to push
    # images using localhost:5000, to use this feature, start up
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 02 19:08:19 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  4. maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

            int width = MessageUtils.getTerminalWidth();
            if (width <= 0) {
                width = HelpFormatter.DEFAULT_WIDTH;
            }
    
            formatter.printHelp(
                    pw,
                    width,
                    "mvn [args]",
                    System.lineSeparator() + "Options:",
                    options,
                    HelpFormatter.DEFAULT_LEFT_PAD,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top