Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 785 for Identifier (0.17 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ComponentMetadataSupplierDetails.java

    /**
     * A component metadata rule details, giving access to the identifier of the component being
     * resolved, the metadata builder, and the repository resource accessor for this.
     *
     * @since 4.0
     */
    public interface ComponentMetadataSupplierDetails {
        /**
         * Returns the identifier of the component being resolved
         * @return the identifier
         */
        ModuleComponentIdentifier getId();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  2. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/task/ToolchainReportRenderer.java

                StyledTextOutput output = getTextOutput();
                output.withStyle(Identifier).println(" + Invalid toolchains");
                for (JvmToolchainMetadata toolchain : invalidToolchains) {
                    JvmInstallationMetadata metadata = toolchain.metadata;
                    output.withStyle(Identifier).println("     + " + metadata.getJavaHome());
                    printInvalidToolchainErrorLines(toolchain);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:17:59 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/eventbus/AsyncEventBus.java

       * identifier} as the bus's name for logging purposes.
       *
       * @param identifier short name for the bus, for logging purposes.
       * @param executor Executor to use to dispatch events. It is the caller's responsibility to shut
       *     down the executor after the last event has been posted to this event bus.
       */
      public AsyncEventBus(String identifier, Executor executor) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:05:46 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/gradle/GradlePublication.java

    public interface GradlePublication extends ProjectModel {
    
        /**
         * Returns the identifier for the Gradle project that this publication originates from.
         *
         * @since 3.3
         */
        @Override
        ProjectIdentifier getProjectIdentifier();
    
        /**
         * Returns the unique identifier of the publication.
         *
         * @return the unique identifier of the publication
         */
        GradleModuleVersion getId();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ProgramSource.kt

            return rangesToErase
        }
    }
    
    
    internal
    fun text(string: String) = ProgramText.from(string)
    
    
    internal
    fun ProgramSource.fragment(identifier: IntRange, block: IntRange, firstAnnotationStart: Int? = null) =
        ProgramSourceFragment(this, ScriptSection(identifier, block, firstAnnotationStart))
    
    
    internal
    fun ProgramSource.fragment(section: ScriptSection) =
        ProgramSourceFragment(this, section)
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/language/nativeplatform/internal/IncludeType.java

         */
        MACRO_FUNCTION,
        /**
         * An identifier that should not be macro expanded. These appear as the arguments to a {@link #MACRO_FUNCTION} or {@link #TOKEN_CONCATENATION} eg {@code #include ABC(X, Y)}
         */
        IDENTIFIER,
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/native/src/test/groovy/org/gradle/internal/nativeintegration/jansi/JansiLibraryFactoryIntegrationTest.groovy

        def "jansi library can be created for MacOSX"() {
            when:
            JansiLibrary jansiLibrary = factory.create()
    
            then:
            jansiLibrary.platform == JansiOperatingSystemSupport.MAC_OS_X.identifier
            jansiLibrary.filename == MAC_OSX_LIB_FILENAME
            jansiLibrary.resourcePath ==  "/META-INF/native/" + jansiLibrary.path
        }
    
        @Requires(UnitTestPreconditions.Linux)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/LocalVariantMetadata.java

        public LocalVariantMetadata(String name, Identifier identifier, DisplayName displayName, ImmutableAttributes attributes, ImmutableCapabilities capabilities, CalculatedValue<ImmutableList<LocalComponentArtifactMetadata>> artifacts) {
            super(name, identifier, displayName, attributes, ImmutableList.of(), capabilities);
            this.artifacts = artifacts;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/testFixtures/groovy/org/gradle/platform/base/binary/BaseBinaryFixtures.groovy

                def identifier = componentNode ? componentNode.asImmutable(ModelType.of(ComponentSpecInternal), null).instance.identifier.child(name) : new DefaultComponentSpecIdentifier("project", name)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/VariantWithOverloadAttributes.java

    public class VariantWithOverloadAttributes implements VariantResolveMetadata.Identifier {
        private final VariantResolveMetadata.Identifier variantIdentifier;
        private final ImmutableAttributes targetVariant;
        private final int hashCode;
    
        public VariantWithOverloadAttributes(VariantResolveMetadata.Identifier variantIdentifier, ImmutableAttributes targetVariant) {
            this.variantIdentifier = variantIdentifier;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top