Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 78 for reregistering (0.21 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_attributes.adoc

    .Registering attributes on the attributes schema
    ====
    include::sample[dir="snippets/dependencyManagement/attributeMatching/kotlin",files="build.gradle.kts[tags=register-attributes]"]
    include::sample[dir="snippets/dependencyManagement/attributeMatching/groovy",files="build.gradle[tags=register-attributes]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 18:51:23 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. pkg/scheduler/scheduler.go

    // WithExtenders sets extenders for the Scheduler
    func WithExtenders(e ...schedulerapi.Extender) Option {
    	return func(o *schedulerOptions) {
    		o.extenders = e
    	}
    }
    
    // FrameworkCapturer is used for registering a notify function in building framework.
    type FrameworkCapturer func(schedulerapi.KubeSchedulerProfile)
    
    // WithBuildFrameworkCapturer sets a notify function for getting buildFramework details.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/stream_executor/stream_executor.h

    #include "tensorflow/c/tf_status.h"
    
    // --------------------------------------------------------------------------
    // C API for StreamExecutor. The API is under active development and eventually
    // should allow registering a pluggable device with TensorFlow.
    //
    // Conventions:
    //   * Struct prefix indicates whether struct fields should be filled by the
    //     plugin or core implementation:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 24 08:40:35 UTC 2022
    - 21.6K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ProjectReportTaskIntegrationTest.groovy

    No sub-projects
    """
        }
    
        def "project project structure and software types for multi-project build using declarative dcl"() {
            given: "a build-logic build registering an ecosystem plugin defining several software types via several plugins"
            file("build-logic/src/main/java/com/example/restricted/LibraryExtension.java") << """
                package com.example.restricted;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/DefaultSerializerRegistry.java

    import java.util.concurrent.ConcurrentSkipListMap;
    
    /**
     * Default implementation of {@link SerializerRegistry}.
     *
     * This class must be thread-safe because multiple tasks may be registering serializable classes concurrently, while other tasks are calling {@link #build(Class)}.
     */
    @ThreadSafe
    public class DefaultSerializerRegistry implements SerializerRegistry {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/work/DefaultWorkerLeaseServiceWorkerLeaseTest.groovy

                        coordinationService.withStateLock(unlock(resource1))
                    }
                }
            }
    
            then:
            instant.worker1Finished > instant.unlocked
        }
    
        def "registering an unmanaged worker does not block other workers"() {
            def registry = workerLeaseService(1)
    
            when:
            async {
                start {
                    assert !registry.workerThread
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/internal/operations/notify/BuildOperationNotificationBridgeTest.groovy

        }
    
        def "cannot register when valve is closed"() {
            when:
            register(listener)
    
            then:
            thrown IllegalStateException
        }
    
        def "passes recorded events to listeners registering"() {
            def d1 = d(1, null, 1)
            def bridge = getOrCreateBridge()
            bridge.valve.start()
    
            when:
            broadcast.started(d1, new OperationStartEvent(0))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/types.go

    	// DryRun tells if the dry run mode is enabled, don't apply any change if it is and just output what would be done.
    	DryRun bool
    
    	// NodeRegistration holds fields that relate to registering the new control-plane node to the cluster
    	NodeRegistration NodeRegistrationOptions
    
    	// LocalAPIEndpoint represents the endpoint of the API server instance that's deployed on this control plane node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// DryRun tells if the dry run mode is enabled, don't apply any change if it is and just output what would be done.
    	// +optional
    	DryRun bool `json:"dryRun,omitempty"`
    
    	// NodeRegistration holds fields that relate to registering the new control-plane node to the cluster
    	// +optional
    	NodeRegistration NodeRegistrationOptions `json:"nodeRegistration,omitempty"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/transform/DefaultVariantTransformRegistryTest.groovy

            e.cause.message == 'Cannot query parameters for artifact transform without parameters.'
        }
    
        def "delegates are DSL decorated but not extensible when registering with config object"() {
            def registration
    
            when:
            registry.registerTransform(TestTransform) {
                it.from.attribute(TEST_ATTRIBUTE, "FROM")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 11:18:50 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top