Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,100 for type (0.16 sec)

  1. maven-core/src/main/java/org/apache/maven/internal/impl/types/TestJarTypeProvider.java

    @Named(TestJarTypeProvider.NAME)
    @Singleton
    public class TestJarTypeProvider implements Provider<Type> {
        public static final String NAME = "test-jar";
    
        private final Type type;
    
        public TestJarTypeProvider() {
            this.type = new DefaultType(
                    NAME,
                    Type.LANGUAGE_JAVA,
                    "jar",
                    "tests",
    Java
    - Registered: Sun Feb 04 03:35:10 GMT 2024
    - Last Modified: Thu Dec 14 10:51:16 GMT 2023
    - 1.6K bytes
    - Viewed (0)
  2. maven-compat/src/test/java/org/apache/maven/repository/TestArtifactHandler.java

     *
     */
    @Deprecated
    class TestArtifactHandler implements ArtifactHandler {
    
        private String type;
    
        private String extension;
    
        public TestArtifactHandler(String type) {
            this(type, type);
        }
    
        public TestArtifactHandler(String type, String extension) {
            this.type = type;
            this.extension = extension;
        }
    
        @Override
        public String getClassifier() {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

         */
        private PathType getPathType(Path path) throws IOException {
            PathType type = pathTypes.get(path);
            if (type == null) {
                type = new PathModularization(path, false).getPathType();
                pathTypes.put(path, type);
            }
            return type;
        }
    
        /**
         * Selects the type of path where to place the given dependency.
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SID.java

            if ( this.domainName != null ) {
                String str;
    
                if ( this.type == SID_TYPE_DOMAIN ) {
                    str = this.domainName;
                }
                else if ( this.type == SID_TYPE_WKN_GRP || this.domainName.equals("BUILTIN") ) {
                    if ( this.type == SID_TYPE_UNKNOWN ) {
                        str = toString();
                    }
                    else {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/entity/HighlightInfo.java

            this.fragmentOffset = fessConfig.getQueryHighlightFragmentOffsetAsInteger();
        }
    
        public String getType() {
            return type;
        }
    
        public HighlightInfo type(final String type) {
            this.type = type;
            return this;
        }
    
        public int getFragmentSize() {
            return fragmentSize;
        }
    
        public HighlightInfo fragmentSize(final int fragmentSize) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/reflect/ImmutableTypeToInstanceMap.java

        this.delegate = delegate;
      }
    
      @Override
      @CheckForNull
      public <T extends B> T getInstance(TypeToken<T> type) {
        return trustedGet(type.rejectTypeVariables());
      }
    
      @Override
      @CheckForNull
      public <T extends B> T getInstance(Class<T> type) {
        return trustedGet(TypeToken.of(type));
      }
    
      /**
       * Guaranteed to throw an exception and leave the map unmodified.
       *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Feb 01 20:46:24 GMT 2022
    - 5.6K bytes
    - Viewed (0)
  7. maven-api-impl/src/test/java/org/apache/maven/internal/impl/standalone/ApiRunner.java

                public <T> T lookup(Class<T> type) {
                    try {
                        return injector.getInstance(type);
                    } catch (DIException e) {
                        throw new MavenException("Unable to locate instance of type " + type, e);
                    }
                }
    
                @Override
                public <T> T lookup(Class<T> type, String name) {
                    try {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 17.1K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/repository/MavenArtifactMetadata.java

        }
    
        public void setClassifier(String classifier) {
            this.classifier = classifier;
        }
    
        public String getType() {
            return type;
        }
    
        public void setType(String type) {
            this.type = type;
        }
    
        public Object getDatum() {
            return datum;
        }
    
        public void setDatum(Object datum) {
            this.datum = datum;
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/DiscreteDomain.java

       * input of type {@code C}.
       *
       * <p>The default implementation throws {@code NoSuchElementException}.
       *
       * @return the minimum value of type {@code C}; never null
       * @throws NoSuchElementException if the type has no (practical) minimum value; for example,
       *     {@link java.math.BigInteger}
       */
      @CanIgnoreReturnValue
      public C minValue() {
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 10.3K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/testing/FreshValueGenerator.java

      }
    
      private static String paramString(Class<?> type, int i) {
        return type.getSimpleName() + '@' + i;
      }
    
      /**
       * Annotates a method to be the instance generator of a certain type. The return type is the
       * generated type. The method parameters correspond to the generated type's type parameters. For
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 17 16:33:44 GMT 2024
    - 28K bytes
    - Viewed (0)
Back to top