Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,589 for registry1 (2.49 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/state/DefaultManagedFactoryRegistryTest.groovy

            def buzzFactory = factory(Buzz)
            registry.withFactories(barFactory, fooFactory)
    
            expect:
            registry.lookup(buzzFactory.id) == null
        }
    
        def "can lookup factory in parent registry"() {
            def fooFactory = factory(Foo)
            def barFactory = factory(Bar)
            def parent = new DefaultManagedFactoryRegistry().withFactories(fooFactory)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/ReportDaemonStatusClientTest.groovy

    import org.gradle.launcher.daemon.protocol.Success
    import org.gradle.launcher.daemon.registry.DaemonInfo
    import org.gradle.launcher.daemon.registry.DaemonRegistry
    import org.gradle.launcher.daemon.registry.DaemonStopEvent
    import spock.lang.Specification
    
    class ReportDaemonStatusClientTest extends Specification {
        DaemonRegistry registry = Mock(DaemonRegistry)
        DaemonConnector connector = Mock(DaemonConnector)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/DaemonRegistryStateProbe.groovy

        private final DaemonRegistry registry
        private final DaemonContext context
    
        DaemonRegistryStateProbe(DaemonRegistry registry, DaemonContext context) {
            this.context = context
            this.registry = registry
        }
    
        void resetToken() {
            def daemonInfo = registry.all.find { it.context.pid == context.pid }
            registry.remove(daemonInfo.address)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. 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)
  5. kotlin-js-store/yarn.lock

    # yarn lockfile v1
    
    
    "@colors/colors@1.5.0":
      version "1.5.0"
      resolved "https://registry.yarnpkg.com/@colors/colors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5da43d25f97bdbd9"
      integrity sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==
    
    "@discoveryjs/json-ext@^0.5.0":
      version "0.5.7"
      resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz#1d572bfbbe14b7704e0ba0f39b74815b84870d70"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 87.4K bytes
    - Viewed (0)
  6. pkg/test/framework/components/registryredirector/registry_redirector_server.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: registry-redirector
      labels:
        app: registry-redirector
    spec:
      type: LoadBalancer
      ports:
      - name: http
        port: 1338
      selector:
        app: registry-redirector
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: registry-redirector
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: registry-redirector
      template:
        metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/registry/PersistentDaemonRegistryTest.groovy

            registry.all.empty
        }
    
        def "safely removes from registry file"() {
            given:
            def address = address()
    
            and:
            registry.store(new DaemonInfo(address, daemonContext(), "password".bytes, Idle))
    
            when:
            registry.remove(address)
    
            then:
            registry.all.empty
    
            and: //it is safe to remove it again
            registry.remove(address)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/resources/AbstractResourceLockRegistryTest.groovy

            when:
            def lock = registry.getResourceLock("test")
            inNewThread { registry.getResourceLock("another").tryLock() }
    
            and:
            lock.tryLock()
    
            then:
            registry.getResourceLocksByCurrentThread() == [lock]
        }
    
        def "identifies open locks in the registry"() {
            when:
            def lock = registry.getResourceLock("test")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonLifecycleSpec.groovy

        }
    
        def "daemon stops after current build if registry is deleted"() {
            when:
            startBuild()
            waitForBuildToWait()
    
            then:
            busy()
            daemonContext {
                File registry = new DaemonDir(executer.daemonBaseDir).registry
                deleteFile(registry)
            }
    
            when:
            waitForDaemonExpiration()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  10. 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)
Back to top