Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 267 for span1 (0.05 sec)

  1. pkg/test/framework/test.go

    	ctx *testContext
    	tc  context2.Context
    	ts  traceapi.Span
    }
    
    // NewTest returns a new test wrapper for running a single test.
    func NewTest(t *testing.T) Test {
    	rtMu.Lock()
    	defer rtMu.Unlock()
    
    	if rt == nil {
    		panic("call to scope without running the test framework")
    	}
    
    	ctx, span := tracing.Start(rt.suiteContext().traceContext, t.Name())
    
    	runner := &testImpl{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/HtmlTestExecutionResult.groovy

                extractTestCaseTo("tr > td.skipped:eq(0)", testsSkipped)
            }
    
            List<String> getFailureMessages(String testmethod) {
                html.select("div.test:has(a[name='$testmethod']) > span > pre").collect { it.text() }
            }
    
            TestClassExecutionResult assertTestsExecuted(String... testNames) {
                return assertTestsExecuted(testNames.collect { testCase(it) } as TestCase[])
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/text/transform/transform.go

    	// Reset resets the state and allows a Transformer to be reused.
    	Reset()
    }
    
    // SpanningTransformer extends the Transformer interface with a Span method
    // that determines how much of the input already conforms to the Transformer.
    type SpanningTransformer interface {
    	Transformer
    
    	// Span returns a position in src such that transforming src[:n] results in
    	// identical output src[:n] for these bytes. It does not necessarily return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 21 22:10:00 UTC 2020
    - 21.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tf_to_tfl_flatbuffer.cc

    absl::StatusOr<mlir::OwningOpRef<mlir::ModuleOp>> ImportSavedModel(
        const std::string& input_filename, const int saved_model_version,
        const std::unordered_set<std::string>& tags,
        absl::Span<const std::string> extra_tf_opdefs,
        absl::Span<std::string> exported_names, const GraphImportConfig& specs,
        bool enable_variable_lifting, mlir::MLIRContext* context,
        std::unique_ptr<SavedModelBundle>* saved_model_bundle) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/dispatcher.go

    	if err != nil {
    		return false, &webhookutil.ErrCallingWebhook{WebhookName: h.Name, Reason: fmt.Errorf("could not get REST client: %w", err), Status: apierrors.NewBadRequest("error getting REST client")}
    	}
    	ctx, span := tracing.Start(ctx, "Call mutating webhook",
    		attribute.String("configuration", configurationName),
    		attribute.String("webhook", h.Name),
    		attribute.Stringer("resource", attr.GetResource()),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  6. src/cmd/trace/goroutines.go

    		<td>
    			<div class="stacked-bar-graph">
    			{{$Goroutine := .}}
    			{{range $.NonOverlappingStats}}
    				{{$Time := index $Goroutine.NonOverlappingStats .}}
    				{{if $Time}}
    					<span {{barStyle . $Time $.MaxTotal}}>&nbsp;</span>
    				{{end}}
    			{{end}}
    			</div>
    		</td>
    		{{$Goroutine := .}}
    		{{range $.NonOverlappingStats}}
    			{{$Time := index $Goroutine.NonOverlappingStats .}}
    			<td> {{$Time.String}}</td>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/validating/dispatcher.go

    	if err != nil {
    		return &webhookutil.ErrCallingWebhook{WebhookName: h.Name, Reason: fmt.Errorf("could not get REST client: %w", err), Status: apierrors.NewBadRequest("error getting REST client")}
    	}
    	ctx, span := tracing.Start(ctx, "Call validating webhook",
    		attribute.String("configuration", invocation.Webhook.GetConfigurationName()),
    		attribute.String("webhook", h.Name),
    		attribute.Stringer("resource", attr.GetResource()),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 20:24:12 UTC 2023
    - 13K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/TreeRangeMapTest.java

              }
            } else {
              if (range2.isEmpty()) {
                expected = range1;
              } else {
                expected = range1.span(range2);
              }
            }
    
            try {
              assertEquals(expected, rangeMap.span());
              assertNotNull(expected);
            } catch (NoSuchElementException e) {
              assertNull(expected);
            }
          }
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 20:09:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/query.go

    // to provide an info.Origin that can allow the error to be cached.
    func Query(ctx context.Context, path, query, current string, allowed AllowedFunc) (*modfetch.RevInfo, error) {
    	ctx, span := trace.StartSpan(ctx, "modload.Query "+path)
    	defer span.Done()
    
    	return queryReuse(ctx, path, query, current, allowed, nil)
    }
    
    // queryReuse is like Query but also takes a map of module info that can be reused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/python/mlir.cc

      mlir::DialectRegistry registry;
      mlir::func::registerAllExtensions(registry);
      mlir::MLIRContext context(registry);
      auto module_or = ConvertSavedModelToMlir(
          &bundle, &context, absl::Span<std::string>(exported_names));
      if (!module_or.status().ok()) {
        tsl::Set_TF_Status_from_Status(status, module_or.status());
        return "// error";
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top