Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 6,264 for packages (0.19 sec)

  1. maven-core/src/main/java/org/apache/maven/extension/internal/CoreExtensionEntry.java

        private final Set<String> artifacts;
    
        private final Set<String> packages;
    
        private final String key;
    
        private final XmlNode configuration;
    
        public CoreExtensionEntry(
                ClassRealm realm,
                Collection<String> artifacts,
                Collection<String> packages,
                String key,
                XmlNode configuration) {
            this.realm = realm;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 07:14:56 GMT 2023
    - 4.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/http/Handler.java

        /**
         * Vendor-specific default packages. If no packages are specified in
         * "java.protocol.handler.pkgs", the VM uses one or more default
         * packages, which are vendor specific. Sun's is included below
         * for convenience; others could be as well. If a particular vendor's
         * package isn't listed, it can be specified in
         * "java.protocol.handler.pkgs".
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/http/Handler.java

                "java.protocol.handler.pkgs";
    
        /**
         * Vendor-specific default packages.  If no packages are specified in
         * "java.protocol.handler.pkgs", the VM uses one or more default
         * packages, which are vendor specific.  Sun's is included below
         * for convenience; others could be as well.  If a particular vendor's
         * package isn't listed, it can be specified in
         * "java.protocol.handler.pkgs".
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 6.1K bytes
    - Viewed (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/GenerateDefaultImports.java

            try (PrintWriter writer = new PrintWriter(new FileWriter(getImportsDestFile().getAsFile().get()))) {
                for (String packageName : packages) {
                    writer.print("import ");
                    writer.print(packageName);
                    writer.println(".*");
                }
            }
        }
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.3K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/extension/internal/CoreExports.java

            return artifacts;
        }
    
        /**
         * Returns packages exported by Maven core and core extensions.
         */
        public Map<String, ClassLoader> getExportedPackages() {
            return packages;
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 2.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/escape/package-info.java

     * {@link Escaper}.
     *
     * <p>Additional escapers implementations are found in the applicable packages: {@link
     * com.google.common.html.HtmlEscapers} in {@code com.google.common.html}, {@link
     * com.google.common.xml.XmlEscapers} in {@code com.google.common.xml}, and {@link
     * com.google.common.net.UrlEscapers} in {@code com.google.common.net}.
     *
     * <p>This package is a part of the open-source <a href="https://github.com/google/guava">Guava</a>
     * library.
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Jun 15 21:41:47 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java

         * @param parent The parent realm for the new realm, may be {@code null}.
         * @param parentImports The packages/types to import from the parent realm, may be {@code null}.
         * @param foreignImports The packages/types to import from foreign realms, may be {@code null}.
         * @param artifacts The artifacts to add to the realm, may be {@code null}. Unresolved artifacts (i.e. with a
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jan 10 12:53:42 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/classrealm/DefaultClassRealmManagerTest.java

            assertEquals(1, classRealm.getURLs().length);
            assertThat(classRealm.getURLs()[0].getPath(), endsWith("local/repository/some/path"));
    
            verifier.verify(logger, calls(1)).debug("Importing foreign packages into class realm {}", "maven.api");
            verifier.verify(logger, calls(1)).debug("  Imported: {} < {}", "group1:artifact1", "test");
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jan 10 12:53:42 GMT 2024
    - 7.1K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/classrealm/ClassRealmRequest.java

        /**
         * Gets the packages/types to import from the parent realm.
         *
         * @return The modifiable list of packages/types to import from the parent realm, never {@code null}.
         */
        List<String> getParentImports();
    
        /**
         * Gets the packages/types to import from foreign realms.
         *
         * @return The modifiable map of packages/types to import from foreign realms, never {@code null}.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/mylasta/FessActionDefTest.java

                    final String webPackageKeyword = getWebPackageKeyword();
                    if (!clazz.getName().contains(webPackageKeyword) ||
                    // exclude app.web.api.admin packages
                            clazz.getName().contains(".app.web.api.admin.")) {
                        return;
                    }
                    check(srcFile, clazz, webPackageKeyword);
                }
            });
        }
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.3K bytes
    - Viewed (0)
Back to top