Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,339 for Tresults (0.57 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/integrator_test.go

    	igr.Add(3)
    	clk.Step(time.Second)
    	results := igr.GetResults()
    	rToo := igr.Reset()
    	if e := (IntegratorResults{Duration: time.Second.Seconds(), Average: 3, Deviation: 0, Min: 0, Max: 3}); !e.Equal(&results) {
    		t.Errorf("expected %#+v, got %#+v", e, results)
    	}
    	if !results.Equal(&rToo) {
    		t.Errorf("expected %#+v, got %#+v", results, rToo)
    	}
    	igr.Set(2)
    	results = igr.GetResults()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 27 21:11:44 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossBuildPerformanceTestHistory.java

        private class KnownBuildSpecificationsPerformanceTestExecution implements PerformanceTestExecution {
            private final CrossBuildPerformanceResults results;
    
            public KnownBuildSpecificationsPerformanceTestExecution(CrossBuildPerformanceResults results) {
                this.results = results;
            }
    
            @Override
            public String getExecutionId() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestPageGenerator.java

                    textCell(results.getVersionUnderTest());
                    textCell(results.getOperatingSystem());
                    textCell(results.getHost());
                    textCell(results.getJvm());
                    textCell(results.getTestProject());
                    textCell(results.getTasks());
                    textCell(results.getCleanTasks());
                    textCell(results.getArgs());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.td

          input fallback tensors.
    
        results: the converted corert tensorhandles.
      }];
    
      let arguments = (ins
        Variadic<TFTensorType>:$args,
        StrAttr:$device
      );
    
      let results = (outs
        Variadic<CoreRT_TensorHandleType>:$results
      );
    
      let assemblyFormat = "operands attr-dict `:` `(` type($args) `)` `->` `(` type($results) `)`";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ShortCircuitEmptyConfigurationResolverSpec.groovy

            given:
            resolveContext.hasDependencies() >> false
    
            when:
            def results = dependencyResolver.resolveGraph(resolveContext)
    
            then:
            results.visitedGraph.resolutionResult.rootSource.get().dependencies.empty
    
            def visitedArtifacts = results.visitedArtifacts
            def artifactSet = visitedArtifacts.select(Mock(ArtifactSelectionSpec))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_sync.td

        results: the tensor values for the corresponding indices.
      }];
    
      let arguments = (ins
        I64ArrayAttr:$indices
      );
    
      let results = (outs
        Variadic<TensorType>:$results
      );
    
      let assemblyFormat = "attr-dict `:` type($results)";
    }
    
    def CreateOp: FallbackSync_Op<"createop", []> {
      let summary = "The Fallback CreateOp";
    
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 07 21:12:01 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/AbstractPerformanceTest.groovy

    import org.gradle.performance.fixture.PerformanceTestDirectoryProvider
    import org.gradle.performance.results.DataReporter
    import org.gradle.performance.results.DefaultOutputDirSelector
    import org.gradle.performance.results.GradleProfilerReporter
    import org.gradle.performance.results.OutputDirSelector
    import org.gradle.performance.results.PerformanceTestResult
    import org.gradle.profiler.flamegraph.DifferentialStacksGenerator
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. test/fixedbugs/issue17640.go

    package main
    
    import "fmt"
    
    var results string
    
    type TwoInts struct {
    	x, y int
    }
    
    func f(x int) int { results = results + fmt.Sprintf("_%d", x); return x }
    
    func main() {
    	_ = [19]int{1: f(1), 0: f(0), 2: f(2), 6, 7}
    	_ = [2]int{1: f(4), 0: f(3)}
    	_ = TwoInts{y: f(6), x: f(5)}
    	_ = map[int]int{f(f(9) + 1): f(8), 0: f(7), f(22): -1}
    	if results != "_1_0_2_4_3_6_5_9_10_8_7_22" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 29 01:16:25 UTC 2016
    - 612 bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/BasicParsingTest.kt

                        )
                        rhs = BooleanLiteral [indexes: 45..50, line/column: 5/5..5/10, file: test] (false)
                    )""".trimIndent()
            results.assert(expected)
        }
    
        @Test
        fun `parses imports`() {
            val results = parse(
                """
                import a.b.c
                import a.b.MyData
                import MyOtherData
                """.trimIndent()
            )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.td

        $futures: A list of !mlrt.future. The underlying value must be tensorflow tensors.
    
        $results: A list of tensorflow tensors.
      }];
    
      let arguments = (ins
        Variadic<MlrtFutureType>:$futures
      );
    
      let results = (outs
        Variadic<TFTensorType>:$results
      );
    
      let assemblyFormat = "$futures attr-dict `:` type($results)";
    }
    
    def PromiseOp: TensorflowMlrt_Op<"promise", []> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top