Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 67 for flagstr (0.11 sec)

  1. src/cmd/link/internal/loader/loader.go

    	// Bitmaps and other side structures used to store data used to store
    	// symbol flags/attributes; these are to be accessed via the
    	// corresponding loader "AttrXXX" and "SetAttrXXX" methods. Please
    	// visit the comments on these methods for more details on the
    	// semantics / interpretation of the specific flags or attribute.
    	attrReachable        Bitmap // reachable symbols, indexed by global index
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    typedef TypeWithSize<8>::UInt UInt64;
    typedef TypeWithSize<8>::Int TimeInMillis;  // Represents time in milliseconds.
    
    // Utilities for command line flags and environment variables.
    
    // Macro for referencing flags.
    #define GTEST_FLAG(name) FLAGS_gtest_##name
    
    // Macros for declaring flags.
    #define GTEST_DECLARE_bool_(name) GTEST_API_ extern bool GTEST_FLAG(name)
    #define GTEST_DECLARE_int32_(name) \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  3. cmd/xl-storage.go

    		if len(b) > xioutil.DirectioAlignSize {
    			r := bytes.NewReader(b)
    			return s.writeAllDirect(ctx, filePath, r.Size(), r, flags, skipParent)
    		}
    		w, err = s.openFileSync(filePath, flags, skipParent)
    	} else {
    		w, err = s.openFile(filePath, flags, skipParent)
    	}
    	if err != nil {
    		return err
    	}
    
    	n, err := w.Write(b)
    	if err != nil {
    		w.Close()
    		return err
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. src/crypto/tls/common.go

    		if c.flags&suiteECDHE == 0 {
    			return false
    		}
    		if c.flags&suiteECSign != 0 {
    			if !ecdsaCipherSuite {
    				return false
    			}
    		} else {
    			if ecdsaCipherSuite {
    				return false
    			}
    		}
    		if vers < VersionTLS12 && c.flags&suiteTLS12 != 0 {
    			return false
    		}
    		return true
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  5. src/reflect/type.go

    		return typehash(ktyp, p, seed)
    	}
    	mt.Flags = 0
    	if ktyp.Size_ > abi.MapMaxKeyBytes {
    		mt.KeySize = uint8(goarch.PtrSize)
    		mt.Flags |= 1 // indirect key
    	} else {
    		mt.KeySize = uint8(ktyp.Size_)
    	}
    	if etyp.Size_ > abi.MapMaxElemBytes {
    		mt.ValueSize = uint8(goarch.PtrSize)
    		mt.Flags |= 2 // indirect value
    	} else {
    		mt.MapType.ValueSize = uint8(etyp.Size_)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  6. src/runtime/asm_amd64.s

    	JNE	notintel
    	CMPL	DX, $0x49656E69  // "ineI"
    	JNE	notintel
    	CMPL	CX, $0x6C65746E  // "ntel"
    	JNE	notintel
    	MOVB	$1, runtime·isIntel(SB)
    
    notintel:
    	// Load EAX=1 cpuid flags
    	MOVL	$1, AX
    	CPUID
    	MOVL	AX, runtime·processorVersionInfo(SB)
    
    nocpuinfo:
    	// if there is an _cgo_init, call it.
    	MOVQ	_cgo_init(SB), AX
    	TESTQ	AX, AX
    	JZ	needtls
    	// arg 1: g0, already in DI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/prove.go

    	d := signed
    	if ft.isNonNegative(iv.min) && ft.isNonNegative(iv.max) {
    		d |= unsigned
    	}
    
    	if iv.flags&indVarMinExc == 0 {
    		addRestrictions(b, ft, d, iv.min, iv.ind, lt|eq)
    	} else {
    		addRestrictions(b, ft, d, iv.min, iv.ind, lt)
    	}
    
    	if iv.flags&indVarMaxInc == 0 {
    		addRestrictions(b, ft, d, iv.ind, iv.max, lt)
    	} else {
    		addRestrictions(b, ft, d, iv.ind, iv.max, lt|eq)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // aliasing, he should define GTEST_HAS_GLOBAL_STRING to 0.
    //
    // If the user doesn't define GTEST_HAS_GLOBAL_STRING, it is defined
    // heuristically.
    
    namespace testing {
    
    // Declares the flags.
    
    // This flag temporary enables the disabled tests.
    GTEST_DECLARE_bool_(also_run_disabled_tests);
    
    // This flag brings the debugger on an assertion failure.
    GTEST_DECLARE_bool_(break_on_failure);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.3.md

        * Use autoscaling/v1 in kubectl by default.
    * federation: Adding dnsprovider flags to federation-controller-manager ([#27158](https://github.com/kubernetes/kubernetes/pull/27158), [@nikhiljindal](https://github.com/nikhiljindal))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		t.Errorf("expected 1Mi value to be encoded as %q, got: %q", expected, string(data))
    	}
    }
    
    func ExampleQuantityValue() {
    	q := QuantityValue{
    		Quantity: MustParse("1Mi"),
    	}
    	fs := pflag.FlagSet{}
    	fs.SetOutput(os.Stdout)
    	fs.Var(&q, "mem", "sets amount of memory")
    	fs.PrintDefaults()
    	// Output:
    	// --mem quantity   sets amount of memory (default 1Mi)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
Back to top