Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 52 for Registries (0.35 sec)

  1. pilot/pkg/bootstrap/configcontroller.go

    	} else {
    		err := s.initK8SConfigStore(args)
    		if err != nil {
    			return err
    		}
    	}
    
    	// If running in ingress mode (requires k8s), wrap the config controller.
    	if hasKubeRegistry(args.RegistryOptions.Registries) && meshConfig.IngressControllerMode != meshconfig.MeshConfig_OFF {
    		// Wrap the config controller with a cache.
    		// Supporting only Ingress/v1 means we lose support of Kubernetes 1.18
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/upgrade/staticpods.go

    func convertImageTagMetadataToSemver(tag string) string {
    	// Container registries do not support `+` characters in tag names. This prevents imagetags from
    	// correctly representing semantic versions which use the plus symbol to delimit build metadata.
    	// Kubernetes uses the convention of using an underscore in image registries to preserve
    	// build metadata information in imagetags.
    	return strings.Replace(tag, "_", "+", 1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/net/InternetDomainName.java

       * Internet users can register subdomains. An example of a public suffix that is not a registry
       * suffix is {@code blogspot.com}. Note that it is true that all public suffixes <i>have</i>
       * registry suffixes, since domain name registries collectively control all internet domain names.
       *
       * <p>For considerations on whether the public suffix or registry suffix designation is more
       * suitable for your application, see <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  4. guava/src/com/google/common/net/InternetDomainName.java

       * Internet users can register subdomains. An example of a public suffix that is not a registry
       * suffix is {@code blogspot.com}. Note that it is true that all public suffixes <i>have</i>
       * registry suffixes, since domain name registries collectively control all internet domain names.
       *
       * <p>For considerations on whether the public suffix or registry suffix designation is more
       * suitable for your application, see <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

     * org.gradle.internal.concurrent.Stoppable} then the appropriate {@link Closeable#close()} or {@link Stoppable#stop()} method is called. Instances are closed in reverse dependency order.</p>
     *
     * <p>Service registries are arranged in a hierarchy. If a service of a given type cannot be located, the registry uses its parent registry, if any, to locate the service.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. pilot/pkg/model/context.go

    	// network. Each network provides information about the endpoints in a
    	// routable L3 network. A single routable L3 network can have one or more
    	// service registries.
    	NetworksWatcher mesh.NetworksWatcher
    
    	NetworkManager *NetworkManager
    
    	// mutex used for protecting Environment.pushContext
    	mutex sync.RWMutex
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (1)
  7. pkg/credentialprovider/plugin/plugin_test.go

    				t.Logf("expected docker config: %v", testcase.dockerconfig)
    				t.Error("unexpected docker config")
    			}
    		})
    	}
    }
    
    // This test calls Provide in parallel for different registries and images
    // The purpose of this is to detect any race conditions while cache rw.
    func Test_ProvideParallel(t *testing.T) {
    	tclock := clock.RealClock{}
    
    	testcases := []struct {
    		name     string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 09 06:11:06 UTC 2022
    - 26.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestDB.h

     *  CU_cleanup_registry(), respectively.  For internal and testing 
     *  purposes, the internal registry can be retrieved and assigned.  
     *  Functions are also provided for creating and destroying independent 
     *  registries.<br /><br />
     *
     *  Note that earlier versions of CUnit also contained a pointer to a 
     *  linked list of CU_FailureRecord objects (termed _TestResults).  
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/server.go

    	}
    	return jwtAuthn, nil
    }
    
    func getClusterID(args *PilotArgs) cluster.ID {
    	clusterID := args.RegistryOptions.KubeOptions.ClusterID
    	if clusterID == "" {
    		if hasKubeRegistry(args.RegistryOptions.Registries) {
    			clusterID = cluster.ID(provider.Kubernetes)
    		}
    	}
    	return clusterID
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  10. cluster/gce/config-default.sh

    export ENABLE_CLUSTER_LOGGING="${KUBE_ENABLE_CLUSTER_LOGGING:-true}"
    export ELASTICSEARCH_LOGGING_REPLICAS=1
    
    # Optional: Don't require https for registries in our local RFC1918 network
    if [[ ${KUBE_ENABLE_INSECURE_REGISTRY:-false} == "true" ]]; then
      EXTRA_DOCKER_OPTS="${EXTRA_DOCKER_OPTS} --insecure-registry 10.0.0.0/8"
    fi
    
    # Optional: customize runtime config
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
Back to top