Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,001 for registered_ (0.29 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/type/DefaultArtifactTypeRegistryTest.groovy

            container['jar'].fileNameExtensions == ['jar'] as Set
            container['jar'].attributes.getAttribute(Attribute.of('thing', String)) == '123'
        }
    
        def "does not apply any mapping when no artifact types registered"() {
            def attrs = ImmutableAttributes.EMPTY
    
            expect:
            registry.mapAttributesFor(attrs, []) == attrs
        }
    
        def "does not apply any mapping when variant has no artifacts"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 14:43:17 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/typeregistration/BaseInstanceFactory.java

                    throw new IllegalArgumentException(String.format("Internal view '%s' registered for '%s' must be an interface", internalView, publicType));
                }
    
                if (managedPublicType && !isManaged(internalView)) {
                    throw new IllegalArgumentException(String.format("Internal view '%s' registered for managed type '%s' must be managed", internalView, publicType));
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback.cc

      addTypes<TFTensorType, TFAllocatorType>();
    
      addOperations<
    #define GET_OP_LIST
    #include "tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback.cpp.inc"
          >();
    }
    
    /// Parse a type registered to this dialect.
    Type FallbackDialect::parseType(DialectAsmParser &parser) const {
      StringRef keyword;
      if (parser.parseKeyword(&keyword)) return Type();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top