Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 321 for Negate (0.33 sec)

  1. src/internal/trace/traceviewer/static/trace_viewer_full.html

    var mode=m[1][0];var negate=Boolean(m[2]);var value=m[3].trim();var customEvent,notifyEvent,colon;if(mo...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
  2. pkg/features/client_adapter.go

    // clientAdapter adapts a k8s.io/component-base/featuregate.MutableFeatureGate to client-go's
    // feature Gate and Registry interfaces. The component-base types Feature, FeatureSpec, and
    // prerelease, and the component-base prerelease constants, are duplicated by parallel types and
    // constants in client-go. The parallel types exist to allow the feature gate mechanism to be used
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 16 17:51:00 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. pkg/api/persistentvolumeclaim/util.go

    	// feature gate is disabled.
    	if !utilfeature.DefaultFeatureGate.Enabled(features.VolumeAttributesClass) {
    		if oldPVCSpec == nil || oldPVCSpec.VolumeAttributesClassName == nil {
    			pvcSpec.VolumeAttributesClassName = nil
    		}
    	}
    
    	// Drop the contents of the dataSourceRef field if the AnyVolumeDataSource
    	// feature gate is disabled.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:18:56 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/convert.go

    				Name:  k,
    				Value: image.Spec.Annotations[k],
    			})
    		}
    	}
    
    	spec := kubecontainer.ImageSpec{
    		Image:       image.Id,
    		Annotations: annotations,
    	}
    	// if RuntimeClassInImageCriAPI feature gate is enabled, set runtimeHandler CRI field
    	if utilfeature.DefaultFeatureGate.Enabled(features.RuntimeClassInImageCriAPI) {
    		runtimeHandler := ""
    		if image.Spec != nil {
    			runtimeHandler = image.Spec.RuntimeHandler
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 22:52:46 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/deployment/internal/DefaultContinuousExecutionGate.java

                return gatekeeper;
            } finally {
                lock.unlock();
            }
        }
    
        private void open(GateKeeper gatekeeper) {
            lock.lock();
            try {
                // gate hasn't been opened yet
                if (isClosed()) {
                    openedBy = gatekeeper;
                    opened.signalAll();
                }
            } finally {
                lock.unlock();
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. .github/ISSUE_TEMPLATE/feature_addition_request.yaml

            Before new features get added to Guava, we really want to be sure that it's for a use case
            that actually comes up in the real world. We want to hear the real-world use case so the
            community can discuss and debate whether this feature is actually the *best* way to address
            the real use case, or whether or not a different abstraction might be more appropriate.
    
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. hack/verify-test-featuregates.sh

    # This script checks whether mutable global feature gate is invocated correctly
    # in `*_test.go` files.
    # Usage: `hack/verify-test-featuregates.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    cd "${KUBE_ROOT}"
    
    rc=0
    
    # find test files accessing the mutable global feature gate or interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. test/stress/runstress.go

    		log.Fatalf("stressExec: exec output = %q; want %q", out, wantOutput)
    	}
    	Println("did exec")
    }
    
    func stressExec() {
    	gate := make(chan bool, 10) // max execs at once
    	for {
    		gate <- true
    		go func() {
    			doAnExec()
    			<-gate
    		}()
    	}
    }
    
    func ringf(in <-chan int, out chan<- int, donec chan bool) {
    	for {
    		var n int
    		select {
    		case <-donec:
    			return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:21:35 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. pkg/kubelet/status/generate.go

    	// Evaluate corresponding conditions specified in readiness gate
    	// Generate message if any readiness gate is not satisfied.
    	unreadyMessages := []string{}
    	for _, rg := range spec.ReadinessGates {
    		_, c := podutil.GetPodConditionFromList(conditions, rg.ConditionType)
    		if c == nil {
    			unreadyMessages = append(unreadyMessages, fmt.Sprintf("corresponding condition of pod readiness gate %q does not exist.", string(rg.ConditionType)))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 15:18:11 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. pkg/kubelet/apis/config/validation/validation_test.go

    	}, {
    		name: "enableSystemLogQuery is enabled without NodeLogQuery feature gate",
    		configure: func(conf *kubeletconfig.KubeletConfiguration) *kubeletconfig.KubeletConfiguration {
    			conf.EnableSystemLogQuery = true
    			return conf
    		},
    		errMsg: "invalid configuration: NodeLogQuery feature gate is required for enableSystemLogHandler",
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 28.7K bytes
    - Viewed (0)
Back to top