Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 428 for Disable (0.16 sec)

  1. pilot/pkg/features/pilot.go

    			"It is safe to disable it if you are quite sure you don't need this feature").Get()
    
    	EnableK8SServiceSelectWorkloadEntries = env.RegisterBoolVar("PILOT_ENABLE_K8S_SELECT_WORKLOAD_ENTRIES", true,
    		"If enabled, Kubernetes services with selectors will select workload entries with matching labels. "+
    			"It is safe to disable it if you are quite sure you don't need this feature").Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskContainerTest.groovy

            when:
            container.remove(task)
    
            then:
            def e = thrown(UnsupportedOperationException)
            e.message == "Removing tasks from the task container is not supported.  Disable the tasks or use replace() instead."
        }
    
        def "removing collection of tasks throws exception"() {
            given:
            def task1 = addTask("a")
            def task2 = addTask("b")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 14:36:44 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  3. pkg/scheduler/scheduler_test.go

    			plugins: schedulerapi.PluginSet{
    				Enabled: []schedulerapi.Plugin{
    					{Name: filterWithoutEnqueueExtensions},
    					{Name: queueSort},
    					{Name: fakeBind},
    				},
    				Disabled: []schedulerapi.Plugin{{Name: "*"}}, // disable default plugins
    			},
    			want: map[framework.GVK]framework.ActionType{
    				framework.Pod:                     framework.All,
    				framework.Node:                    framework.All,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 42K bytes
    - Viewed (0)
  4. cluster/gce/config-test.sh

    if [[ "${KUBE_FEATURE_GATES:-}" = 'AllAlpha=true' ]]; then
      RUNTIME_CONFIG=${KUBE_RUNTIME_CONFIG:-api/all=true}
    fi
    
    # By default disable gkenetworkparamset controller in CCM
    RUN_CCM_CONTROLLERS="${RUN_CCM_CONTROLLERS:-*,-gkenetworkparamset}"
    
    # Optional: set feature gates
    # shellcheck disable=SC2034 # Variables sourced in other scripts.
    FEATURE_GATES=${KUBE_FEATURE_GATES:-}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_quantizable_spots_as_functions.cc

          }
        }
        return std::nullopt;
      }
    
      absl::Status checkQuantizableOpsForXla(TF::PartitionedCallOp call_op,
                                             StringRef function_name) const {
        // Disable quantization for the DepthwiseConv since it has no benefits in
        // the XLA opset.
        if (function_name.contains("depthwise_conv2d")) {
          return absl::InternalError(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. src/cmd/dist/buildtool.go

    	os.Setenv("GOARCH", "")
    	os.Setenv("GOHOSTARCH", "")
    
    	// Run Go bootstrap to build binaries.
    	// Use the math_big_pure_go build tag to disable the assembly in math/big
    	// which may contain unsupported instructions.
    	// Use the purego build tag to disable other assembly code,
    	// such as in cmd/internal/notsha256.
    	cmd := []string{
    		pathf("%s/bin/go", goroot_bootstrap),
    		"install",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. Makefile

    test: verifiers build ## builds minio, runs linters, tests
    	@echo "Running unit tests"
    	@MINIO_API_REQUESTS_MAX=10000 CGO_ENABLED=0 go test -v -tags kqueue,dev ./...
    
    test-root-disable: install-race
    	@echo "Running minio root lockdown tests"
    	@env bash $(PWD)/buildscripts/disable-root.sh
    
    test-ilm: install-race
    	@echo "Running ILM tests"
    	@env bash $(PWD)/docs/bucket/replication/setup_ilm_expiry_replication.sh
    
    test-pbac: install-race
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. CONTRIBUTING.md

    Most tasks that are used to build Gradle support the configuration cache, but some don't. For example, building the documentation currently requires you to disable the configuration cache.
    
    To disable the configuration cache, run the build with `--no-configuration-cache`.
    
    Tasks known to have problems are listed in the build logic. You can find this list at:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/response-model.md

    ### Disable Response Model
    
    Continuing from the example above, you might not want to have the default data validation, documentation, filtering, etc. that is performed by FastAPI.
    
    But you might want to still keep the return type annotation in the function to get the support from tools like editors and type checkers (e.g. mypy).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  10. pkg/proxy/apis/config/types.go

    	// when using the iptables or ipvs proxy mode. This may be required with some CNI
    	// plugins.
    	MasqueradeAll bool
    	// localhostNodePorts, if false, tells kube-proxy to disable the legacy behavior
    	// of allowing NodePort services to be accessed via localhost. (Applies only to
    	// iptables mode and IPv4; localhost NodePorts are never allowed with other proxy
    	// modes or with IPv6.)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top