Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 134 for Option (0.4 sec)

  1. cmd/kubelet/app/server.go

    		if err != nil {
    			return err
    		}
    		if reservedSystemCPUs.Size() > 0 {
    			// at cmd option validation phase it is tested either --system-reserved-cgroup or --kube-reserved-cgroup is specified, so overwrite should be ok
    			klog.InfoS("Option --reserved-cpus is specified, it will overwrite the cpu setting in KubeReserved and SystemReserved", "kubeReserved", s.KubeReserved, "systemReserved", s.SystemReserved)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         *
         * @param action the action to execute.
         */
        void beforeEvaluate(Action<? super Project> action);
    
        /**
         * <p>Adds an action to call immediately after this project is evaluated.</p>
         * <p>Passes the project to the
         * action as a parameter. Actions passed to this method execute in the same order they were passed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func impl_Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 uintptr) (err error) {
    	runtime.EnterSyscall()
    	r0, e2, e1 := CallLeFuncWithErr(GetZosLibVec()+SYS___PRCTL_A<<4, uintptr(option), uintptr(arg2), uintptr(arg3), uintptr(arg4), uintptr(arg5))
    	runtime.ExitSyscall()
    	if int64(r0) == -1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  4. tensorflow/BUILD

        ],
        visibility = ["//visibility:public"],
    )
    
    # This flag disables all google production dependencies, intended for
    # applications run with non-prod environment.
    # TODO(timshen): Currently this option only disables some dependencies.
    # See b/122528503.
    # copybara:uncomment_begin(google-only)
    # bool_flag(
    #     name = "tf_no_prod_deps",
    #     build_setting_default = False,
    # )
    #
    # config_setting(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_server_test.go

    				t.Fatalf("Handshake failed")
    			}
    		}
    		recordingConn.WriteTo(out)
    		t.Logf("Wrote %s\n", path)
    		childProcess.Wait()
    	}
    }
    
    func runServerTestForVersion(t *testing.T, template *serverTest, version, option string) {
    	// Make a deep copy of the template before going parallel.
    	test := *template
    	if template.config != nil {
    		test.config = template.config.Clone()
    	}
    	test.name = version + "-" + test.name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // Webhooks that specify this option *must* be idempotent, able to process objects they previously admitted.
      // Note:
      // * the number of additional invocations is not guaranteed to be exactly one.
      // * if additional invocations result in further modifications to the object, webhooks are not guaranteed to be invoked again.
      // * webhooks that use this option may be reordered to minimize the number of additional invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

         * declared. However if 2 configurations on the target project declares the same attributes,
         * we don't know which one to choose.
         *
         * This test implements a first option, which is to make this an error case.
         */
        def "should fail with reasonable error message if more than one configuration matches the attributes"() {
            given:
            createDirs("a", "b")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		// Prefetch instruction
    		// Do prefetch arg0 address with option aux. arg0=addr, arg1=memory, aux=option.
    		{name: "PRFM", argLength: 2, aux: "Int64", reg: prefreg, asm: "PRFM", hasSideEffects: true},
    
    		// Publication barrier
    		{name: "DMB", argLength: 1, aux: "Int64", asm: "DMB", hasSideEffects: true}, // Do data barrier. arg0=memory, aux=option.
    	}
    
    	blocks := []blockData{
    		{name: "EQ", controls: 1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.31.md

    - The kube-proxy nodeportAddresses / --nodeport-addresses option now
      accepts the value "primary", meaning to only listen for NodePort connections
      on the node's primary IPv4 and/or IPv6 address (according to the Node object).
      This is strongly recommended, if you were not previously using
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/lib.go

    	// GCC says "unrecognized command line option ‘-no-pie’"
    	// clang says "unknown argument: '-no-pie'"
    	return err == nil && !bytes.Contains(out, []byte("unrecognized")) && !bytes.Contains(out, []byte("unknown"))
    }
    
    // trimLinkerArgv returns a new copy of argv that does not include flags
    // that are not relevant for testing whether some linker option works.
    func trimLinkerArgv(argv []string) []string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top