Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 186 for Enabled (0.47 sec)

  1. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    		},
    		{
    			name:                    "allow pod without restartable init containers if sidecar containers is enabled",
    			enableSidecarContainers: true,
    			pod:                     newPod(),
    		},
    		{
    			name:                    "allow pod with restartable init containers if sidecar containers is enabled",
    			enableSidecarContainers: true,
    			pod:                     newPodWithRestartableInitContainers(),
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

            strides,
            dilations,
            'SAME',
            has_func_alias,
        )
        # TODO: b/331809306 - Investigate why these test fail then re-enable.
        if has_batch_norm and (bias_fn or not input_shape_dynamic):
          return
    
        # TODO: b/331120943 - Re-enable this after correctly handling quantization
        # granularity per quantizable scope.
        if has_batch_norm and (not bias_fn and input_shape_dynamic):
          return
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    		}
    	}
    
    	var resourceInfo *storageversion.ResourceInfo
    	if utilfeature.DefaultFeatureGate.Enabled(features.StorageVersionAPI) &&
    		utilfeature.DefaultFeatureGate.Enabled(features.APIServerIdentity) &&
    		isStorageVersionProvider &&
    		storageVersionProvider.StorageVersion() != nil {
    
    		versioner := storageVersionProvider.StorageVersion()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  4. src/runtime/malloc.go

    		// TODO: This padding is only performed when the race detector
    		// is enabled. It would be nice to enable it if any package
    		// was compiled with checkptr, but there's no easy way to
    		// detect that (especially at compile time).
    		// TODO: enable this padding for all allocations, not just
    		// tinyalloc ones. It's tricky because of pointer maps.
    		// Maybe just all noscan objects?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. cmd/bucket-handlers.go

    		return
    	}
    
    	rawReader := hashReader
    	pReader := NewPutObjReader(rawReader)
    	var objectEncryptionKey crypto.ObjectKey
    
    	// Check if bucket encryption is enabled
    	sseConfig, _ := globalBucketSSEConfigSys.Get(bucket)
    	sseConfig.Apply(formValues, sse.ApplyOptions{
    		AutoEncrypt: globalAutoEncryption,
    	})
    
    	var opts ObjectOptions
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  6. tests/integration/ambient/baseline_test.go

    		if !f {
    			return fmt.Errorf("X-Request-Id not set, is L7 processing enabled?")
    		}
    		return nil
    	})
    }
    
    func IsL4() echo.Checker {
    	return check.Each(func(r echot.Response) error {
    		// TODO: response headers?
    		_, f := r.RequestHeaders[http.CanonicalHeaderKey("X-Request-Id")]
    		if f {
    			return fmt.Errorf("X-Request-Id set, is L7 processing enabled unexpectedly?")
    		}
    		return nil
    	})
    }
    
    var (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  7. pkg/registry/core/pod/strategy_test.go

    	}{
    		{
    			name:                          "nodeInclusionPolicy enabled with topology unset",
    			topologySpreadConstraints:     emptyConstraints,
    			wantTopologySpreadConstraints: emptyConstraints,
    			enableNodeInclusionPolicy:     true,
    		},
    		{
    			name:                          "nodeInclusionPolicy enabled with topology configured",
    			topologySpreadConstraints:     defaultConstraints,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            }
            if (isDebugLauncher()) {
                if (System.getenv().containsKey("CI")) {
                    throw new IllegalArgumentException("Builds cannot be started with the debugger enabled on CI. This will cause tests to hang forever. Remove the call to startLauncherInDebugger().");
                }
                gradleInvocation.implicitLauncherJvmArgs.add(debugLauncher.toDebugArgument());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. pkg/controller/volume/persistentvolume/pv_controller.go

    	if err != nil {
    		logger.V(3).Info("Error reading persistent volume", "volumeName", volume.Name, "err", err)
    		return "", nil
    	}
    
    	if !utilfeature.DefaultFeatureGate.Enabled(features.HonorPVReclaimPolicy) {
    		if newVolume.GetDeletionTimestamp() != nil {
    			logger.V(3).Info("Volume is already being deleted", "volumeName", volume.Name)
    			return "", nil
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  10. src/testing/testing.go

    		fmt.Fprintf(os.Stderr, "testing: cannot use -test.coverprofile because test binary was not built with coverage enabled\n")
    		os.Exit(2)
    	}
    	if *gocoverdir != "" && CoverMode() == "" {
    		fmt.Fprintf(os.Stderr, "testing: cannot use -test.gocoverdir because test binary was not built with coverage enabled\n")
    		os.Exit(2)
    	}
    	if *testlog != "" {
    		// Note: Not using toOutputDir.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top