Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 503 for registered_ (0.17 sec)

  1. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/ClassGeneratorSuffixRegistry.java

    import javax.annotation.Nonnull;
    import java.util.Map;
    import java.util.concurrent.ConcurrentHashMap;
    
    public class ClassGeneratorSuffixRegistry {
        // Use Throwable to record the location where a suffix was registered, to allow diagnostics when a collision is found
        // This may have performance implications, however the assumption is that class generators are global scoped objects that are created once and in very small numbers
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationListenerRegistrar.java

    @ServiceScope(Scope.CrossBuildSession.class)
    public interface BuildOperationNotificationListenerRegistrar {
    
        /**
         * The registered listener will receive notification for all build operations for the
         * current build execution, including those operations that started before the
         * listener was registered.
         *
         * @since 4.4
         */
        void register(BuildOperationNotificationListener listener);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/servicecontroller.go

    	)
    	serviceControllers.AddRegistry(s.serviceEntryController)
    
    	registered := sets.New[provider.ID]()
    	for _, r := range args.RegistryOptions.Registries {
    		serviceRegistry := provider.ID(r)
    		if registered.Contains(serviceRegistry) {
    			log.Warnf("%s registry specified multiple times.", r)
    			continue
    		}
    		registered.Insert(serviceRegistry)
    		log.Infof("Adding %s registry adapter", serviceRegistry)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/main/java/org/gradle/platform/base/TypeBuilder.java

     */
    
    package org.gradle.platform.base;
    
    import org.gradle.api.Incubating;
    import org.gradle.internal.HasInternalProtocol;
    
    /**
     * A TypeBuilder to configure the registration of a type.
     * @param <T> The registered type.
     */
    @Incubating
    @HasInternalProtocol
    public interface TypeBuilder<T> {
    
        /**
         * Allows the plugin to register the implementation type.
         * @param implementation the implementation class.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. internal/event/target/mysql_test.go

    	"database/sql"
    	"testing"
    )
    
    // TestPostgreSQLRegistration checks if sql driver
    // is registered and fails otherwise.
    func TestMySQLRegistration(t *testing.T) {
    	var found bool
    	for _, drv := range sql.Drivers() {
    		if drv == "mysql" {
    			found = true
    			break
    		}
    	}
    	if !found {
    		t.Fatal("mysql driver not registered")
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 02 14:53:13 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. errors.go

    	// ErrInvalidData unsupported data
    	ErrInvalidData = errors.New("unsupported data")
    	// ErrUnsupportedDriver unsupported driver
    	ErrUnsupportedDriver = errors.New("unsupported driver")
    	// ErrRegistered registered
    	ErrRegistered = errors.New("registered")
    	// ErrInvalidField invalid field
    	ErrInvalidField = errors.New("invalid field")
    	// ErrEmptySlice empty slice found
    	ErrEmptySlice = errors.New("empty slice found")
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Apr 26 02:53:17 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. pkg/kubelet/pluginmanager/plugin_manager.go

    	// the world according to the manager: i.e. which plugins are registered.
    	// The data structure is populated upon successful completion of register
    	// and unregister actions triggered by the reconciler.
    	actualStateOfWorld cache.ActualStateOfWorld
    
    	// desiredStateOfWorld is a data structure containing the desired state of
    	// the world according to the plugin manager: i.e. what plugins are registered.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 01 05:56:33 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/tac_module.h

    //    (TacModule::Options).
    // 2) Use SetImporter/SetExporter to the desired importer
    //    and exporter.
    // 3) Call Run()
    //
    // The module fetches all TargetHardware backends registered in the binary
    // and only create TargetHardware requested in Options.
    //
    // This class is not thread safe.
    class TacModule {
     public:
      // TAC options. Contains knobs to configure TAC as needed.
      struct Options {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/event/ListenerBroadcast.java

        }
    
        /**
         * Returns {@code true} if no listeners are registered with this object.
         *
         * @return {@code true} if no listeners are registered with this object, {@code false} otherwise
         */
        public boolean isEmpty() {
            return broadcast.isEmpty();
        }
    
        /**
         * Returns the number of listeners that are registered with this object.
         */
        public int size() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. internal/event/target/postgresql_test.go

    	"testing"
    )
    
    // TestPostgreSQLRegistration checks if postgres driver
    // is registered and fails otherwise.
    func TestPostgreSQLRegistration(t *testing.T) {
    	var found bool
    	for _, drv := range sql.Drivers() {
    		if drv == "postgres" {
    			found = true
    			break
    		}
    	}
    	if !found {
    		t.Fatal("postgres driver not registered")
    	}
    }
    
    func TestPsqlTableNameValidation(t *testing.T) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 24 17:51:07 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top