Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 155 for Tresults (0.14 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInputArtifactIntegrationTest.groovy

            result.assertTasksNotSkipped(":b:producer", ":a:resolve")
            transformed("b-blue")
            outputContains("result = [b-blue.green, c-dir.green]")
    
            when:
            withBuildCache().succeeds(":a:resolve")
    
            then: // have already seen these artifacts before
            result.assertTasksNotSkipped(":b:producer", ":a:resolve")
            transformed()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 27 19:15:32 UTC 2023
    - 51.9K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    			parallelism := parallelize.DefaultParallelism
    			if tt.disableParallelism {
    				// We need disableParallelism because of the non-deterministic nature
    				// of the results of tests that set custom minCandidateNodesPercentage
    				// or minCandidateNodesAbsolute. This is only done in a handful of tests.
    				parallelism = 1
    			}
    
    			logger, ctx := ktesting.NewTestContext(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

                    ${fooAndBarJars()}
                }
            """
    
            when:
            run ':a:checkDebug'
    
            then:
            result.assertTasksExecuted(':b:fooJar', ':a:checkDebug')
    
            when:
            run ':a:checkRelease'
    
            then:
            result.assertTasksExecuted(':b:barJar', ':a:checkRelease')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/SetsTest.java

        }
        return zeroToTwentyNine;
      }
    
      private static <E> Set<Set<E>> toHashSets(Set<Set<E>> powerSet) {
        Set<Set<E>> result = newHashSet();
        for (Set<E> subset : powerSet) {
          result.add(new HashSet<E>(subset));
        }
        return result;
      }
    
      private static Object objectWithHashCode(final int hashCode) {
        return new Object() {
          @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  5. src/cmd/cgo/gcc.go

    		if name.FuncType.Result != nil {
    			rtype := p.rewriteUnsafe(name.FuncType.Result.Go)
    			if rtype != name.FuncType.Result.Go {
    				needsUnsafe = true
    			}
    			sb.WriteString(gofmt(rtype))
    			result = true
    		}
    
    		// Add the second result type, if any.
    		if twoResults {
    			if name.FuncType.Result == nil {
    				// An explicit void result looks odd but it
    				// seems to be how cgo has worked historically.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  6. pilot/pkg/model/virtualservice_test.go

    		})
    	}
    
    	t.Run("test merge order", func(t *testing.T) {
    		root := rootVs.DeepCopy()
    		delegate := delegateVs.DeepCopy()
    		normal := independentVs.DeepCopy()
    
    		// make sorting results predictable.
    		t0 := time.Now()
    		root.CreationTimestamp = t0.Add(1)
    		delegate.CreationTimestamp = t0.Add(2)
    		normal.CreationTimestamp = t0.Add(3)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  7. cluster/gce/windows/k8s-node-setup.psm1

      # interface is added, and it seems to subsume the routes of the "Ethernet"
      # interface (trying to add routes on the Ethernet interface at this point just
      # results in "New-NetRoute : Element not found" errors). I don't know what's
      # up with that, but since it's hard to know what's the right thing to do here
      # we just try to add the route on all of the network adapters.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  8. src/testing/testing.go

    //	            templ.Execute(&buf, "World")
    //	        }
    //	    })
    //	}
    //
    // A detailed specification of the benchmark results format is given
    // in https://golang.org/design/14313-benchmark-format.
    //
    // There are standard tools for working with benchmark results at
    // https://golang.org/x/perf/cmd.
    // In particular, https://golang.org/x/perf/cmd/benchstat performs
    // statistically robust A/B comparisons.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tensor_array_ops_decomposition.mlir

      // expected-error @+1 {{found unexpected type 'tensor<!tf_type.resource>' of result #1, resource type results are expected to have been canonicalized away for region based control flow ops}}
      %if_op:2 = "tf.IfRegion"(%arg0) ({
          %idx = "tf.Const"() {value = dense<3> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 49K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    			if err := decoder.Decode(parsed); err != nil {
    				if errors.Is(err, io.EOF) {
    					break
    				}
    				return err
    			}
    
    			result = append(result, parsed)
    		}
    
    		return nil
    	})
    	if err != nil {
    		panic(err)
    	}
    	return result
    }
    
    func BenchmarkRatcheting(b *testing.B) {
    	// Walk directory with CRDs, for each file parse YAML with multiple CRDs in it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
Back to top