Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 372 for Enabled (0.19 sec)

  1. pilot/pkg/features/pilot.go

    		"PILOT_ENABLE_NODE_UNTAINT_CONTROLLERS",
    		false,
    		"If enabled, controller that untaints nodes with cni pods ready will run. This should be enabled if you disabled ambient init containers.").Get()
    
    	// EnableUnsafeAssertions enables runtime checks to test assertions in our code. This should never be enabled in
    	// production; when assertions fail Istio will panic.
    	EnableUnsafeAssertions = env.Register(
    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. src/sync/rwmutex.go

    func (rw *RWMutex) TryLock() bool {
    	if race.Enabled {
    		_ = rw.w.state
    		race.Disable()
    	}
    	if !rw.w.TryLock() {
    		if race.Enabled {
    			race.Enable()
    		}
    		return false
    	}
    	if !rw.readerCount.CompareAndSwap(0, -rwmutexMaxReaders) {
    		rw.w.Unlock()
    		if race.Enabled {
    			race.Enable()
    		}
    		return false
    	}
    	if race.Enabled {
    		race.Enable()
    		race.Acquire(unsafe.Pointer(&rw.readerSem))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. pkg/controlplane/instance_test.go

    	config := DefaultAPIResourceConfigSource()
    	for gv, enable := range config.GroupVersionConfigs {
    		if enable && strings.Contains(gv.Version, "alpha") {
    			t.Errorf("Alpha API version %s enabled by default", gv.String())
    		}
    	}
    
    	for gvr, enabled := range config.ResourceConfigs {
    		if !strings.Contains(gvr.Version, "alpha") || !enabled {
    			continue
    		}
    
    		// we have enabled an alpha api by resource {g,v,r}, we also expect the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  4. src/sync/waitgroup.go

    // See the WaitGroup example.
    func (wg *WaitGroup) Add(delta int) {
    	if race.Enabled {
    		if delta < 0 {
    			// Synchronize decrements with Wait.
    			race.ReleaseMerge(unsafe.Pointer(wg))
    		}
    		race.Disable()
    		defer race.Enable()
    	}
    	state := wg.state.Add(uint64(delta) << 32)
    	v := int32(state >> 32)
    	w := uint32(state)
    	if race.Enabled && delta > 0 && v == int32(delta) {
    		// The first increment must be synchronized with Wait.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheEncryptionIntegrationTest.groovy

            isFoundInDirectory(cacheDir, "sensitive_value1".getBytes()) == !enabled
            isFoundInDirectory(cacheDir, "sensitive_value2".getBytes()) == !enabled
            isFoundInDirectory(cacheDir, "sensitive_env_var_value".getBytes()) == !enabled
            isFoundInDirectory(cacheDir, "sensitive_value3".getBytes()) == !enabled
            isFoundInDirectory(cacheDir, "sensitive_convention".getBytes()) == !enabled
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc

        std::vector<std::string>* control_ret_node_names,
        bool* control_rets_updated) {
      //  overall_state equals to:
      //    Enabled if at least one pass is Enabled.
      //    Disabled if all passes are Disabled.
      //    FallbackEnabled if there are no Enabled passes and there is at least one
      //      FallbackEnabled pass.
      MlirOptimizationPassState overall_state = MlirOptimizationPassState::Disabled;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/values.yaml

        injectionCABundle: ""
      telemetry:
        enabled: false
        v2:
          # For Null VM case now.
          # This also enables metadata exchange.
          enabled: true
          # Indicate if prometheus stats filter is enabled or not
          prometheus:
            enabled: true
          # stackdriver filter settings.
          stackdriver:
            enabled: false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  8. tests/integration/iop-ambient-test-defaults.yaml

      name: install
    spec:
      profile: ambient
      components:
        ingressGateways:
          - name: istio-ingressgateway
            enabled: true
      values:
        cni:
          ambient:
            # Some of the tests require DNS capture
            # For that, DNS capture must be enabled in the CNI
            # and DNS proxying must be enabled in ztunnel
            dnsCapture: true
        ztunnel:
          meshConfig:
            defaultConfig:
              proxyMetadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 952 bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/registry.go

    		EnableVolumeCapacityPriority:                 feature.DefaultFeatureGate.Enabled(features.VolumeCapacityPriority),
    		EnableNodeInclusionPolicyInPodTopologySpread: feature.DefaultFeatureGate.Enabled(features.NodeInclusionPolicyInPodTopologySpread),
    		EnableMatchLabelKeysInPodTopologySpread:      feature.DefaultFeatureGate.Enabled(features.MatchLabelKeysInPodTopologySpread),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. manifests/charts/istio-control/istio-discovery/values.yaml

        injectionCABundle: ""
      telemetry:
        enabled: true
        v2:
          # For Null VM case now.
          # This also enables metadata exchange.
          enabled: true
          # Indicate if prometheus stats filter is enabled or not
          prometheus:
            enabled: true
          # stackdriver filter settings.
          stackdriver:
            enabled: false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top