Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 50 for vflag (0.06 sec)

  1. src/cmd/internal/obj/mips/asm0.go

    	/*
    	 * if any procedure is large enough to
    	 * generate a large SBRA branch, then
    	 * generate extra passes putting branches
    	 * around jmps to fix. this is rare.
    	 */
    	bflag := 1
    
    	var otxt int64
    	var q *obj.Prog
    	for bflag != 0 {
    		bflag = 0
    		pc = 0
    		for p = c.cursym.Func().Text.Link; p != nil; p = p.Link {
    			p.Pc = pc
    			o = c.oplook(p)
    
    			// very large conditional branches
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //                  - integers of known sizes.
    //   BiggestInt     - the biggest signed integer type.
    //
    // Command-line utilities:
    //   GTEST_FLAG()       - references a flag.
    //   GTEST_DECLARE_*()  - declares a flag.
    //   GTEST_DEFINE_*()   - defines a flag.
    //   GetInjectableArgvs() - returns the command line as a vector of strings.
    //
    // Environment variable utilities:
    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. .bazelrc

    build --define=grpc_no_ares=true
    
    # See https://github.com/bazelbuild/bazel/issues/7362 for information on what
    # --incompatible_remove_legacy_whole_archive flag does.
    # This flag is set to true in Bazel 1.0 and newer versions. We tried to migrate
    # Tensorflow to the default, however test coverage wasn't enough to catch the
    # errors.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. src/fmt/fmt_test.go

    	// unicode format
    	{"%U", 0, "U+0000"},
    	{"%U", -1, "U+FFFFFFFFFFFFFFFF"},
    	{"%U", '\n', `U+000A`},
    	{"%#U", '\n', `U+000A`},
    	{"%+U", 'x', `U+0078`},       // Plus flag should have no effect.
    	{"%# U", 'x', `U+0078 'x'`},  // Space flag should have no effect.
    	{"%#.2U", 'x', `U+0078 'x'`}, // Precisions below 4 should print 4 digits.
    	{"%U", '\u263a', `U+263A`},
    	{"%#U", '\u263a', `U+263A '☺'`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  5. cmd/object-api-listobjects_test.go

    		marker     string
    		delimiter  string
    		maxKeys    int
    		versioned  bool
    		// Expected output of ListObjects.
    		resultL ListObjectsInfo
    		resultV ListObjectVersionsInfo
    		err     error
    		// Flag indicating whether the test is expected to pass or not.
    		shouldPass bool
    	}{
    		{testBuckets[0], "unique/", "", "/", 1000, false, resultCases[0], ListObjectVersionsInfo{}, nil, true},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/load.go

    		}
    		if suggestUpgrade {
    			eDesc := ""
    			eFlag := ""
    			if suggestEFlag {
    				eDesc = ", leaving some packages unresolved"
    				eFlag = " -e"
    			}
    			fmt.Fprintf(os.Stderr, "To upgrade to the versions selected by go %s%s:\n\tgo mod tidy%s -go=%s && go mod tidy%s -go=%s%s\n", compatVersion, eDesc, eFlag, compatVersion, eFlag, goVersion, compatFlag)
    		} else if suggestEFlag {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/go.sum

    github.com/spf13/cobra v1.8.0 h1:7aJaZx1B85qltLMc546zn58BxxfZdR/W22ej9CFoEf0=
    github.com/spf13/cobra v1.8.0/go.mod h1:WXLWApfZ71AjXPya3WOlMsY9yMs7YeiHhFVlvLyhcho=
    github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=
    github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
    github.com/stoewer/go-strcase v1.2.0 h1:Z2iHWqGXH00XYgqDmNgQbIBxf3wrNq0F3feEy0ainaU=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  8. pkg/proxy/winkernel/proxier.go

    }
    
    func getNetworkName(hnsNetworkName string) (string, error) {
    	if len(hnsNetworkName) == 0 {
    		klog.V(3).InfoS("Flag --network-name not set, checking environment variable")
    		hnsNetworkName = os.Getenv("KUBE_NETWORK")
    		if len(hnsNetworkName) == 0 {
    			return "", fmt.Errorf("Environment variable KUBE_NETWORK and network-flag not initialized")
    		}
    	}
    	return hnsNetworkName, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    The dependency verification file can be generated with the following CLI instructions:
    
    ----
    gradle --write-verification-metadata sha256 help
    ----
    
    The `write-verification-metadata` flag requires the list of <<#sec:checksum-verification,checksums>> that you want to generate or `pgp` for <<#sec:signature-verification,signatures>>.
    
    Executing this command line will cause Gradle to:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_server_test.go

    	config.NextProtos = []string{"proto1", "proto2"}
    
    	test := &serverTest{
    		name: "ALPN",
    		// Note that this needs OpenSSL 1.0.2 because that is the first
    		// version that supports the -alpn flag.
    		command: []string{"openssl", "s_client", "-alpn", "proto2,proto1", "-cipher", "ECDHE-RSA-CHACHA20-POLY1305", "-ciphersuites", "TLS_CHACHA20_POLY1305_SHA256"},
    		config:  config,
    		validate: func(state ConnectionState) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top