Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 181 for unqualified (0.15 sec)

  1. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildInitDependency.java

    import org.gradle.api.NonNullApi;
    
    import javax.annotation.Nullable;
    
    /**
     * Data object for use with version catalog generation to encode module, version and if generated aliases should be shortened or qualified.
     */
    @NonNullApi
    public class BuildInitDependency {
        final String module;
        final String version;
        private BuildInitDependency(String module, @Nullable String version) {
            this.module = module;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/plugins/ApplyPluginBuildOperationType.java

    public final class ApplyPluginBuildOperationType implements BuildOperationType<ApplyPluginBuildOperationType.Details, ApplyPluginBuildOperationType.Result> {
    
        public interface Details {
    
            /**
             * The fully qualified plugin ID, if known.
             */
            @Nullable
            String getPluginId();
    
            /**
             * The class of the plugin implementation.
             */
            Class<?> getPluginClass();
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/PrecompiledScriptPlugin.kt

         * Gradle plugin id inferred from the script file name and package declaration (if any).
         */
        val id by lazy {
            packagePrefixed(fileNameWithoutScriptExtension)
        }
    
        /**
         * Fully qualified name for the [Plugin] implementation class.
         *
         * The [Plugin] implementation class adapts the precompiled script class
         * to the Gradle [Plugin] protocol and it is automatically generated by
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  4. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinForwardDeclarationProviderFactory.kt

     *
     * The declarations from the provider are used as a source **representation** for forward declaration symbols.
     * The special provider is necessary because forward declarations are mere qualified names by themselves.
     * It is a responsibility of the implementor to make the source representation correct.
     * Symbol's properties are not affected by its source representation.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/task/java/JavaCompileTaskOperationResult.java

        /**
         * The results of an annotation processor used during compilation.
         *
         * @since 5.1
         */
        interface AnnotationProcessorResult {
    
            /**
             * Returns the fully-qualified class name of this annotation processor.
             */
            String getClassName();
    
            /**
             * Returns the type of this annotation processor.
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/CompileJavaBuildOperationType.java

            /**
             * Details about an annotation processor used during compilation.
             */
            interface AnnotationProcessorDetails {
    
                /**
                 * Returns the fully-qualified class name of this annotation processor.
                 */
                String getClassName();
    
                /**
                 * Returns the type of this annotation processor.
                 */
                Type getType();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSymbolContainingDeclarationProvider.kt

         *   for regular, non-local callables from source, it is a mere conversion of [ClassId] inside [CallableId]
         *
         * The returned JVM class name is of fully qualified name format, e.g., foo.bar.Baz.Companion
         *
         * Note that this API is applicable for common or JVM modules only, and returns `null` for non-JVM modules.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/composite/IncludedRootBuild.java

            return rootBuild.getBuildRootDir();
        }
    
        @Override
        public TaskReference task(String path) {
            Preconditions.checkArgument(path.startsWith(":"), "Task path '%s' is not a qualified task path (e.g. ':task' or ':project:task').", path);
            return new IncludedRootBuildTaskReference(rootBuild, path);
        }
    
        @Override
        public BuildState getTarget() {
            return rootBuild;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 14 21:39:25 UTC 2021
    - 3K bytes
    - Viewed (0)
  9. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildTaskDependencyIntegrationTest.groovy

            failure.assertHasCause("Task with path ':does-not-exist' not found in project ':buildB'.")
        }
    
        def "reports failure when task path is not qualified for included build"() {
            when:
            buildA.buildFile << """
        task delegate {
            dependsOn gradle.includedBuild('buildB').task('logProject')
        }
    """
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/test/callback_windows.go

    		switch fname {
    		case "goCallback":
    			// TODO(qmuntal): investigate why this function doesn't appear
    			// when using the external linker.
    			continue
    		}
    		// In module mode, this package has a fully-qualified import path.
    		// Remove it if present.
    		fname = strings.TrimPrefix(fname, "cmd/cgo/internal/")
    		if !strings.HasPrefix(fname, "test.") {
    			continue
    		}
    		got = append(got, fname)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 16:01:37 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top