Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 391 for RES (0.03 sec)

  1. tests/integration/telemetry/tracing/otelcollector/testdata/otel-tracing-res-detectors.yaml

    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: otel-tracing
    spec:
      tracing:
      - providers:
        - name: test-otel-res-detectors
        randomSamplingPercentage: 100.0
        customTags:
          "provider":
            literal:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 09 09:24:25 UTC 2024
    - 289 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/time_budget_test.go

    		last:      fakeClock.Now(),
    	}
    	if res := budget.takeAvailable(); res != time.Duration(0) {
    		t.Errorf("Expected: %v, got: %v", time.Duration(0), res)
    	}
    
    	// wait for longer than the maxBudget
    	nextTime := time.Now().Add(10 * time.Second)
    	fakeClock.SetTime(nextTime)
    	if res := budget.takeAvailable(); res != budget.maxBudget {
    		t.Errorf("Expected: %v, got: %v", budget.maxBudget, res)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 15 09:52:18 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  3. maven-compat/src/test/java/org/apache/maven/repository/metadata/DefaultGraphConflictResolverTest.java

            MetadataGraph res;
    
            res = resolver.resolveConflicts(graph, ArtifactScopeEnum.compile);
    
            assertNotNull(res, "null graph after resolver");
            assertNotNull(res.getVertices(), "no vertices in the resulting graph after resolver");
    
            assertNotNull(res.getExcidentEdges(v1), "no edges in the resulting graph after resolver");
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_quantizable_spots_as_functions_drq.td

      [(IsNotInLiftedFunc $res), (IsConstTensor $b)], [], (addBenefit 1)>;
    
    def LiftGather : Pat<
      (TF_GatherV2Op:$res $params, $indices, $axis, $batch_dims),
      (LiftAsTFPartitionedCall<"composite_gather_fn">
        (ArgumentList $params, $indices, $axis),
        (ResultList $res),
        (NamedAttributeList
          (NamedAttr<"batch_dims"> $batch_dims))),
      [(IsNotInLiftedFunc $res), (IsConstTensor $params)], [], (addBenefit 1)>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. internal/grid/msg.go

    		res = append(res, fmt.Sprintf("Op: %v", m.Op))
    	}
    	res = append(res, fmt.Sprintf("Flags: %s", m.Flags.String()))
    	if len(m.Payload) != 0 {
    		res = append(res, fmt.Sprintf("Payload: %v", bytesOrLength(m.Payload)))
    	}
    	return "{" + strings.Join(res, ", ") + "}"
    }
    
    func (f Flags) String() string {
    	var res []string
    	if f&FlagCRCxxh3 != 0 {
    		res = append(res, "CRC")
    	}
    	if f&FlagEOF != 0 {
    		res = append(res, "EOF")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 28 19:22:29 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/runtime/runtime_fake_test.go

    	fake.removePodSandboxReturns = struct {
    		res error
    	}{res}
    }
    
    func (fake *fakeImpl) Status(context.Context, cri.RuntimeService, bool) (*v1.StatusResponse, error) {
    	fakeReturns := fake.statusReturns
    	return fakeReturns.res, fakeReturns.err
    }
    
    func (fake *fakeImpl) StatusReturns(res *v1.StatusResponse, err error) {
    	fake.statusReturns = struct {
    		res *v1.StatusResponse
    		err error
    	}{res, err}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/helpers_test.go

    	assert.Nil(t, res)
    
    	// case 3: error traversing obj
    	res, exists, err = NestedFieldNoCopy(obj, "a", "d", "foo")
    	assert.False(t, exists)
    	assert.Error(t, err)
    	assert.Nil(t, res)
    
    	// case 4: field does not exist
    	res, exists, err = NestedFieldNoCopy(obj, "a", "g")
    	assert.False(t, exists)
    	assert.NoError(t, err)
    	assert.Nil(t, res)
    
    	// case 5: intermediate field does not exist
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 24 07:53:28 UTC 2021
    - 5.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/zeroextension_test.go

    	arg1 uint64
    	arg2 uint64
    	res  uint64
    	name string
    }
    
    var extTests = [...]extTest{
    	{f: func(a, b uint64) uint64 { op1 := int32(a); op2 := int32(b); return uint64(uint32(op1 / op2)) }, arg1: 0x1, arg2: 0xfffffffeffffffff, res: 0xffffffff, name: "div"},
    	{f: func(a, b uint64) uint64 { op1 := int32(a); op2 := int32(b); return uint64(uint32(op1 * op2)) }, arg1: 0x1, arg2: 0x100000001, res: 0x1, name: "mul"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 20:38:32 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  9. samples/bookinfo/src/ratings/ratings.js

          else {
            getLocalReviewsSuccessful(res, productId)
          }
      }
    })
    
    dispatcher.onGet('/health', function (req, res) {
        if (healthy) {
            res.writeHead(200, {'Content-type': 'application/json'})
            res.end(JSON.stringify({status: 'Ratings is healthy'}))
        } else {
            res.writeHead(500, {'Content-type': 'application/json'})
            res.end(JSON.stringify({status: 'Ratings is not healthy'}))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 02 00:29:57 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/web/http.go

    		fmt.Fprintf(os.Stderr, "# get %s: %v (%.3fs)\n", fetched.Redacted(), res.Status, time.Since(start).Seconds())
    	}
    
    	r := &Response{
    		URL:        fetched.Redacted(),
    		Status:     res.Status,
    		StatusCode: res.StatusCode,
    		Header:     map[string][]string(res.Header),
    		Body:       res.Body,
    	}
    
    	if res.StatusCode != http.StatusOK {
    		contentType := res.Header.Get("Content-Type")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 17:34:27 UTC 2023
    - 9.7K bytes
    - Viewed (0)
Back to top