Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 1,746 for registry2 (0.22 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r81/ToolchainsParallelActionExecutionCrossVersionSpec.groovy

                class ToolchainPlugin implements Plugin<Project> {
                    ToolingModelBuilderRegistry registry
    
                    @Inject
                    ToolchainPlugin(ToolingModelBuilderRegistry registry) {
                        this.registry = registry
                    }
    
                    void apply(Project project) {
                        registry.register(new ToolchainBuilder())
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 05:31:40 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. pkg/dns/proto/nds.proto

            repeated string ips = 1;
    
            // The name of the service registry containing the service (e.g. 'Kubernetes').
            string registry = 2;
    
            // The k8s service name. Only applies when registry=`Kubernetes`
            string shortname = 3;
    
            // The k8s namespace for the service. Only applies when registry=`Kubernetes`
            string namespace = 4;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 01 20:40:32 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  3. pkg/controlplane/instance.go

    	certificatesrest "k8s.io/kubernetes/pkg/registry/certificates/rest"
    	coordinationrest "k8s.io/kubernetes/pkg/registry/coordination/rest"
    	corerest "k8s.io/kubernetes/pkg/registry/core/rest"
    	discoveryrest "k8s.io/kubernetes/pkg/registry/discovery/rest"
    	eventsrest "k8s.io/kubernetes/pkg/registry/events/rest"
    	flowcontrolrest "k8s.io/kubernetes/pkg/registry/flowcontrol/rest"
    	networkingrest "k8s.io/kubernetes/pkg/registry/networking/rest"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/service-provider/src/main/java/org/gradle/internal/service/ServiceRegistration.java

     * limitations under the License.
     */
    
    package org.gradle.internal.service;
    
    /**
     * Allows services to be added to a registry.
     */
    public interface ServiceRegistration {
        /**
         * Adds a service to this registry. The given object is closed when the associated registry is closed.
         * @param serviceType The type to make this service visible as.
         * @param serviceInstance The service implementation.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/DefaultFileWatcherRegistry.java

    import static org.gradle.internal.watch.registry.FileWatcherRegistry.Type.CREATED;
    import static org.gradle.internal.watch.registry.FileWatcherRegistry.Type.INVALIDATED;
    import static org.gradle.internal.watch.registry.FileWatcherRegistry.Type.MODIFIED;
    import static org.gradle.internal.watch.registry.FileWatcherRegistry.Type.OVERFLOW;
    import static org.gradle.internal.watch.registry.FileWatcherRegistry.Type.REMOVED;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonInitialCommunicationFailureIntegrationSpec.groovy

        def "behaves if the registry contains connectable port without daemon on the other end"() {
            when:
            buildSucceeds()
    
            then:
            //there should be one idle daemon
            def daemon = daemons.daemon
    
            when:
            // Ensure that the daemon has finished updating the registry. Killing it halfway through the registry update will leave the registry corrupted,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 07:46:29 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/testing/DaemonsEventSequence.groovy

            }
        }
    
        DaemonsEventSequence(int pollRegistryMs, int timeoutBetweenStateChangeMs, DaemonRegistry registry, DaemonsStateCheckpoint... checkpoints) {
            this.pollRegistryMs = pollRegistryMs
            this.timeoutBetweenStateChangeMs = timeoutBetweenStateChangeMs
            this.registry = registry
            this.allCheckpoints = Arrays.asList(checkpoints).asImmutable()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/services/internal/DefaultBuildServicesRegistryTest.groovy

            then:
            registry.forService(service1).maxUsages == 42
            registry.forService(service2).maxUsages == -1
        }
    
        def "cannot change max parallel usages once resource has been located"() {
            given:
            def service = registerService("service", ServiceImpl)
            def registration = registry.registrations.findByName("service")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/plugins/NativeToolChainPluginTest.groovy

        NativeToolChainInternal getToolchain() {
            registry.get("toolChains", NativeToolChainRegistryInternal).getByName(getToolchainName()) as NativeToolChainInternal
        }
    
        void register() {
            registry.mutate(NativeToolChainRegistry) {
                it.create(getToolchainName(), getToolchainClass())
            }
        }
    
        void addDefaultToolchain() {
            registry.mutate(NativeToolChainRegistryInternal) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. hack/dev-push-conformance.sh

    set -o pipefail
    
    KUBE_ROOT="$(dirname "${BASH_SOURCE[0]}")/.."
    source "${KUBE_ROOT}/build/common.sh"
    
    if [[ -z "${REGISTRY:-}" ]]; then
    	echo "REGISTRY must be set"
    	exit 1
    fi
    if [[ -z "${VERSION:-}" ]]; then
    	echo "VERSION must be set"
    	exit 1
    fi
    
    IMAGE="${REGISTRY}/conformance-amd64:${VERSION}"
    
    kube::build::verify_prereqs
    kube::build::build_image
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 08 02:46:11 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top