Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 109 for reregistering (0.19 sec)

  1. 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)
  2. 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)
  3. pkg/kube/krt/core.go

    	// (NewCollection, NewManyCollection, NewSingleton); however, at boundaries of the system (connecting to something not
    	// using krt), registering directly is expected.
    	Register(f func(o Event[T])) Syncer
    
    	// Synced returns a Syncer which can be used to determine if the collection has synced. Once its synced, all dependencies have
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskContainer.java

        public Action<? super Task> whenObjectRemoved(Action<? super Task> action) {
            throw new UnsupportedOperationException("Registering actions on task removal is not supported.");
        }
    
        @Override
        public void whenObjectRemoved(Closure action) {
            throw new UnsupportedOperationException("Registering actions on task removal is not supported.");
        }
    
        // Cannot be private due to reflective instantiation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 09:54:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  8. src/expvar/expvar.go

    // following variables:
    //
    //	cmdline   os.Args
    //	memstats  runtime.Memstats
    //
    // The package is sometimes only imported for the side effect of
    // registering its HTTP handler and the above variables. To use it
    // this way, link this package into your program:
    //
    //	import _ "expvar"
    package expvar
    
    import (
    	"encoding/json"
    	"internal/godebug"
    	"log"
    	"math"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 21:32:11 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/BUILD

            "@local_tsl//tsl/protobuf:protos_all_cc",
            "@local_xla//xla:xla_data_proto_cc",
            "@local_xla//xla/mlir_hlo",
            "@stablehlo//:chlo_ops",
        ],
        # Alwayslink is required for registering the MLIR passes.
        # TODO(b/255530126): Split the pass registration from the definitions to avoid binary size bloat.
        alwayslink = True,
    )
    
    cc_library(
        name = "quantize_preprocess",
        srcs = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  10. internal/grid/handlers.go

    // This must be done prior to registering the handler.
    func (h *StreamTypeHandler[Payload, Req, Resp]) WithOutCapacity(out int) *StreamTypeHandler[Payload, Req, Resp] {
    	h.OutCapacity = out
    	return h
    }
    
    // WithInCapacity adjusts the input capacity from the handler perspective.
    // This must be done prior to registering the handler.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.1K bytes
    - Viewed (0)
Back to top