Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,135 for produced (0.18 sec)

  1. platforms/software/platform-base/src/main/java/org/gradle/platform/base/VariantComponentSpec.java

    /**
     * Represents a component spec that is made up of one or more mutually exclusive variants.
     */
    @Incubating
    public interface VariantComponentSpec extends ComponentSpec, VariantComponent {
        /**
         * The variants produced for this component spec.
         */
        ModelMap<BinarySpec> getBinaries();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  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. android/guava/src/com/google/common/hash/HashFunction.java

     *       (given by {@link #bits}). For example, {@link Hashing#sha1} produces a 160-bit number,
     *       while {@link Hashing#murmur3_32()} yields only 32 bits. Because a {@code long} value is
     *       clearly insufficient to hold all hash code values, this API represents a hash code as an
     *       instance of {@link HashCode}.
     *   <li><b>pure function:</b> the value produced must depend only on the input bytes, in the order
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 25 18:22:59 UTC 2021
    - 10.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/hash/HashFunction.java

     *       (given by {@link #bits}). For example, {@link Hashing#sha1} produces a 160-bit number,
     *       while {@link Hashing#murmur3_32()} yields only 32 bits. Because a {@code long} value is
     *       clearly insufficient to hold all hash code values, this API represents a hash code as an
     *       instance of {@link HashCode}.
     *   <li><b>pure function:</b> the value produced must depend only on the input bytes, in the order
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 25 18:22:59 UTC 2021
    - 10.9K bytes
    - Viewed (0)
  10. 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)
Back to top