Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,585 for Identifier (0.2 sec)

  1. android/guava/src/com/google/common/eventbus/EventBus.java

      public EventBus() {
        this("default");
      }
    
      /**
       * Creates a new EventBus with the given {@code identifier}.
       *
       * @param identifier a brief name for this bus, for logging purposes. Should be a valid Java
       *     identifier.
       */
      public EventBus(String identifier) {
        this(
            identifier,
            MoreExecutors.directExecutor(),
            Dispatcher.perThreadDispatchQueue(),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 25 16:37:57 UTC 2021
    - 12.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. staging/src/k8s.io/api/authentication/v1beta1/types_swagger_doc_generated.go

    	"audiences":     "Audiences are audience identifiers chosen by the authenticator that are compatible with both the TokenReview and token. An identifier is any identifier in the intersection of the TokenReviewSpec audiences and the token's audiences. A client of the TokenReview API that sets the spec.audiences field should validate that a compatible audience identifier is returned in the status.audiences field to ensure that the TokenReview server is audience...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 23:42:33 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelProblem.java

         */
        int getColumnNumber();
    
        /**
         * Gets the identifier of the model from which the problem originated. While the general form of this identifier is
         * <code>groupId:artifactId:version</code> the returned identifier need not be complete. The identifier is derived
         * from the information that is available at the point the problem occurs and as such merely serves as a best effort
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/component/ModuleComponentIdentifier.java

         *
         * @return Component version
         * @since 1.10
         */
        String getVersion();
    
        /**
         * The module identifier of the component. Returns the same information
         * as {@link #getGroup()} and {@link #getModule()}.
         *
         * @return the module identifier
         *
         * @since 4.9
         */
        ModuleIdentifier getModuleIdentifier();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 1.6K bytes
    - Viewed (0)
Back to top