Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of about 10,000 for unse (0.08 sec)

  1. pkg/kube/inject/testdata/inject/hello-probes-with-flag-unset-in-annotation.yaml.injected

    John Howard <******@****.***> 1709052916 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. operator/pkg/name/name.go

    }
    
    // Namespace returns the namespace for the component. It follows these rules:
    // 1. If DefaultNamespace is unset, log and error and return the empty string.
    // 2. If the feature and component namespaces are unset, return DefaultNamespace.
    // 3. If the feature namespace is set but component name is unset, return the feature namespace.
    // 4. Otherwise return the component namespace.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/ReferenceEntry.java

     * </ul>
     *
     * <p>Invalid:
     *
     * <ul>
     *   <li>Expired: time expired (key/value may still be set)
     *   <li>Collected: key/value was partially collected, but not yet cleaned up
     *   <li>Unset: marked as unset, awaiting cleanup or reuse
     * </ul>
     */
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    interface ReferenceEntry<K, V> {
      /** Returns the value reference from this entry. */
      @CheckForNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  4. pkg/kubelet/prober/results/results_manager_test.go

    )
    
    func TestCacheOperations(t *testing.T) {
    	m := NewManager()
    
    	unsetID := kubecontainer.ContainerID{Type: "test", ID: "unset"}
    	setID := kubecontainer.ContainerID{Type: "test", ID: "set"}
    
    	_, found := m.Get(unsetID)
    	assert.False(t, found, "unset result found")
    
    	m.Set(setID, Success, &corev1.Pod{})
    	result, found := m.Get(setID)
    	assert.True(t, result == Success, "set result")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 02 10:55:41 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. operator/scripts/run_update_golden_snapshots.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This command takes a snapshot of the charts and profiles which are used to generate golden files.
    
    # No unset vars, print commands as they're executed, and exit on any non-zero
    # return code
    set -u
    set -x
    set -e
    
    SCRIPTPATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
    ROOTDIR="${SCRIPTPATH}/../.."
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 20 23:10:38 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  6. security/pkg/credentialfetcher/fetcher.go

    	switch credtype {
    	case security.GCE:
    		return plugin.CreateGCEPlugin(trustdomain, jwtPath, identityProvider), nil
    	case security.JWT, "":
    		// If unset, also default to JWT for backwards compatibility
    		if jwtPath == "" {
    			return nil, nil // no cred fetcher - using certificates only
    		}
    		return plugin.CreateTokenPlugin(jwtPath), nil
    	case security.Mock: // for test only
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 07 22:21:41 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultProperty.java

            setConvention(Providers.internal(provider).asSupplier(getValidationDisplayName(), type, sanitizer));
            return this;
        }
    
        @Override
        public Property<T> unset() {
            super.unset();
            return this;
        }
    
        @Override
        public Property<T> unsetConvention() {
            discardConvention();
            return this;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. pilot/pkg/features/tuning.go

    	PushThrottle = func() int {
    		v := env.Register(
    			"PILOT_PUSH_THROTTLE",
    			0,
    			"Limits the number of concurrent pushes allowed. On larger machines this can be increased for faster pushes. "+
    				"If set to 0 or unset, the max will be automatically determined based on the machine size",
    		).Get()
    		if v > 0 {
    			return v
    		}
    		procs := runtime.GOMAXPROCS(0)
    		// Heuristic to scale with cores. We end up with...
    		// 1: 20
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 04:22:19 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. pkg/apis/extensions/v1beta1/defaults.go

    	// which has the same meaning as unset.
    	if obj.Spec.ProgressDeadlineSeconds == nil {
    		obj.Spec.ProgressDeadlineSeconds = new(int32)
    		*obj.Spec.ProgressDeadlineSeconds = math.MaxInt32
    	}
    	// Set extensionsv1beta1.DeploymentSpec.RevisionHistoryLimit to MaxInt32,
    	// which has the same meaning as unset.
    	if obj.Spec.RevisionHistoryLimit == nil {
    		obj.Spec.RevisionHistoryLimit = new(int32)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  10. cluster/kube-util.sh

    # limitations under the License.
    
    # This script will source the default skeleton helper functions, then sources
    # cluster/${KUBERNETES_PROVIDER}/util.sh where KUBERNETES_PROVIDER, if unset,
    # will use its default value (gce).
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    source "${KUBE_ROOT}/cluster/skeleton/util.sh"
    
    if [[ -n "${KUBERNETES_CONFORMANCE_TEST:-}" ]]; then
        KUBERNETES_PROVIDER=""
    else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 21 19:52:51 UTC 2020
    - 1.4K bytes
    - Viewed (0)
Back to top