Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 232 for factories (0.82 sec)

  1. android/guava/src/com/google/common/base/CharMatcher.java

       * @since 19.0 (since 1.0 as constant {@code SINGLE_WIDTH})
       */
      @Deprecated
      public static CharMatcher singleWidth() {
        return SingleWidth.INSTANCE;
      }
    
      // Static factories
    
      /** Returns a {@code char} matcher that matches only one specified BMP character. */
      public static CharMatcher is(final char match) {
        return new Is(match);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.jar

    org.apache.commons.logging.impl.LogFactoryImpl; public static final String FACTORY_PROPERTIES = commons-logging.properties; protected static final String SERVICE_ID = META-INF/services/org.apache.commons.logging.LogFactory; protected static java.util.Hashtable factories; protected void LogFactory(); public abstract Object getAttribute(String); public abstract String[] getAttributeNames(); public abstract Log getInstance(Class) throws LogConfigurationExce; public abstract Log getInstance(String) throws LogConfigurationExce;...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

    import org.gradle.api.specs.Specs;
    import org.gradle.api.tasks.TaskDependency;
    import org.gradle.internal.Cast;
    import org.gradle.internal.Describables;
    import org.gradle.internal.DisplayName;
    import org.gradle.internal.Factories;
    import org.gradle.internal.Factory;
    import org.gradle.internal.ImmutableActionSet;
    import org.gradle.internal.code.UserCodeApplicationContext;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ImmutableSet.java

       * ImmutableEnumSet/ImmutableSortedSet, regardless of implementation type. It
       * captures their "logical contents" and they are reconstructed using public
       * static factories. This is necessary to ensure that the existence of a
       * particular implementation type is an implementation detail.
       */
      @J2ktIncompatible // serialization
      private static class SerializedForm implements Serializable {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

         * parameterize when cycle detection is enabled.
         *
         * <p>Note that locks created by a factory with this policy will not participate the
         * cycle detection performed by locks created by other factories.
         */
        DISABLED {
          @Override
          public void handlePotentialDeadlock(PotentialDeadlockException e) {}
        };
      }
    
      /** Creates a new factory with the specified policy. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 35.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

         * parameterize when cycle detection is enabled.
         *
         * <p>Note that locks created by a factory with this policy will not participate the
         * cycle detection performed by locks created by other factories.
         */
        DISABLED {
          @Override
          public void handlePotentialDeadlock(PotentialDeadlockException e) {}
        };
      }
    
      /** Creates a new factory with the specified policy. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 35.9K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/interface.go

    	SetPodNominator(nominator PodNominator)
    
    	// Close calls Close method of each plugin.
    	Close() error
    }
    
    // Handle provides data and some tools that plugins can use. It is
    // passed to the plugin factories at the time of plugin initialization. Plugins
    // must store and use this handle to call framework functions.
    type Handle interface {
    	// PodNominator abstracts operations to maintain nominated Pods.
    	PodNominator
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  8. src/cmd/doc/pkg.go

    			return typeSpec
    		}
    	}
    	return nil
    }
    
    // symbolDoc prints the docs for symbol. There may be multiple matches.
    // If symbol matches a type, output includes its methods factories and associated constants.
    // If there is no top-level symbol, symbolDoc looks for methods that match.
    func (pkg *Package) symbolDoc(symbol string) bool {
    	found := false
    	// Functions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 20:15:52 UTC 2024
    - 32K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

            when:
            registry.getFactory(Comparable)
    
            then:
            ServiceLookupException e = thrown()
            e.message == TextUtil.toPlatformLineSeparators("""Multiple factories for objects of type Comparable available in RegistryWithAmbiguousFactoryMethods:
       - Service Factory<Integer> at DefaultServiceRegistryTest\$RegistryWithAmbiguousFactoryMethods.createIntegerFactory()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/LocalCache.java

        static final int ACCESS_MASK = 1;
        static final int WRITE_MASK = 2;
        static final int WEAK_MASK = 4;
    
        /** Look-up table for factories. */
        static final EntryFactory[] factories = {
          STRONG,
          STRONG_ACCESS,
          STRONG_WRITE,
          STRONG_ACCESS_WRITE,
          WEAK,
          WEAK_ACCESS,
          WEAK_WRITE,
          WEAK_ACCESS_WRITE,
        };
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
Back to top