Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 195 for Enabled (0.6 sec)

  1. src/syscall/syscall_windows.go

    	if race.Enabled {
    		race.ReleaseMerge(unsafe.Pointer(&ioSync))
    	}
    	err := writeFile(fd, p, done, overlapped)
    	if race.Enabled && *done > 0 {
    		race.ReadRange(unsafe.Pointer(&p[0]), int(*done))
    	}
    	if msan.Enabled && *done > 0 {
    		msan.Read(unsafe.Pointer(&p[0]), uintptr(*done))
    	}
    	if asan.Enabled && *done > 0 {
    		asan.Read(unsafe.Pointer(&p[0]), uintptr(*done))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  2. configure.py

          Nvidia GPUs".
        enabled_by_default: boolean for default behavior.
        question: optional string for how to ask for user input.
        yes_reply: optional string for reply when feature is enabled.
        no_reply: optional string for reply when feature is disabled.
    
      Returns:
        boolean value of the variable.
    
      Raises:
        UserInputError: if an environment variable is set, but it cannot be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    When debugging for tests is enabled, Gradle will start the test process suspended and listening on port 5005.
    
    You can also enable debugging in the DSL, where you can also configure other properties:
    
        test {
            debugOptions {
                enabled = true
                host = 'localhost'
                port = 4455
                server = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	container := spec.container
    
    	// Step 1: pull the image.
    
    	// If RuntimeClassInImageCriAPI feature gate is enabled, pass runtimehandler
    	// information for the runtime class specified. If not runtime class is
    	// specified, then pass ""
    	podRuntimeHandler := ""
    	var err error
    	if utilfeature.DefaultFeatureGate.Enabled(features.RuntimeClassInImageCriAPI) {
    		if pod.Spec.RuntimeClassName != nil && *pod.Spec.RuntimeClassName != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  5. cmd/batch-handlers.go

    	// If source has versioning enabled, target must have versioning enabled
    	if minioType && ((info.Versioning && !vcfg.Enabled() && !isRemoteToLocal) || (!info.Versioning && vcfg.Enabled() && isRemoteToLocal)) {
    		return batchReplicationJobError{
    			Code: "InvalidBucketState",
    			Description: fmt.Sprintf("The source '%s' has versioning enabled, target '%s' must have versioning enabled",
    				r.Source.Bucket, r.Target.Bucket),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  6. pkg/kubelet/status/status_manager_test.go

    			func(input v1.PodStatus) v1.PodStatus { return input },
    			getPodStatus(),
    		},
    		{
    			"add DisruptionTarget condition when transitioning into failed phase; PodDisruptionConditions enabled",
    			true,
    			false,
    			func(input v1.PodStatus) v1.PodStatus { return input },
    			func(input v1.PodStatus) v1.PodStatus {
    				input.Phase = v1.PodFailed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_tls_test.go

    						},
    						ValidationContextType: &tls.CommonTlsContext_ValidationContext{},
    					},
    					Sni: "some-sni.com",
    				},
    				err: nil,
    			},
    		},
    		{
    			name: "tls mode SIMPLE, with AutoSni enabled and no sni specified in tls",
    			opts: &buildClusterOpts{
    				mutable: newTestCluster(),
    			},
    			tls: &networking.ClientTLSSettings{
    				Mode:            networking.ClientTLSSettings_SIMPLE,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  8. cmd/kube-controller-manager/app/options/options_test.go

    	if !watchListClientValue {
    		t.Fatalf("expected %q feature gate to be enabled after setting the command line flag", clientgofeaturegate.WatchListClient)
    	}
    }
    
    func assertWatchListClientFeatureDefaultValue(t *testing.T) {
    	watchListClientDefaultValue := clientgofeaturegate.FeatureGates().Enabled(clientgofeaturegate.WatchListClient)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue.go

    	pod := pInfo.Pod
    	// Refresh the timestamp since the pod is re-added.
    	pInfo.Timestamp = p.clock.Now()
    
    	// When the queueing hint is enabled, they are used differently.
    	// But, we use all of them as UnschedulablePlugins when the queueing hint isn't enabled so that we don't break the old behaviour.
    	rejectorPlugins := pInfo.UnschedulablePlugins.Union(pInfo.PendingPlugins)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  10. src/crypto/tls/common.go

    // the state machine and has been the source of numerous, subtle security
    // issues. Initiating a renegotiation is not supported, but support for
    // accepting renegotiation requests may be enabled.
    //
    // Even when enabled, the server may not change its identity between handshakes
    // (i.e. the leaf certificate must be the same). Additionally, concurrent
    // handshake and application data flow is not permitted so renegotiation can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
Back to top