Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 59 for getPackages (0.17 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/swiftpm/tasks/GenerateSwiftPackageManagerManifest.java

            manifestFile = objectFactory.fileProperty();
            packageProperty = objectFactory.property(Package.class);
        }
    
        @Input
        public Property<Package> getPackage() {
            return packageProperty;
        }
    
        @OutputFile
        public RegularFileProperty getManifestFile() {
            return manifestFile;
        }
    
        @TaskAction
        public void generate() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/reflect/ClassPath.java

         *
         * <p>Behaves similarly to {@code class.getPackage().}{@link Package#getName() getName()} but
         * does not require the class (or package) to be loaded.
         *
         * <p>But note that this method may behave differently for a class in the default package: For
         * such classes, this method always returns an empty string. But under some version of Java,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 05 17:43:40 UTC 2022
    - 24.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modindex/read.go

    	errNotFromModuleCache = fmt.Errorf("%w: not from module cache", ErrNotIndexed)
    )
    
    // GetPackage returns the IndexPackage for the directory at the given path.
    // It will return ErrNotIndexed if the directory should be read without
    // using the index, for instance because the index is disabled, or the package
    // is not in a module.
    func GetPackage(modroot, pkgdir string) (*IndexPackage, error) {
    	mi, err := GetModule(modroot)
    	if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  4. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/CheckstyleInvoker.groovy

            } catch (ClassNotFoundException e) {
                checkstyleTaskClass = antLoader.loadClass("com.puppycrawl.tools.checkstyle.ant.CheckstyleAntTask")
            }
            return VersionNumber.parse(checkstyleTaskClass.getPackage().getImplementationVersion())
        }
    
        private static boolean isSarifSupported(VersionNumber versionNumber) {
            return versionNumber >= VersionNumber.parse("10.3.3")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 16 22:34:07 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/reflect/ClassPath.java

         *
         * <p>Behaves similarly to {@code class.getPackage().}{@link Package#getName() getName()} but
         * does not require the class (or package) to be loaded.
         *
         * <p>But note that this method may behave differently for a class in the default package: For
         * such classes, this method always returns an empty string. But under some version of Java,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 05 17:43:40 UTC 2022
    - 24.9K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecyclePluginAnalyzer.java

    @Named
    public class DefaultLifecyclePluginAnalyzer implements LifeCyclePluginAnalyzer {
        public static final String DEFAULTLIFECYCLEBINDINGS_MODELID = "org.apache.maven:maven-core:"
                + DefaultLifecyclePluginAnalyzer.class.getPackage().getImplementationVersion()
                + ":default-lifecycle-bindings";
    
        private final Logger logger = LoggerFactory.getLogger(getClass());
    
        private final Lookup lookup;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/ZincScalaCompilerFactory.java

            } catch (Exception e) {
                throw new RuntimeException("Failed create instance of the scala compiler", e);
            }
    
            String zincVersion = ZincCompilerUtil.class.getPackage().getImplementationVersion();
            String scalaVersion = scalaInstance.actualVersion();
    
            String javaVersion = Jvm.current().getJavaVersion().getMajorVersion();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/swiftpm/plugins/SwiftPackageManagerExportPlugin.java

                public void execute(Project project) {
                    Provider<Package> products = project.getProviders().provider(new MemoizingCallable(new PackageFactory(project)));
                    manifestTask.getPackage().set(products);
                }
            });
        }
    
        private static class MemoizingCallable implements Callable<Package> {
            private Package result;
            private Callable<Package> delegate;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/DefaultPrecompiledScriptPluginsSupport.kt

                PRECOMPILED_SCRIPT_MANUAL.getConsultDocumentationMessage()
            )
        }
        val existingPlugin = plugins.findPlugin(scriptPlugin.id)
        if (existingPlugin != null && existingPlugin.javaClass.getPackage().name.startsWith(DefaultPluginManager.CORE_PLUGIN_PREFIX)) {
            throw PrecompiledScriptException(
                String.format(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 10:44:10 UTC 2024
    - 21K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/import.go

    	// We're just looking for a plausible directory.
    	haveGoFiles, err = haveGoFilesCache.Do(dir, func() (bool, error) {
    		// modindex.GetPackage will return ErrNotIndexed for any directories which
    		// are reached through a symlink, so that they will be handled by
    		// fsys.IsDirWithGoFiles below.
    		if ip, err := modindex.GetPackage(mdir, dir); err == nil {
    			return ip.IsDirWithGoFiles()
    		} else if !errors.Is(err, modindex.ErrNotIndexed) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
Back to top