Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 52 for Registries (0.16 sec)

  1. pkg/scheduler/framework/runtime/registry_test.go

    				t.Errorf("DecodeInto(): failed to decode plugin config, expected: %+v, got: %+v",
    					test.expected, pluginFooConf)
    			}
    		})
    	}
    }
    
    // isRegistryEqual compares two registries for equality. This function is used in place of
    // reflect.DeepEqual() and cmp() as they don't compare function values.
    func isRegistryEqual(registryX, registryY Registry) bool {
    	for name, pluginFactory := range registryY {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 20 09:49:54 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/imagelocality/image_locality.go

    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/names"
    )
    
    // The two thresholds are used as bounds for the image score range. They correspond to a reasonable size range for
    // container images compressed and stored in registries; 90%ile of images on dockerhub drops into this range.
    const (
    	mb                    int64 = 1024 * 1024
    	minThreshold          int64 = 23 * mb
    	maxContainerThreshold int64 = 1000 * mb
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 06:17:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/route/route_cache.go

    	// This depends on DNSCapture.
    	DNSAutoAllocate bool
    	// AllowAny indicates if the proxy should allow all outbound traffic or only known registries
    	AllowAny bool
    
    	ListenerPort            int
    	Services                []*model.Service
    	VirtualServices         []config.Config
    	DelegateVirtualServices []model.ConfigHash
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/options.go

    // purposes). Otherwise, a CRD client is created based on the configuration.
    type RegistryOptions struct {
    	// If FileDir is set, the below kubernetes options are ignored
    	FileDir string
    
    	Registries []string
    
    	// Kubernetes controller options
    	KubeOptions kubecontroller.Options
    	// ClusterRegistriesNamespace specifies where the multi-cluster secret resides
    	ClusterRegistriesNamespace string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. pilot/pkg/model/endpointshards.go

    	"istio.io/istio/pilot/pkg/serviceregistry/provider"
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/config/schema/kind"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // shardRegistry is a simplified interface for registries that can produce a shard key
    type shardRegistry interface {
    	Cluster() cluster.ID
    	Provider() provider.ID
    }
    
    // ShardKeyFromRegistry computes the shard key based on provider type and cluster id.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/options/options.go

    		"If set to true, agent retrieves dynamic proxy-config updates via xds channel").Get()
    
    	wasmInsecureRegistries = env.Register("WASM_INSECURE_REGISTRIES", "",
    		"allow agent pull wasm plugin from insecure registries or https server, for example: 'localhost:5000,docker-registry:5000'").Get()
    
    	wasmModuleExpiry = env.Register("WASM_MODULE_EXPIRY", wasm.DefaultModuleExpiry,
    		"cache expiration duration for a wasm module.").Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 19:21:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. prow/lib.sh

    function setup_gcloud_credentials() {
      if [[ $(command -v gcloud) ]]; then
        gcloud auth configure-docker us-docker.pkg.dev -q
      elif [[ $(command -v docker-credential-gcr) ]]; then
        docker-credential-gcr configure-docker --registries=-us-docker.pkg.dev
      else
        echo "No credential helpers found, push to docker may not function properly"
      fi
    }
    
    function setup_and_export_git_sha() {
      if [[ -n "${CI:-}" ]]; then
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. pkg/test/framework/resource/settings.go

    	// Image pull policy to use for deployments. If not specified, the defaults of each deployment will be used.
    	PullPolicy string
    
    	// PullSecret path to a file containing a k8s secret in yaml so test pods can pull from protected registries.
    	PullSecret string
    }
    
    func (s *ImageSettings) PullSecretName() (string, error) {
    	if s.PullSecret == "" {
    		return "", nil
    	}
    	data, err := os.ReadFile(s.PullSecret)
    	if err != nil {
    		return "", err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

            e.message == "Cannot create service of type Long using method DefaultServiceRegistryTest\$${decoratorProvider.class.simpleName}.${methodName}Long() as required service of type Long for parameter #1 is not available in parent registries."
    
            where:
            decoratorProvider                        | methodName
            new TestDecoratingProviderWithCreate()   | 'create'
            new TestDecoratingProviderWithDecorate() | 'decorate'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSpiIntegrationTest.groovy

                       "from '$uri', due to: Toolchain provisioned from '$uri' doesn't satisfy the specification: {languageVersion=11, vendor=any, implementation=vendor-specific}.).")
        }
    
        def "custom toolchain registries are consulted in order"() {
            settingsFile << """
                ${applyToolchainResolverPlugin("CustomToolchainResolver", customToolchainResolverCode(), DEFAULT_PLUGIN, NO_TOOLCHAIN_MANAGEMENT)}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 10:53:57 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top