Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 42 for DISABLE (0.35 sec)

  1. pkg/test/framework/features/allowlist.txt

    security,TestMutualTLSMigration
    security,TestPassThroughFilterChain
    security,TestReachability
    security,TestReachability/automtls-partial-sidecar-dr-disable
    security,TestReachability/automtls-partial-sidecar-dr-disable/a->http://multiversion:http/vistio
    security,TestReachability/automtls-partial-sidecar-dr-disable/a->http://multiversion:http/vlegacy
    security,TestReachability/automtls-partial-sidecar-dr-mutual
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 18 18:03:23 UTC 2022
    - 103.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    	// But that would mean that if an analysis causes problems like
    	// unexpected crashes there would be no way to turn it off.
    	// It seems better to let the flags disable export analysis too.
    	fmt.Fprintf(h, "vetflags %q\n", vetFlags)
    
    	fmt.Fprintf(h, "pkg %q\n", a.Deps[0].actionID)
    	for _, a1 := range a.Deps {
    		if a1.Mode == "vet" && a1.built != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. fastapi/applications.py

                bool,
                Doc(
                    """
                    To disable automatically generating the URLs in the `servers` field
                    in the autogenerated OpenAPI using the `root_path`.
    
                    Read more about it in the
                    [FastAPI docs for Behind a Proxy](https://fastapi.tiangolo.com/advanced/behind-a-proxy/#disable-automatic-server-from-root_path).
    
                    **Example**
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  4. pkg/kubelet/eviction/helpers_test.go

    					},
    				},
    			},
    		},
    		"disable via 0%": {
    			allocatableConfig: []string{},
    			evictionHard:      map[string]string{"memory.available": "0%"},
    			evictionSoft:      map[string]string{"memory.available": "0%"},
    			expectErr:         false,
    			expectThresholds:  []evictionapi.Threshold{},
    		},
    		"disable via 100%": {
    			allocatableConfig: []string{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  5. tensorflow/c/c_api.cc

    // --------------------------------------------------------------------------
    TF_SessionOptions* TF_NewSessionOptions() {
      TF_SessionOptions* out = new TF_SessionOptions;
      // Disable optimizations for static graph to allow calls to Session::Extend.
      out->options.config.mutable_experimental()
          ->set_disable_optimize_for_static_graph(true);
      return out;
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    			wantStatusCode: map[string]framework.Code{
    				"node-a": framework.Unschedulable,
    				"node-b": framework.Unschedulable,
    				"node-x": framework.Success,
    				"node-y": framework.Success, // in real case, when we disable NodeAffinity Plugin, node-y will be success.
    			},
    			enableNodeInclusionPolicy: true,
    		},
    		{
    			// pods spread across node as 1/1/0/~1~
    			name: "NodeAffinityPolicy ignored with labelSelectors",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            isTransformed("snapshot-1.2-SNAPSHOT.jar", "snapshot-1.2-SNAPSHOT.jar.txt")
            outputDir("snapshot-1.2-SNAPSHOT.jar", "snapshot-1.2-SNAPSHOT.jar.txt") != outputDir2
        }
    
        def "can disable storing to build-cache with experimental property"() {
            given:
            buildFile << declareAttributes() << withExternalLibDependency("lib1") << """
                @CacheableTransform
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    	// the number of allowed pods per core
    	podsPerCore int
    
    	// enableControllerAttachDetach indicates the Attach/Detach controller
    	// should manage attachment/detachment of volumes scheduled to this node,
    	// and disable kubelet from executing any attach/detach operations
    	enableControllerAttachDetach bool
    
    	// trigger deleting containers in a pod
    	containerDeletor *podContainerDeletor
    
    	// config iptables util rules
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func SetProcessPriorityBoost(process Handle, disable bool) (err error) {
    	var _p0 uint32
    	if disable {
    		_p0 = 1
    	}
    	r1, _, e1 := syscall.Syscall(procSetProcessPriorityBoost.Addr(), 2, uintptr(process), uintptr(_p0), 0)
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  10. cmd/site-replication.go

    				return madmin.ReplicateEditStatus{}, errSRInvalidRequest(fmt.Errorf("Endpoint %s does not belong to deployment expected: %s (found %s) ", peer.Endpoint, v.DeploymentID, info.DeploymentID))
    			}
    		}
    	}
    
    	// if disable/enable ILM expiry replication, deployment id not needed.
    	// check for below error only if other options being updated (e.g. endpoint, sync, bandwidth)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
Back to top