Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for ext (0.14 sec)

  1. maven-core/src/test/java/org/apache/maven/classrealm/DefaultClassRealmManagerTest.java

            verifier.verify(logger, calls(1)).debug("  Excluded: {}", "group1:artifact2:ext:classifier1:null");
            verifier.verify(logger, calls(1))
                    .debug("Populating class realm {}", "project>modelGroup1:modelArtifact1:modelVersion1");
            verifier.verify(logger, calls(1)).debug("  Included: {}", "group1:artifact1:ext:classifier1:null");
        }
    
        @Test
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Jan 10 12:53:42 GMT 2024
    - 7.1K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/aether/ReverseTreeRepositoryListener.java

            }
    
            String baseName;
            String ext = missing ? ".miss" : ".dep";
            Path trackingFile = null;
    
            String indent = "";
            ArrayList<String> trackingData = new ArrayList<>();
    
            if (collectStepTrace == null && plugin != null) {
                ext = ".plugin";
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Apr 12 11:08:37 GMT 2023
    - 9.8K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/StandardSystemProperty.java

       *     Java 8 and removed in Java 9. We do not plan to remove this API from Guava, but if you are
       *     using it, it is probably not doing what you want.
       */
      @Deprecated
      JAVA_EXT_DIRS("java.ext.dirs"),
    
      /** Operating system name. */
      OS_NAME("os.name"),
    
      /** Operating system architecture. */
      OS_ARCH("os.arch"),
    
      /** Operating system version. */
      OS_VERSION("os.version"),
    
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 23 15:09:35 GMT 2023
    - 5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/Kerb5Context.java

        private static final String OPENJDK_JGSS_EXT_GSSCTX_CLASS = "com.sun.security.jgss.ExtendedGSSContext";
    
        private static final String IBM_JGSS_INQUIRE_TYPE_CLASS = "com.ibm.security.jgss.InquireType";
        private static final String IBM_JGSS_EXT_GSSCTX_CLASS = "com.ibm.security.jgss.ExtendedGSSContext";
    
        private static final Class<?> EXT_GSS_CONTEXT_CLASS;
        private static final Method INQUIRE_SEC_CONTEXT;
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Thu Aug 02 08:22:42 GMT 2018
    - 13.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/util/MimeMap.java

                        }
                        state = ST_EXT;
                    case ST_EXT:
                        switch( ch ) {
                            case ' ':
                            case '\t':
                            case '\n':
                            case '#':
                                for( i = 0; i < x && x == ext.length && buf[i] == ext[i]; i++ ) {
                                    ;
                                }
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 4.2K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/eventspy/EventSpy.java

     */
    package org.apache.maven.eventspy;
    
    import java.util.Map;
    
    /**
     * A core extension to monitor Maven's execution. Typically, such an extension gets loaded into Maven by specifying the
     * property {@code maven.ext.class.path} on the command line. As soon as dependency injection is set up, Maven
     * looks up all implementers of this interface and calls their {@link #init(Context)} method. Note:
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 2.6K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java

            String name = path.getFileName().toString();
            int dot = name.lastIndexOf('.');
            String ext = dot >= 1 ? name.substring(dot + 1) : "";
            Artifact artifact =
                    session.createArtifact(project.getGroupId(), project.getArtifactId(), project.getVersion(), ext);
            attachArtifact(project, artifact, path);
        }
    
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Feb 09 17:13:31 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/design/AdminDesignAction.java

            if (fileName == null) {
                return false;
            }
            final String lFileName = fileName.toLowerCase(Locale.ENGLISH);
            for (final String ext : exts) {
                if (lFileName.endsWith("." + ext)) {
                    return true;
                }
            }
            return false;
        }
    
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.3K bytes
    - Viewed (0)
  9. build-logic/documentation/src/main/groovy/gradlebuild/docs/RenderMarkdown.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package gradlebuild.docs;
    
    import com.vladsch.flexmark.ext.tables.TablesExtension;
    import com.vladsch.flexmark.html.HtmlRenderer;
    import com.vladsch.flexmark.parser.Parser;
    import com.vladsch.flexmark.util.options.MutableDataSet;
    import org.gradle.api.DefaultTask;
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 3.2K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/base/StandardSystemPropertyTest.java

     * limitations under the License.
     */
    
    package com.google.common.base;
    
    import static com.google.common.base.StandardSystemProperty.JAVA_COMPILER;
    import static com.google.common.base.StandardSystemProperty.JAVA_EXT_DIRS;
    import static com.google.common.truth.Truth.assertWithMessage;
    
    import com.google.common.annotations.GwtIncompatible;
    import junit.framework.TestCase;
    
    /**
     * Tests for {@link StandardSystemProperty}.
     *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Oct 10 08:40:05 GMT 2023
    - 2.4K bytes
    - Viewed (0)
Back to top