Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for gopher_type (0.08 sec)

  1. src/flag/example_test.go

    // same default value. They must be set up with an init function.
    var gopherType string
    
    func init() {
    	const (
    		defaultGopher = "pocket"
    		usage         = "the variety of gopher"
    	)
    	flag.StringVar(&gopherType, "gopher_type", defaultGopher, usage)
    	flag.StringVar(&gopherType, "g", defaultGopher, usage+" (shorthand)")
    }
    
    // Example 3: A user-defined flag type, a slice of durations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 18:59:00 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/IsolatableSerializerRegistry.java

        private static final byte ISOLATED_ARRAY_OF_PRIMITIVE = (byte) 17;
    
        private static final byte ISOLATABLE_TYPE = (byte) 0;
        private static final byte ARRAY_TYPE = (byte) 1;
        private static final byte OTHER_TYPE = (byte) 2;
        private static final byte NULL_TYPE = (byte) 3;
    
        private final IsolatableSerializer<?>[] isolatableSerializers = {
            new StringValueSnapshotSerializer(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
Back to top