Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,585 for Identifier (0.18 sec)

  1. 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)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/ArtifactResolutionDetails.java

    public interface ArtifactResolutionDetails {
        /**
         * The identifier of the module being looked for in this repository
         * @return the module identifier
         */
        ModuleIdentifier getModuleId();
    
        /**
         * The module component identifier of the module being looked for in this repository,
         * which includes a version.
         * @return the module version identifier. If it's a version listing, then this will
         * be null.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 17:41:33 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/connection/ParameterAwareBuildControllerAdapterTest.groovy

            then:
            result == modelView
    
            and:
            1 * adapter.unpack(modelElement) >> targetElement
            1 * delegate.getModel(targetElement, _, null) >> { def target, ModelIdentifier identifier, parameter ->
                assert identifier.name == 'GradleBuild'
                assert parameter == null
                return Stub(BuildResult) {
                    getModel() >> model
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 08:15:25 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/ConflictHandler.java

         */
        void resolveNextConflict(Action<RESULT> resolutionAction);
    
        /**
         * Indicates if the identifier is a known participant in a conflict
         *
         * @param id the identifier to check
         * @return {@code true} if the identifier is part of a conflict, {@code false} otherwise
         */
        boolean hasKnownConflictFor(ModuleVersionIdentifier id);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 23:54:34 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. src/internal/types/testdata/examples/methods.go

    // is declared through that receiver declaration, it must be an identifier.
    // It cannot possibly be some other type because the receiver type is not
    // instantiated with concrete types, it is standing for the parameterized
    // receiver type.
    func (t T1[[ /* ERROR "must be an identifier" */ ]int]) m2() {}
    
    // Note that using what looks like a predeclared identifier, say int,
    // as type parameter in this situation is deceptive and considered bad
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/AbstractFingerprintChanges.java

            .put(AbsolutePathFingerprintingStrategy.IDENTIFIER, AbsolutePathFingerprintCompareStrategy.INSTANCE)
            .put(NameOnlyFingerprintingStrategy.IDENTIFIER, NormalizedPathFingerprintCompareStrategy.INSTANCE)
            .put(RelativePathFingerprintingStrategy.IDENTIFIER, NormalizedPathFingerprintCompareStrategy.INSTANCE)
            .put(IgnoredPathFingerprintingStrategy.IDENTIFIER, IgnoredPathCompareStrategy.INSTANCE)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top