Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for ARE (0.04 sec)

  1. platforms/core-runtime/service-provider/src/main/java/org/gradle/internal/service/scopes/GradleModuleServices.java

         *
         * <p>Global services are visible to all other services.</p>
         *
         * @see Scope.Global
         */
        void registerGlobalServices(ServiceRegistration registration);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. src/go/doc/comment_test.go

    		wantOldText     = "[T] and [U] are types, and [T.M] is a method, but [V] is a broken link.\n[rand.Int] and [crand.Reader] are things. [G.M1] and [G.M2] are generic methods.\n"
    		wantSynopsis    = "T and U are types, and T.M is a method, but [V] is a broken link."
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 06:33:18 UTC 2022
    - 3K bytes
    - Viewed (0)
  3. src/reflect/deepequal.go

    //
    // Func values are deeply equal if both are nil; otherwise they are not deeply equal.
    //
    // Interface values are deeply equal if they hold deeply equal concrete values.
    //
    // Map values are deeply equal when all of the following are true:
    // they are both nil or both non-nil, they have the same length,
    // and either they are the same map object or their corresponding keys
    // (matched using Go equality) map to deeply equal values.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:30 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. platforms/jvm/language-jvm/src/main/java/org/gradle/api/plugins/jvm/JvmComponentDependencies.java

     *
     * <ul>
     *     <li><code>implementation</code> dependencies are used at compilation and runtime.</li>
     *     <li><code>compileOnly</code> dependencies are used only at compilation and are not available at runtime.</li>
     *     <li><code>runtimeOnly</code> dependencies are not available at compilation and are used only at runtime.</li>
     *     <li><code>annotationProcessor</code> dependencies are used only at compilation for the annotation processor classpath</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 14 18:56:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/Scope.java

    public interface Scope {
    
        /**
         * These services are reused across builds in the same process.
         *
         * <p>Global services are visible to all other services.</p>
         */
        interface Global extends Scope {}
    
        /**
         * These services are reused across builds in the same process while the Gradle user home directory remains unchanged.
         * The services are closed when the Gradle user home directory changes.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. testing/architecture-test/src/changes/archunit-store/stored.rules

    #
    #Fri Jan 19 18:01:32 EST 2024
    classes\ that\ are\ Gradle\ public\ API\ should\ have\ accessors\ with\ symmetrical\ @Nullable\ annotations=public-api-symmetrical-accessors-nullability.txt
    classes\ that\ are\ Gradle\ public\ API\ should\ not\ have\ direct\ super-class\ or\ interface\ that\ are\ Gradle\ Internal\ API=public-api-not-extends-internal-types.txt
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/tasks/util/PatternFilterable.java

     *
     * <p>If no include patterns or specs are specified, then all files in this container will be included. If any include
     * patterns or specs are specified, then a file is included if it matches any of the patterns or specs.</p>
     *
     * <p>If no exclude patterns or spec are specified, then no files will be excluded. If any exclude patterns or specs are
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 8K bytes
    - Viewed (0)
  8. architecture/environments/operator.md

    The operator has a very similar structure to istio/installer: components are grouped into features.
    `IstioOperatorSpec` defines functional settings at the feature level. Functional settings are those that performs some
    function in the Istio control plane without necessarily being tied to any one component that runs in a Deployment.
    Component settings are those that necessarily refer to a particular Deployment or Service. For example, the number
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/library_vs_application.adoc

    [[sub:producer-variants]]
    == Producer variants
    
    A producer may want to generate different artifacts for different kinds of consumers: for the same source code, different _binaries_ are produced.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  10. test/fixedbugs/issue22344.go

    		const (
    			Zero = iota
    			One
    			Two
    			_ = unsafe.Sizeof([iota - 1]int{} == x) // assert types are equal
    			_ = unsafe.Sizeof([iota - 2]int{} == y) // assert types are equal
    			_ = unsafe.Sizeof([Two]int{} == x)      // assert types are equal
    		)
    		var z [iota]int                  // [2]int
    		_ = unsafe.Sizeof([2]int{} == z) // assert types are equal
    	})
    	three = iota // the sequence continues
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 12 06:46:57 UTC 2019
    - 2.2K bytes
    - Viewed (0)
Back to top