Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,135 for produced (0.13 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_attributes.adoc

    | Value is the name of the Suite.
    | No default, no compatibility
    
    | link:{javadocPath}/org/gradle/api/attributes/TestSuiteTargetName.html#TEST_SUITE_TARGET_NAME_ATTRIBUTE[`org.gradle.testsuite.target.name`]
    | Indicates the name of the link:{javadocPath}/org/gradle/testing/base/TestSuiteTarget.html[TestSuiteTarget] that produced this output.
    | Value is the name of the Target.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 18:51:23 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/swift/metadata/SwiftcMetadataProviderTest.groovy

            expect:
            def result = output(out)
            !result.available
    
            when:
            result.explain(visitor)
    
            then:
            visitor.toString() == "Could not determine SwiftC metadata: swiftc produced unexpected output."
    
            where:
            out << ["not sure about this", ""]
        }
    
        def "handles failure to execute swiftc"() {
            given:
            def visitor = new TreeFormatter()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/UnitOfWork.java

                return true;
            }
        }
    
        enum WorkResult {
            DID_WORK,
            DID_NO_WORK
        }
    
        /**
         * Loads output not produced during the current execution.
         * This can be output produced during a previous execution when the work is up-to-date,
         * or loaded from cache.
         */
        @Nullable
        Object loadAlreadyProducedOutput(File workspace);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  4. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/plugins/MavenPublishPlugin.java

            final TaskContainer tasks = project.getTasks();
            tasks.register(PUBLISH_LOCAL_LIFECYCLE_TASK_NAME, publish -> {
                publish.setDescription("Publishes all Maven publications produced by this project to the local Maven cache.");
                publish.setGroup(PublishingPlugin.PUBLISH_TASK_GROUP);
            });
    
            project.getExtensions().configure(PublishingExtension.class, extension -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/model/CalculatedValueContainer.java

        @Nullable
        private volatile Try<T> result;
    
        /**
         * Creates a container for a value that is yet to be produced.
         *
         * Note: this is package protected. Use {@link CalculatedValueContainerFactory} instead.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. internal/kms/secret-key.go

    		Ciphertext: ciphertext,
    	}, nil
    }
    
    // Decrypt decrypts req.Ciphertext. The key name req.Name must match the key
    // name of the secretKey.
    //
    // Decrypt supports decryption of binary-encoded ciphertexts, as produced by KES
    // and MinKMS, and legacy JSON formatted ciphertexts.
    func (s secretKey) Decrypt(_ context.Context, req *DecryptRequest) ([]byte, error) {
    	if req.Name != s.keyID {
    		return nil, ErrKeyNotFound
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/CodeNarcInvoker.groovy

                if (e.message.matches('Exceeded maximum number of priority \\d* violations.*')) {
                    def message = "CodeNarc rule violations were found."
    
                    // Find all reports that produced a file
                    def reportsWithFiles = reports.findAll { it.name.get() != 'console' }
                    // a report file was generated
                    if (!reportsWithFiles.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 14:00:06 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/Project.java

         */
        @Nonnull
        default Artifact getPomArtifact() {
            return getArtifacts().get(0);
        }
    
        /**
         * Returns the project main artifact, which is the artifact produced by this project build, if applicable.
         * This artifact MAY be absent if the project is actually not producing any main artifact (i.e. "pom" packaging).
         *
         * @see #getPackaging()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:42:51 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/features/CollectionSize.java

    import java.util.Collection;
    import java.util.Collections;
    import java.util.Set;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * When describing the features of the collection produced by a given generator (i.e. in a call to
     * {@link
     * com.google.common.collect.testing.FeatureSpecificTestSuiteBuilder#withFeatures(Feature...)}),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/collect/testing/features/CollectionSize.java

    import java.util.Collection;
    import java.util.Collections;
    import java.util.Set;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * When describing the features of the collection produced by a given generator (i.e. in a call to
     * {@link
     * com.google.common.collect.testing.FeatureSpecificTestSuiteBuilder#withFeatures(Feature...)}),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top