Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 731 for declareNS (0.29 sec)

  1. android/guava/src/com/google/common/io/PatternFilenameFilter.java

       * class to begin with but rather something returned from a static factory method whose declared
       * return type is plain FilenameFilter. If we made such a change, then the annotation we choose
       * here would have no significance to end users, who would be forced to conform to the signature
       * used in FilenameFilter.)
       */
      @Override
      public boolean accept(File dir, String fileName) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. src/internal/types/testdata/examples/types.go

    // 	var y A
    // 	y.m()
    // 	_ = y < 0
    // }
    
    // For now, a lone type parameter is not permitted as RHS in a type declaration (issue #45639).
    // // It is not permitted to declare a local type whose underlying
    // // type is a type parameter not declared by that type declaration.
    // func _[T any]() {
    // 	type _ T         // ERROR "cannot use function type parameter T as RHS in type declaration"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 23:16:04 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/cleanup/DefaultBuildOutputCleanupRegistry.java

                    // Some tasks cannot declare the dependencies on other projects, yet, for example the dependencies task.
                    // When configure on demand is enabled, those other projects are realized at execution time, long after the BuildOutputRegistry
                    // has been finalized. We ignore those problems for now, until the dependencies can be declared properly.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/AbstractProjectDependencyConflictResolutionIntegrationSpec.groovy

                def declared = $declaredDependencyId
                def expected = $winner
                doLast {
                    def deps = result.get().dependencies as List
                    def projectDependency = deps.find {
                        it instanceof org.gradle.api.artifacts.result.ResolvedDependencyResult &&
                            it.requested.matchesStrictly(declared)
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/core-plugins/war_plugin.adoc

    Dependencies declared here are thus visible to the `main` and `test` compilation classpaths.
    
    `providedRuntime`::
    This configuration should be used for dependencies required at runtime but which are provided by the environment in which the WAR is deployed.
    Dependencies declared here are only visible to the `main` and `test` runtime classpaths.
    
    
    [NOTE]
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/reflect/Parameter.java

      private final ImmutableList<Annotation> annotations;
    
      /**
       * An {@code AnnotatedType} instance, or {@code null} under Android VMs (possible only when using
       * the Android flavor of Guava). The field is declared with a type of {@code Object} to avoid
       * compatibility problems on Android VMs. The corresponding accessor method, however, can have the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 16 15:12:31 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/testFixtures/groovy/org/gradle/language/fixtures/AnnotationProcessorFixture.groovy

     * finding the annotated elements. Subclasses only need to provide the processing logic given those elements.
     *
     * The declared type of the processor can be overwritten to test various error cases, e.g. a processor that
     * declares itself as incremental, but doesn't honor that contract.
     */
    @CompileStatic
    class AnnotationProcessorFixture {
        protected final String annotationName
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 29 15:12:07 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/TypeMetadataWalker.java

            return new AbstractTypeMetadataWalker.InstanceTypeMetadataWalker(typeMetadataStore, nestedAnnotation);
        }
    
        /**
         * A factory method for a walker that can visit property hierarchy declared by a type.
         *
         * Type walker can detect a nested property cycle and stop walking the path with a cycle, no exception is thrown.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/rich_versions.adoc

    [[sec:strict-version]]
    `strictly`::
    Any version not matched by this version notation will be excluded.
    This is the strongest version declaration.
    On a declared dependency, a `strictly` can downgrade a version.
    When on a transitive dependency, it will cause dependency resolution to fail if no version acceptable by this clause can be selected.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ConfigurationPublications.java

        /**
         * Configures the variants of this configuration.
         */
        void variants(Action<? super NamedDomainObjectContainer<ConfigurationVariant>> configureAction);
    
        /**
         * Declares a capability for this configuration.
         *
         * @param notation the notation
         *
         * Valid notations are a <i>group:name:version</i> string (e.g: <i>org.test:capability:1.0</i>, or a map
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 08 17:57:43 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top