Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 155 for Tresults (0.15 sec)

  1. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

        }
    
        def "can not publish test results from java test suite"() {
            given:
            createBuildScripts("""
                ${mavenCentralRepository()}
    
                testing {
                    suites {
                        test {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  2. src/net/netip/netip_test.go

    			}
    
    			// Check that ParseAddr is a pure function.
    			got2, err := ParseAddr(test.in)
    			if err != nil {
    				t.Fatal(err)
    			}
    			if got != got2 {
    				t.Errorf("ParseAddr(%q) got 2 different results: %#v, %#v", test.in, got, got2)
    			}
    
    			// Check that ParseAddr(ip.String()) is the identity function.
    			s := got.String()
    			got3, err := ParseAddr(s)
    			if err != nil {
    				t.Fatal(err)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/prove.go

    	if v.isGenericIntConst() {
    		v, w = w, v
    		r = reverseBits[r]
    	}
    	if v != nil && w.isGenericIntConst() {
    		// Note: all the +1/-1 below could overflow/underflow. Either will
    		// still generate correct results, it will just lead to imprecision.
    		// In fact if there is overflow/underflow, the corresponding
    		// code is unreachable because the known range is outside the range
    		// of the value's type.
    		old, ok := ft.limits[v.ID]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "MULL", argLength: 2, reg: gp21, asm: "SMULL", commutative: true},                                      // arg0 * arg1, signed, 32-bit mult results in 64-bit
    		{name: "UMULL", argLength: 2, reg: gp21, asm: "UMULL", commutative: true},                                     // arg0 * arg1, unsigned, 32-bit mult results in 64-bit
    		{name: "DIV", argLength: 2, reg: gp21, asm: "SDIV"},                                                           // arg0 / arg1, signed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  5. src/runtime/mgcscavenge.go

    // procedure makes the assumption that the degree of fragmentation won't change
    // dramatically over the next GC cycle. Overestimating the amount of
    // fragmentation simply results in higher memory use, which will be accounted
    // for by the next pacing up date. Underestimating the fragmentation however
    // could lead to performance degradation. Handling this case is not within the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/debug.go

    // quality in this case).
    func encodeValue(ctxt *obj.Link, b, v ID) (uint64, bool) {
    	if ctxt.Arch.PtrSize == 8 {
    		result := uint64(b)<<32 | uint64(uint32(v))
    		//ctxt.Logf("b %#x (%d) v %#x (%d) -> %#x\n", b, b, v, v, result)
    		return result, true
    	}
    	if ctxt.Arch.PtrSize != 4 {
    		panic("unexpected pointer size")
    	}
    	if ID(int16(b)) != b || ID(int16(v)) != v {
    		return 0, false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/mark_for_compilation_pass.cc

          "XlaSplitND",
         }}};
      // clang-format on
      return result;
    }
    
    namespace testing {
    void ResetClusterSequenceNumber() {
      ClusterSequenceNumberGenerator::Global().Reset();
    }
    
    absl::flat_hash_set<string> GetKnownXLAAllowlistOp() {
      absl::flat_hash_set<string> result{
          "AdjustContrastv2",
          "AdjustHue",
          "AdjustSaturation",
          "Asinh",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  8. src/crypto/x509/x509.go

    	// Policies contains all policy identifiers included in the certificate.
    	// In Go 1.22, encoding/gob cannot handle and ignores this field.
    	Policies []OID
    }
    
    // ErrUnsupportedAlgorithm results from attempting to perform an operation that
    // involves algorithms that are not currently implemented.
    var ErrUnsupportedAlgorithm = errors.New("x509: cannot verify signature: algorithm unimplemented")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            configurationCache.assertStateLoaded()
            result.assertTaskOrder(":additionalFile", ":resolve")
            result.assertTaskOrder(":a:producer", ":resolve")
            result.assertTaskOrder(":b:producer", ":resolve")
            result.assertTaskSkipped(":additionalFile")
            result.assertTaskSkipped(":a:producer")
            result.assertTaskSkipped(":b:producer")
            outputContains("result = [a.thing, b.thing, a.out, b.out, lib1-6500.jar]")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/deadness_analysis_test.cc

      Output add =
          ops::Add(root.WithOpName("add"), sw.output_true, sw.output_false);
    
      std::unique_ptr<DeadnessAnalysis> result;
      TF_ASSERT_OK(AnalyzeDeadness(root.graph(), &result));
    
      TF_ASSERT_OK_AND_ASSIGN(
          bool has_inputs_with_mismatching_deadness,
          HasInputsWithMismatchingDeadness(*result, *add.node()));
      EXPECT_TRUE(has_inputs_with_mismatching_deadness);
    }
    
    TEST(DeadnessAnalysisTest, BasicNegative) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
Back to top