Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,304 for NResults (0.12 sec)

  1. 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)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/IndexPageGenerator.java

     */
    
    package org.gradle.performance.results.report;
    
    import org.gradle.performance.results.PerformanceExperiment;
    import org.gradle.performance.results.PerformanceFlakinessDataProvider;
    import org.gradle.performance.results.PerformanceReportScenario;
    import org.gradle.performance.results.PerformanceTestExecutionResult;
    import org.gradle.performance.results.ResultsStore;
    import org.gradle.performance.results.ResultsStoreHelper;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/AbstractCrossBuildPerformanceTestRunner.groovy

    import org.gradle.internal.time.Clock
    import org.gradle.internal.time.Time
    import org.gradle.performance.results.CrossBuildPerformanceResults
    import org.gradle.performance.results.DataReporter
    import org.gradle.performance.results.ResultsStoreHelper
    import org.gradle.profiler.BuildMutator
    import org.gradle.profiler.InvocationSettings
    import org.junit.Assume
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/TestResultSerializerTest.groovy

            def results = [class1, class2]
    
            when:
            def read = serialize(results)
    
            then:
            read.size() == 2
            def readClass1 = read[0]
            readClass1.className == 'Class1'
            readClass1.startTime == 1234
            readClass1.results.size() == 2
    
            def readMethod1 = readClass1.results[0]
            readMethod1.name == 'method1'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/selectors/SelectorStateResolver.java

            }
    
            results.replaceExistingResolutionsWithBetterResult(result, selector.isFromLock());
            results.register(selector, result);
        }
    
        /**
         * Collect the result of the 'prefer' constraint of the selector, if present and not failing.
         * These results are integrated with the 'require' results in the second phase.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 14:22:29 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  6. cmd/speedtest.go

    				enableMultipart: opts.enableMultipart,
    				creds:           opts.creds,
    			}
    
    			results := globalNotificationSys.SpeedTest(ctx, sopts)
    			sort.Slice(results, func(i, j int) bool {
    				return results[i].Endpoint < results[j].Endpoint
    			})
    
    			totalPut := uint64(0)
    			totalGet := uint64(0)
    			for _, result := range results {
    				totalPut += result.Uploads
    				totalGet += result.Downloads
    			}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 09:45:10 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. .github/workflows/scorecards-analysis.yml

            uses: ossf/scorecard-action@15c10fcf1cf912bd22260bfec67569a359ab87da # v2.1.1
            with:
              results_file: results.sarif
              results_format: sarif
              # Publish the results to enable scorecard badges. For more details, see
              # https://github.com/ossf/scorecard-action#publishing-results.
              # For private repositories, `publish_results` will automatically be set to `false`,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 21 23:56:23 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaselineVersion.groovy

        final String version
        final MeasuredOperationList results = new MeasuredOperationList()
    
        BaselineVersion(String version) {
            this.version = version
            results.name = "Gradle $version"
        }
    
        String getSpeedStatsAgainst(String displayName, MeasuredOperationList current) {
            def sb = new StringBuilder()
            def thisVersionMean = results.totalTime.median
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. pkg/kubelet/reason_cache_test.go

    	}
    	results[0].Fail(kubecontainer.ErrRunContainer, "message_1")
    	results[2].Fail(kubecontainer.ErrKillContainer, "message_3")
    	syncResult.AddSyncResult(results...)
    	uid := types.UID("pod_1")
    
    	reasonCache := NewReasonCache()
    	reasonCache.Update(uid, syncResult)
    	assertReasonInfo(t, reasonCache, uid, results[0], true)
    	assertReasonInfo(t, reasonCache, uid, results[1], false)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 03:33:06 UTC 2017
    - 2.4K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/FlakinessDetectionPerformanceExecutionDataProvider.java

     * limitations under the License.
     */
    
    package org.gradle.performance.results.report;
    
    import com.google.common.collect.ImmutableList;
    import org.gradle.performance.results.CrossBuildPerformanceTestHistory;
    import org.gradle.performance.results.PerformanceReportScenario;
    import org.gradle.performance.results.PerformanceTestExecutionResult;
    import org.gradle.performance.results.PerformanceTestExecution;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top