Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 537 for registry_ (0.19 sec)

  1. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/DefaultModuleRegistryTest.groovy

            def module3Dir = createModule("module-3", properties(projects: ''))
            def registry = defaultModuleRegistryFor([module1Dir, module2Dir, module3Dir])
    
            expect:
            def module = registry.getModule("gradle-some-module")
            module.allRequiredModules as List == [module, registry.getModule("gradle-module-2"), registry.getModule("gradle-module-3")]
        }
    
        def "supports cycles between modules"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/services/LoggingServiceRegistryTest.groovy

        def providesALoggingManagerFactory() {
            given:
            def registry = LoggingServiceRegistry.newCommandLineProcessLogging()
    
            expect:
            def factory = registry.getFactory(LoggingManagerInternal.class)
            factory instanceof DefaultLoggingManagerFactory
        }
    
        def providesAStyledTextOutputFactory() {
            given:
            def registry = LoggingServiceRegistry.newCommandLineProcessLogging()
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  3. pkg/credentialprovider/plugin/config_test.go

    			configData: `---
    kind: CredentialProviderConfig
    apiVersion: kubelet.config.k8s.io/v1alpha1
    providers:
      - name: test
        matchImages:
        - "registry.io/*"
        - "foobar.registry.io/*"
        defaultCacheDuration: 10m
        apiVersion: credentialprovider.kubelet.k8s.io/v1alpha1
        args:
        - --v=5
        env:
        - name: FOO
          value: BAR`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 09 14:24:11 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  4. src/internal/syscall/windows/registry/registry_test.go

    	{Type: registry.EXPAND_SZ, Name: "ExpString4", Value: "Hello\000World", WillFail: true},
    	{Type: registry.EXPAND_SZ, Name: "ExpString5", Value: "%PATH%"},
    	{Type: registry.EXPAND_SZ, Name: "ExpString6", Value: "%NO_SUCH_VARIABLE%"},
    	{Type: registry.EXPAND_SZ, Name: "ExpString7", Value: "%PATH%;."},
    	{Type: registry.BINARY, Name: "Binary1", Value: []byte{}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 19:19:00 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. pkg/credentialprovider/plugin/plugin_test.go

    		name     string
    		registry string
    	}{
    		{
    			name:     "provide for registry 1",
    			registry: "test1.registry.io",
    		},
    		{
    			name:     "provide for registry 2",
    			registry: "test2.registry.io",
    		},
    		{
    			name:     "provide for registry 3",
    			registry: "test3.registry.io",
    		},
    		{
    			name:     "provide for registry 4",
    			registry: "test4.registry.io",
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 09 06:11:06 UTC 2022
    - 26.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/type/DefaultArtifactTypeRegistryTest.groovy

            artifactName2.type >> "zip"
    
            registry.create().create("jar").attributes.attribute(Attribute.of("custom", String), "123")
            registry.create().create("zip").attributes.attribute(Attribute.of("custom", String), "234")
            registry.defaultArtifactAttributes.attribute(Attribute.of("custom-default", String), "123")
    
            expect:
            registry.mapAttributesFor(attrs, [artifact1, artifact2]) == attrsPlusFormat
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 14:43:17 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/aggregate/controller.go

    func (c *Controller) AddRegistryAndRun(registry serviceregistry.Instance, stop <-chan struct{}) {
    	if stop == nil {
    		log.Warnf("nil stop channel passed to AddRegistryAndRun for registry %s/%s", registry.Provider(), registry.Cluster())
    	}
    	c.storeLock.Lock()
    	defer c.storeLock.Unlock()
    	c.addRegistry(registry, stop)
    	if c.running {
    		go registry.Run(stop)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/node.yaml

      - names:
        - registry.k8s.io/prometheus-to-sd@sha256:6c0c742475363d537ff059136e5d5e4ab1f512ee0fd9b7ca42ea48bc309d1662
        - registry.k8s.io/prometheus-to-sd:v0.3.1
        sizeBytes: 88077694
      - names:
        - registry.k8s.io/fluentd-gcp-scaler@sha256:a5ace7506d393c4ed65eb2cbb6312c64ab357fcea16dff76b9055bc6e498e5ff
        - registry.k8s.io/fluentd-gcp-scaler:0.5.1
        sizeBytes: 86637208
      - names:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/DaemonMessageSerializer.java

            DefaultSerializerRegistry registry = new DefaultSerializerRegistry();
    
            // Lifecycle messages
            registry.register(Build.class, new BuildSerializer(buildActionSerializer));
            registry.register(Cancel.class, new CancelSerializer());
            registry.register(DaemonUnavailable.class, new DaemonUnavailableSerializer());
            registry.register(BuildStarted.class, new BuildStartedSerializer());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  10. build/dependencies.yaml

          match: registry.k8s.io\/pause:\d+\.\d+
        - path: staging/src/k8s.io/kubectl/testdata/set/namespaced-resource.yaml
          match: registry.k8s.io\/pause:\d+\.\d+
        - path: test/cmd/core.sh
          match: registry.k8s.io\/pause:\d+\.\d+
        - path: test/fixtures/pkg/kubectl/cmd/set/multi-resource-yaml.yaml
          match: registry.k8s.io\/pause:\d+\.\d+
        - path: test/fixtures/pkg/kubectl/cmd/set/namespaced-resource.yaml
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top