Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 230 for Importer (0.18 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.cc

                    .getValue()));
          }
    
          TF_RETURN_IF_ERROR(exporter.AddInstructionNode(&inner_op));
        } else {
          TF_RETURN_IF_ERROR(exporter.AddInstructionNode(&inst));
        }
      }
      // Adds edges between the argument, operation and return nodes.
      for (Operation& inst : graph_op.GetBody()) {
        TF_RETURN_IF_ERROR(exporter.AddEdge(&inst));
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

                    .getValue()));
          }
    
          TF_RETURN_IF_ERROR(exporter.AddInstructionNode(&inner_op));
        } else {
          TF_RETURN_IF_ERROR(exporter.AddInstructionNode(&inst));
        }
      }
      // Adds edges between the argument, operation and return nodes.
      for (Operation& inst : graph_op.GetBody()) {
        TF_RETURN_IF_ERROR(exporter.AddEdge(&inst));
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/internal/buildevents/BuildExceptionReporterTest.groovy

        }
    
        def doesNothingWhenBuildIsSuccessful() {
            expect:
            reporter.buildFinished(result(null))
            output.value == ''
        }
    
        def reportsBuildFailure() {
            GradleException exception = new GradleException(MESSAGE);
    
            expect:
            reporter.buildFinished(result(exception))
            output.value == """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. src/cmd/gofmt/gofmt.go

    // A reporter reports output, warnings, and errors.
    type reporter struct {
    	prev  <-chan *reporterState
    	state *reporterState
    }
    
    // reporterState carries the state of a reporter instance.
    //
    // Only one reporter at a time may have access to a reporterState.
    type reporterState struct {
    	out, err io.Writer
    	exitCode int
    }
    
    // getState blocks until any prior reporters are finished with the reporter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/insight/DependencyInsightReporterSpec.groovy

        @Subject
        def reporter = new DependencyInsightReporter(versionSelectorScheme, versionComparator, versionParser)
    
        def "sorts dependencies"() {
            def dependencies = [dep("a", "x", "1.0", "2.0"), dep("a", "x", "1.5", "2.0"), dep("b", "a", "5.0"), dep("a", "z", "1.0"), dep("a", "x", "2.0")]
    
            when:
            def sorted = reporter.convertToRenderableItems(dependencies, false)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  6. manifests/addons/dashboards/istio-mesh-dashboard.json

            {
              "datasource": {
                "type": "prometheus",
                "uid": "${datasource}"
              },
              "expr": "sum(rate(istio_requests_total{reporter=\"source\", response_code!~\"5.*\"}[1m])) / sum(rate(istio_requests_total{reporter=\"source\"}[1m]))",
              "format": "time_series",
              "intervalFactor": 1,
              "refId": "A",
              "step": 4
            }
          ],
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 02:28:01 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  7. src/go/types/object.go

    	return &PkgName{object{nil, pos, pkg, name, Typ[Invalid], 0, black, nopos}, imported, false}
    }
    
    // Imported returns the package that was imported.
    // It is distinct from Pkg(), which is the package containing the import statement.
    func (obj *PkgName) Imported() *Package { return obj.imported }
    
    // A Const represents a declared constant.
    type Const struct {
    	object
    	val constant.Value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  8. tests/integration/telemetry/api/stats_test.go

    	sourceQuery.Metric = "istio_requests_total"
    	sourceQuery.Labels = clone(labels)
    	sourceQuery.Labels["reporter"] = "source"
    
    	destinationQuery.Metric = "istio_requests_total"
    	destinationQuery.Labels = clone(labels)
    	destinationQuery.Labels["reporter"] = "destination"
    
    	appQuery.Metric = "istio_echo_http_requests_total"
    	appQuery.Labels = map[string]string{"namespace": ns}
    
    	return
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/CrossVersionPerformanceTestRunner.groovy

        private BuildAction buildAction
    
        CrossVersionPerformanceTestRunner(BuildExperimentRunner experimentRunner, DataReporter<CrossVersionPerformanceResults> reporter, ReleasedVersionDistributions releases, IntegrationTestBuildContext buildContext) {
            this.reporter = reporter
            this.experimentRunner = experimentRunner
            this.releases = releases
            this.buildContext = buildContext
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/DefaultCommandLineActionFactory.java

            private final Action<ExecutionListener> action;
            private final Action<Throwable> reporter;
    
            WithLogging(ServiceRegistry loggingServices, List<String> args, LoggingConfiguration loggingConfiguration, Action<ExecutionListener> action, Action<Throwable> reporter) {
                this.loggingServices = loggingServices;
                this.args = args;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top