Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 365 for Everything (0.32 sec)

  1. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeConventionIntegrationTest.groovy

            "no conventions, top-level property is set"        | ""                                 | setId("test")         | """id = test\nbar = bar"""
            "everything has convention and nothing set"        | setAll("convention", "convention") | ""                    | """id = convention\nbar = convention"""
            "everything has convention and is set"             | setAll("convention", "convention") | setAll("test", "baz") | """id = test\nbar = baz"""
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 12:50:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/util.go

    	}
    	if newListFunc == nil {
    		return 0, fmt.Errorf("newListFunction wasn't provided for %s", objectType)
    	}
    	emptyList := newListFunc()
    	pred := SelectionPredicate{
    		Label: labels.Everything(),
    		Field: fields.Everything(),
    		Limit: 1, // just in case we actually hit something
    	}
    
    	err := storage.GetList(ctx, resourcePrefix, ListOptions{Predicate: pred}, emptyList)
    	if err != nil {
    		return 0, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:05:06 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. manifests/charts/gateway/files/profile-ambient.yaml

          ISTIO_META_ENABLE_HBONE: "true"
    global:
      variant: distroless
    pilot:
      env:
        PILOT_ENABLE_AMBIENT: "true"
    cni:
      ambient:
        enabled: true
    
    # Ztunnel doesn't use a namespace, so everything here is mostly for ztunnel
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 610 bytes
    - Viewed (0)
  4. manifests/charts/base/files/profile-ambient.yaml

          ISTIO_META_ENABLE_HBONE: "true"
    global:
      variant: distroless
    pilot:
      env:
        PILOT_ENABLE_AMBIENT: "true"
    cni:
      ambient:
        enabled: true
    
    # Ztunnel doesn't use a namespace, so everything here is mostly for ztunnel
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 610 bytes
    - Viewed (0)
  5. pkg/controlplane/controller/crdregistration/crdregistration_controller.go

    	if !cache.WaitForNamedCacheSync("crd-autoregister", stopCh, c.crdSynced) {
    		return
    	}
    
    	// process each item in the list once
    	if crds, err := c.crdLister.List(labels.Everything()); err != nil {
    		utilruntime.HandleError(err)
    	} else {
    		for _, crd := range crds {
    			for _, version := range crd.Spec.Versions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CheckedFingerprint.kt

    package org.gradle.internal.cc.impl
    
    import org.gradle.util.Path
    
    
    sealed class CheckedFingerprint {
        // No fingerprint, which means no cache entry
        object NotFound : CheckedFingerprint()
    
        // Everything is up-to-date
        object Valid : CheckedFingerprint()
    
        // The entry cannot be reused at all and should be recreated from scratch
        class EntryInvalid(val reason: String) : CheckedFingerprint()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/interfaces.go

    // IndexerFuncs is a mapping from `<index name>` to function that
    // for a given object computes `<value for that index>`.
    type IndexerFuncs map[string]IndexerFunc
    
    // Everything accepts all objects.
    var Everything = SelectionPredicate{
    	Label: labels.Everything(),
    	Field: fields.Everything(),
    }
    
    // MatchValue defines a pair (`<index name>`, `<value for that index>`).
    type MatchValue struct {
    	IndexName string
    	Value     string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:53:48 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  8. pkg/kube/kclient/client.go

    				// Fortunately, missing a namespace delete event usually doesn't matter since everything in the namespace gets torn down.
    			} else {
    				for ns := range added {
    					for _, item := range ic.ListUnfiltered(ns, klabels.Everything()) {
    						for _, c := range ic.registeredHandlers {
    							c.handler.OnAdd(item, false)
    						}
    					}
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 07:14:28 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/status/naming_controller.go

    	c.crdMutationCache.Mutation(updatedObj)
    
    	// we updated our status, so we may be releasing a name.  When this happens, we need to rekick everything in our group
    	// if we fail to rekick, just return as normal.  We'll get everything on a resync
    	if err := c.requeueAllOtherGroupCRDs(key); err != nil {
    		return err
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  10. docs/distributed/CONFIG.md

    MinIO now supports starting the server arguments and configuration via a YAML configuration file. This YAML configuration describes everything that can be configured in a MinIO setup, such as '--address', '--console-address' and command line arguments for the MinIO server.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 03 15:54:03 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top