Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 466 for composed (0.17 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/Artifact.java

     *
     * @since 4.0.0
     */
    @Experimental
    @Immutable
    public interface Artifact {
    
        /**
         * Returns a unique identifier for this artifact.
         * The identifier is composed of groupId, artifactId, extension, classifier, and version.
         *
         * @return the unique identifier
         */
        @Nonnull
        default String key() {
            return getGroupId()
                    + ':'
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 15:48:33 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/testFixtures/groovy/org/gradle/language/fixtures/HelperProcessorFixture.groovy

    import javax.tools.StandardLocation
    
    /**
     * Generates a "Helper" class for each annotated type. The helper has a "getValue()" method that returns
     * a greeting. The greeting is composed of a message and a suffix. The message is compiled into a support
     * library. The suffix is compiled directly into the processor. This makes it easy to test different incremental
     * change scenarios. The message can also be provided with the -Amessage processor argument.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/cache/ModelSchemaCache.java

     * and for strong class references not to be held for the cache keys.
     * <p>
     * The use of {@link WeakClassSet} as the cache key, opposed to just {@link Class}, is because a type may be composed of types from different classloaders.
     * An example of this would be something like {@code ModelSet<SomeCustomUserType>}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/main/java/org/gradle/language/cpp/CppComponent.java

     *
     * <p>A C++ component is composed of some C++ source files that are compiled and then linked into some binary.</p>
     *
     * <p>An instance of this type is added as a project extension by the C++ plugins.</p>
     *
     * @since 4.2
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/tasks/Nested.java

     * As a property name, the index of the element in the iterable prefixed by {@code $} is used, e.g. {@code $0}.
     * If the element implements {@link org.gradle.api.Named}, then the property name is composed of {@link org.gradle.api.Named#getName()} and the index, e.g. {@code name$1}.
     * The ordering of the elements in the iterable is crucial for reliable up-to-date checks and caching.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 27 22:03:08 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  6. cmd/routers.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"net/http"
    
    	"github.com/minio/minio/internal/grid"
    	"github.com/minio/mux"
    )
    
    // Composed function registering routers for only distributed Erasure setup.
    func registerDistErasureRouters(router *mux.Router, endpointServerPools EndpointServerPools) {
    	// Register storage REST router only if its a distributed setup.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 19:08:18 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. pkg/kubelet/server/auth.go

    	authorizer.RequestAttributesGetter
    	// authorizer determines whether a given authorization.Attributes is allowed
    	authorizer.Authorizer
    }
    
    // NewKubeletAuth returns a kubelet.AuthInterface composed of the given authenticator, attribute getter, and authorizer
    func NewKubeletAuth(authenticator authenticator.Request, authorizerAttributeGetter authorizer.RequestAttributesGetter, authorizer authorizer.Authorizer) AuthInterface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 18:09:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. src/internal/coverage/encodemeta/encodefile.go

    	"crypto/md5"
    	"encoding/binary"
    	"fmt"
    	"internal/coverage"
    	"internal/coverage/stringtab"
    	"io"
    	"os"
    	"unsafe"
    )
    
    // This package contains APIs and helpers for writing out a meta-data
    // file (composed of a file header, offsets/lengths, and then a series of
    // meta-data blobs emitted by the compiler, one per Go package).
    
    type CoverageMetaFileWriter struct {
    	stab   stringtab.Writer
    	mfname string
    	w      *bufio.Writer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:40:42 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  9. src/hash/adler32/adler32.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package adler32 implements the Adler-32 checksum.
    //
    // It is defined in RFC 1950:
    //
    //	Adler-32 is composed of two sums accumulated per byte: s1 is
    //	the sum of all bytes, s2 is the sum of all s1 values. Both sums
    //	are done modulo 65521. s1 is initialized to 1, s2 to zero.  The
    //	Adler-32 checksum is stored as s2*65536 + s1 in most-
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 12 05:36:29 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. platforms/software/plugins-version-catalog/src/integTest/groovy/org/gradle/catalog/VersionCatalogResolveIntegrationTest.groovy

            module.pom.expectGet()
            module.moduleMetadata.expectGet()
            module.getArtifact(type: 'toml').expectGet()
    
            succeeds ':publish'
    
            then:
            expectPlatformContents 'composed-platform'
        }
    
        private TestFile preparePlatformProject(String platformSpec = "", String version = "1.0") {
            def platformDir = file('platform')
            platformDir.file("settings.gradle").text = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 8.8K bytes
    - Viewed (0)
Back to top