Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,660 for declareNS (0.17 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. docs/en/docs/tutorial/dependencies/classes-as-dependencies.md

    We can do better...
    
    ## What makes a dependency
    
    Up to now you have seen dependencies declared as functions.
    
    But that's not the only way to declare dependencies (although it would probably be the more common).
    
    The key factor is that a dependency should be a "callable".
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    		RunDespiteErrors bool
    		ResultType       reflect.Type
    		Requires         []*Analyzer
    		FactTypes        []Fact
    	}
    
    The Flags field declares a set of named (global) flag variables that
    control analysis behavior. Unlike vet, analysis flags are not declared
    directly in the command line FlagSet; it is up to the driver to set the
    flag variables. A driver for a single analysis, a, might expose its flag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentPluginIntegrationTest.groovy

        def "setup"() {
            buildFile << """
    @Managed
    interface SampleComponent extends ComponentSpec {
        String getVersion()
        void setVersion(String version)
    }
    """
        }
    
        def "plugin declares custom component"() {
            when:
            buildWithCustomComponentPlugin()
    
            and:
            buildFile << '''
    model {
        tasks {
            create("checkModel") {
                def components = $.components
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/custom_tasks.adoc

    ----
    
    === Limitations
    
    Support for declaring command line options currently comes with a few limitations.
    
    - Command line options can only be declared for custom tasks via annotation.
    There's no programmatic equivalent for defining options.
    - Options cannot be declared globally, e.g., on a project level or as part of a plugin.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 15:21:05 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    ====
    
    By default, rules declared in a project will *override* whatever is declared in settings.
    It is possible to change this default, for example to always prefer the settings rules:
    
    .Preferring rules declared in settings
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
Back to top