Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,102 for produced (0.19 sec)

  1. src/cmd/go/testdata/script/mod_tidy_cycle.txt

    # Regression test for https://golang.org/issue/34086:
    # 'go mod tidy' produced different go.mod file from other
    # subcommands when certain kinds of cycles were present
    # in the build graph.
    
    env GO111MODULE=on
    
    cp go.mod go.mod.orig
    go mod tidy
    cmp go.mod go.mod.orig
    
    # If the go.mod file is already tidy, 'go mod graph' should not modify it.
    go mod graph
    cmp go.mod go.mod.orig
    
    -- go.mod --
    module root
    
    go 1.13
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 19 15:51:38 UTC 2019
    - 949 bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/tasks/execution/ExecuteTaskBuildOperationType.java

             */
            boolean isActionable();
    
            /**
             * If task was UP_TO_DATE or FROM_CACHE, this will convey the ID of the build that produced the outputs being reused.
             * Value will be null for any other outcome.
             *
             * This value may also be null for an UP_TO_DATE outcome where the task executed, but then decided it was UP_TO_DATE.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/IndexedCache.java

         *
         * Production of the value always happens synchronously by the calling thread. However, the implementation may update the backing store with new value synchronously or asynchronously.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. platforms/software/reporting/src/main/java/org/gradle/api/reporting/plugins/BuildDashboardPlugin.java

                @Override
                public void execute(final GenerateBuildDashboard buildDashboardTask) {
                    buildDashboardTask.setDescription("Generates a dashboard of all the reports produced by this build.");
                    buildDashboardTask.setGroup("reporting");
    
                    DirectoryReport htmlReport = buildDashboardTask.getReports().getHtml();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. src/internal/trace/raw/writer.go

    package raw
    
    import (
    	"encoding/binary"
    	"fmt"
    	"io"
    
    	"internal/trace/event"
    	"internal/trace/version"
    )
    
    // Writer emits the wire format of a trace.
    //
    // It may not produce a byte-for-byte compatible trace from what is
    // produced by the runtime, because it may be missing extra padding
    // in the LEB128 encoding that the runtime adds but isn't necessary
    // when you know the data up-front.
    type Writer struct {
    	w     io.Writer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/TransformRegistration.java

     */
    public interface TransformRegistration {
        /**
         * Attributes that match the variant that is consumed.
         */
        ImmutableAttributes getFrom();
    
        /**
         * Attributes that match the variant that is produced.
         */
        ImmutableAttributes getTo();
    
        /**
         * Transform step for artifacts of the variant.
         */
        TransformStep getTransformStep();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. src/log/slog/level.go

    	// AppendQuote is sufficient for JSON-encoding all Level strings.
    	// They don't contain any runes that would produce invalid JSON
    	// when escaped.
    	return strconv.AppendQuote(nil, l.String()), nil
    }
    
    // UnmarshalJSON implements [encoding/json.Unmarshaler]
    // It accepts any string produced by [Level.MarshalJSON],
    // ignoring case.
    // It also accepts numeric offsets that would result in a different string on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 17:34:43 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/ExecutionOutputState.java

         *
         * In the presence of overlapping outputs this might be different from
         * {@link BeforeExecutionState#getOutputFileLocationSnapshots()},
         * as this does not include overlapping outputs not produced by the work.
         */
        ImmutableSortedMap<String, FileSystemSnapshot> getOutputFilesProducedByWork();
    
        /**
         * The origin metadata of the outputs captured.
         */
        OriginMetadata getOriginMetadata();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:29 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/tasks/VerificationTask.java

     * limitations under the License.
     */
    package org.gradle.api.tasks;
    
    /**
     * A {@code VerificationTask} is a task which performs some verification of the artifacts produced by a build.
     */
    public interface VerificationTask {
        /**
         * Specifies whether the build should break when the verifications performed by this task fail.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/composite-builds/basic/README.adoc

    Note that the `my-app` build does not have direct dependencies on `my-utils`. Instead, it declares module dependencies on the libraries produced by `my-utils`:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top