Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 2,135 for produced (0.29 sec)

  1. src/internal/trace/raw/doc.go

    useful for testing and debugging the tracer in the runtime and more sophisticated
    trace parsers.
    
    # Text format specification
    
    The trace text format produced and consumed by this package is a line-oriented
    format.
    
    The first line in each text trace is the header line.
    
    	Trace Go1.XX
    
    Following that is a series of event lines. Each event begins with an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/diagnostic.go

    	//
    	// If URL is empty but a Category is specified, then the
    	// Analysis driver should treat the URL as "#"+Category.
    	//
    	// The URL may be relative. If so, the base URL is that of the
    	// Analyzer that produced the diagnostic;
    	// see https://pkg.go.dev/net/url#URL.ResolveReference.
    	URL string
    
    	// SuggestedFixes is an optional list of fixes to address the
    	// problem described by the diagnostic, each one representing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GroupedWorkOutputFixture.java

    import java.util.Arrays;
    import java.util.List;
    
    import static org.gradle.util.internal.CollectionUtils.filter;
    import static org.gradle.util.internal.CollectionUtils.join;
    
    /**
     * Collects the output entries produced by a work item such as a task or an artifact transform,
     * and allows assertions to be made about the output.
     *
     * @see GroupedOutputFixture
     */
    public abstract class GroupedWorkOutputFixture {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/MissingTaskDependencyDetector.java

                            + "This can lead to incorrect results being produced, depending on what order the tasks are executed",
                        consumer,
                        producer
                    ))
                    .solution("Declare task '" + producer + "' as an input of '" + consumer + "'")
                    .solution("Declare an explicit dependency on '" + producer + "' from '" + consumer + "' using Task#dependsOn")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/inline/inlheur/function_properties.go

    // guide inlining heuristics; these properties may apply to the
    // function as a whole, or to one or more function return values or
    // parameters.
    //
    // IMPORTANT: function properties are produced on a "best effort"
    // basis, meaning that the code that computes them doesn't verify that
    // the properties are guaranteed to be true in 100% of cases. For this
    // reason, properties should only be used to drive always-safe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 18:52:53 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/internal/ScalaCompileOptionsConfigurer.java

                .anyMatch(s -> TARGET_DEFINING_PARAMETERS.stream().anyMatch(param -> param.equals(s) || s.startsWith(param + ":")));
        }
    
        /**
         * Computes parameter to specify how Scala should handle Java APIs and produced bytecode version.
         * <p>
         * The exact result depends on the Scala version in use and if the toolchain is user specified or not.
         *
         * @param scalaVersion The detected scala version
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache-example-client/src/main/java/org/gradle/caching/example/ExampleBuildCacheClient.java

                });
    
            // Produce some example output (simulate executing cacheable work in a temporary sandbox)
            Path sandboxOutputDirectory = Files.createTempDirectory("sandbox-output");
            Path sandboxOutputTxt = sandboxOutputDirectory.resolve("output.txt");
            Files.write(sandboxOutputTxt, Collections.singleton("contents"));
    
            // Capture the snapshot of the produced output
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 19:35:22 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/testdata/hist.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This is the input program for an end-to-end test of the DWARF produced
    // by the compiler. It is compiled with various flags, then the resulting
    // binary is "debugged" under the control of a harness.  Because the compile+debug
    // step is time-consuming, the tests for different bugs are all accumulated here
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 18:05:07 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/g3doc/tf_dialects.md

    non-control) are dead as well. For `tf_executor.Merge`, the output is dead only
    when either an input control token is dead or all of the regular inputs are
    dead. For `tf_executor.ControlTrigger`, a live control output is always produced
    even when some control inputs are dead.
    
    ### `tf_executor.graph` Operation
    
    The `tf_executor.graph` operation contains a region with a single block that
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 16K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_executor_ops.td

        by a `tf_executor.yield` operation. The operands of the terminator
        correspond to the result values of the `tf_executor.island` operation. An
        extra result of type `!tf_executor.control` is always produced by every
        `tf_executor.island`.
        Within an island, execution semantics follow standard sequential behavior as
        expected by TF2 and by compiler analyses and transformations, and values
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 22K bytes
    - Viewed (0)
Back to top