Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 64 for flagstr (0.31 sec)

  1. 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 (2)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (InterCall ...) => (CALLinter ...)
    (TailCall ...) => (CALLtail ...)
    
    // Lowering conditional moves
    // If the condition is a SETxx, we can just run a CMOV from the comparison that was
    // setting the flags.
    // Legend: HI=unsigned ABOVE, CS=unsigned BELOW, CC=unsigned ABOVE EQUAL, LS=unsigned BELOW EQUAL
    (CondSelect <t> x y (SET(EQ|NE|L|G|LE|GE|A|B|AE|BE|EQF|NEF|GF|GEF) cond)) && (is64BitInt(t) || isPtr(t))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    //
    // Synopsis:
    // Bool()
    //   - returns a generator producing sequences with elements {false, true}.
    //
    // It is useful when testing code that depends on Boolean flags. Combinations
    // of multiple flags can be tested when several Bool()'s are combined using
    // Combine() function.
    //
    // In the following example all tests in the test case FlagDependentTest
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    //
    // Synopsis:
    // Bool()
    //   - returns a generator producing sequences with elements {false, true}.
    //
    // It is useful when testing code that depends on Boolean flags. Combinations
    // of multiple flags can be tested when several Bool()'s are combined using
    // Combine() function.
    //
    // In the following example all tests in the test case FlagDependentTest
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
Back to top