Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 194 for Enabled (0.12 sec)

  1. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    	pv := makeTestPV("pv-migration-bound", "node1", "1G", "1", pvc, waitClass)
    	pv.Spec.NodeAffinity = nil // Will be written by the CSI translation lib
    	pv.ObjectMeta.Labels = labels
    	// GCEPersistentDisk is used when migration is enabled, as its featuregate is locked to GA.
    	// RBD is used for the nonmigrated case, as its featuregate is still alpha. When RBD migration goes GA,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  2. src/net/http/transport.go

    	// TLSClientConfig specifies the TLS configuration to use with
    	// tls.Client.
    	// If nil, the default configuration is used.
    	// If non-nil, HTTP/2 support may not be enabled by default.
    	TLSClientConfig *tls.Config
    
    	// TLSHandshakeTimeout specifies the maximum amount of time to
    	// wait for a TLS handshake. Zero means no timeout.
    	TLSHandshakeTimeout time.Duration
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  3. .bazelrc

    #     cuda:         Build with CUDA support.
    #     cuda_clang    Build with CUDA Clang support.
    #     rocm:         Build with AMD GPU support (rocm)
    #     mkl:          Enable full mkl support.
    #     tensorrt:     Enable Tensorrt support.
    #     noaws:        Disable AWS S3 storage support
    #     nogcp:        Disable GCS support.
    #     nohdfs:       Disable hadoop hdfs support.
    #     nonccl:       Disable nccl support.
    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. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

                         "Uses TF Uniform Quantized ops"))};
    
      Option<bool> enable_per_channel_quantization_{
          *this, "enable-per-channel-quantization", llvm::cl::init(false),
          llvm::cl::desc("Whether enable per-channel quantized weights.")};
    };
    
    LogicalResult CreateUniformQuantizedTypeParams(UniformQuantizedType qtype,
                                                   Location loc,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  5. pkg/apis/core/v1/defaults_test.go

    							IP: "1.2.3.4",
    						}},
    					},
    				}},
    			expectedIPMode: []*v1.LoadBalancerIPMode{nil},
    		}, {
    			name:          "Set IP but bot set IPMode with LoadbalancerIPMode enabled",
    			ipModeEnabled: true,
    			svc: &v1.Service{
    				Spec: v1.ServiceSpec{Type: v1.ServiceTypeLoadBalancer},
    				Status: v1.ServiceStatus{
    					LoadBalancer: v1.LoadBalancerStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  6. pilot/pkg/model/push_context_test.go

    							} else {
    								if mode && *previousVersion != ef {
    									// Validate that Unchanged filter is not regenerated when config optimization is enabled.
    									t.Errorf("Unchanged EnvoyFilter is different from original %s/%s", ns, ef.Name)
    								} else if !mode && *previousVersion == ef {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  7. src/net/dnsclient_unix_test.go

    					Class: dnsmessage.ClassINET,
    				},
    				Body: &dnsmessage.TXTResource{
    					TXT: []string{"ok"},
    				},
    			},
    		},
    	}
    
    	return r
    }
    
    // Issue 17448. With StrictErrors enabled, temporary errors should make
    // LookupIP fail rather than return a partial result.
    func TestStrictErrorsLookupIP(t *testing.T) {
    	defer dnsWaitGroup.Wait()
    
    	conf, err := newResolvConfTest()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            def result = property.get()
    
            then:
            result == someValue()
            0 * function._
        }
    
        def "can read value while finalizing property value on read when finalize on read enabled"() {
            def property = propertyWithNoValue()
            def function = Mock(Callable)
            def provider = new DefaultProvider<T>(function)
            property.set(provider)
            property.finalizeValueOnRead()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // Declares the flags.
    
    // This flag temporary enables the disabled tests.
    GTEST_DECLARE_bool_(also_run_disabled_tests);
    
    // This flag brings the debugger on an assertion failure.
    GTEST_DECLARE_bool_(break_on_failure);
    
    // This flag controls whether Google Test catches all test-thrown exceptions
    // and logs them as failures.
    GTEST_DECLARE_bool_(catch_exceptions);
    
    // This flag enables using colors in terminal output. Available values are
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/EventListenerTest.kt

    import org.junit.jupiter.api.BeforeEach
    import org.junit.jupiter.api.Tag
    import org.junit.jupiter.api.Test
    import org.junit.jupiter.api.Timeout
    import org.junit.jupiter.api.extension.RegisterExtension
    
    @Flaky // STDOUT logging enabled for test
    @Timeout(30)
    @Tag("Slow")
    class EventListenerTest {
      @RegisterExtension
      val platform = PlatformRule()
    
      @RegisterExtension
      val clientTestRule = OkHttpClientTestRule()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 56.9K bytes
    - Viewed (0)
Back to top