Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 786 for produced (0.34 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformExecutionResult.java

    /**
     * The result of running a single transform action on a single input artifact.
     *
     * The result of running a transform is a list of outputs.
     * There are two kinds of outputs for a transform:
     * - Produced outputs in the workspace. Those are relative paths depending on the workspace root, independent of the input artifact.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:31 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/MissingTaskDependenciesIntegrationTest.groovy

            """
    
            when:
            run(":producer", ":consumer")
            then:
            executed(":producer", ":consumer")
    
            when:
            run(":consumer", ":producer")
            then:
            executed(":producer", ":consumer")
    
            where:
            disabledTask << ["consumer", "producer"]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 08:14:44 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. samples/guide/src/main/java/okhttp3/recipes/kt/WiresharkExample.kt

              // Consuming ECDH ServerKeyExchange handshake message
              // Consuming ServerHelloDone handshake message
              // Produced ECDHE ClientKeyExchange handshake message
              // Produced client Finished handshake message
              // Consuming server Finished handshake message
              // Produced ClientHello handshake message
              //
              // Raw write
              // Raw read
              // Plaintext before ENCRYPTION
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. src/math/cmplx/cmath_test.go

    			continue
    		}
    		// Asin(Conj(z))  == Asin(Sinh(z))
    		if f := Asin(Conj(v.in)); !cAlike(Conj(v.want), f) && !cAlike(v.in, Conj(v.in)) {
    			t.Errorf("Asin(%g) = %g, want %g", Conj(v.in), f, Conj(v.want))
    		}
    		if math.IsNaN(real(v.in)) || math.IsNaN(real(v.want)) {
    			// Negating NaN is undefined with regard to the sign bit produced.
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 48.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/dwarfgen/dwinl.go

    	// is part of the top-level function (ii == 0) or if it was
    	// produced as a result of an inline (ii != 0).
    	//
    	// If a variable was not produced by an inline and its containing
    	// function was not inlined, then we just assign an ordering of
    	// based on variable name.
    	//
    	// If a variable was not produced by an inline and its containing
    	// function was inlined, then we need to assign a child index
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. src/internal/coverage/decodecounter/decodecounterfile.go

    // from a merge in which more than one GOOS value was present.
    func (cdr *CounterDataReader) Goos() string {
    	return cdr.goos
    }
    
    // Goarch returns the GOARCH setting in effect for the "-cover" binary
    // that produced this counter data file. The GOARCH value may be
    // empty in the case where the counter data file was produced
    // from a merge in which more than one GOARCH value was present.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 27 15:29:54 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/UntrackedTaskIntegrationTest.groovy

            buildFile("""
                tasks.register("producer", Producer) {
                    outputDir = project.layout.buildDirectory.dir("root")
                }
            """)
    
            when:
            executer.withStackTraceChecksDisabled()
            runAndFail "producer"
            then:
            executedAndNotSkipped(":producer")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 23 08:05:53 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_concepts.adoc

    Or maybe you include the commit hash directly in `version.properties` or a jar manifest attribute.
    Either way, the outputs produced by any tasks depending on such data will only be re-usable by builds running against the exact same commit.
    
    Another common, but less obvious source of unstable inputs is when a task consumes the output of another task which produces non-repeatable results, such as the example before of a code generator that embeds timestamps in its output.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  9. src/cmd/covdata/tool_test.go

    	if len(lines) != 0 {
    		t.Errorf("merge run produced %d lines of unexpected output", len(lines))
    		dumplines(lines)
    	}
    
    	// Dump the files in the merged output dir and examine the result.
    	// We expect to see only the functions in package "dep".
    	dargs := []string{"-i=" + outdir}
    	lines = runToolOp(t, s, "debugdump", dargs)
    	if len(lines) == 0 {
    		t.Fatalf("dump run produced no output")
    	}
    	want := map[string]int{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_patterns.td

    //    rem 0.0 sn sn1    -  $1
    //   / |      |  |    / |
    // $0 $1     $1 rem  $0 rem
    // Note that named operators like 'sn' and 'sn1' are different values produced by
    // the same function in this case the sign function. Named values like 'div'
    // refer to the same value produced by the same function, in this case division.
    // Mathematical symbols do not indicate a re-use of the value.
    def : Pat<(MHLO_RoundOp
                (MHLO_SelectOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 03 08:58:22 UTC 2024
    - 34K bytes
    - Viewed (0)
Back to top