Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 98 for continued (0.16 sec)

  1. src/runtime/proc.go

    		// allow goroutines to continue execution.
    		//
    		// fatalpanic will tracebackothers to trace all goroutines. It
    		// is unsafe to trace a running goroutine, so tracebackothers
    		// will skip running goroutines. That is OK and expected, we
    		// expect users of dontfreezetheworld to use core files anyway.
    		//
    		// However, allowing the scheduler to continue running free
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. src/reflect/value.go

    			tv := t.Out(i)
    			if tv.Size() == 0 {
    				// For zero-sized return value, args+off may point to the next object.
    				// In this case, return the zero value instead.
    				ret[i] = Zero(toRType(tv))
    				continue
    			}
    			steps := abid.ret.stepsForValue(i)
    			if st := steps[0]; st.kind == abiStepStack {
    				// This value is on the stack. If part of a value is stack
    				// allocated, the entire value is according to the ABI. So
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/CallTest.kt

          MockResponse.Builder()
            .add100Continue()
            .build(),
        )
        val request =
          Request.Builder()
            .url(server.url("/"))
            .header("Expect", "100-continue")
            .post("abc".toRequestBody("text/plain".toMediaType()))
            .build()
        executeSynchronously(request)
          .assertCode(200)
          .assertSuccessful()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  4. cmd/metrics-v2.go

    	var metrics []MetricV2
    	for promMetric := range ch {
    		dtoMetric := &dto.Metric{}
    		err := promMetric.Write(dtoMetric)
    		if err != nil {
    			// Log error and continue to receive other metric
    			// values
    			bugLogIf(GlobalContext, err)
    			continue
    		}
    
    		h := dtoMetric.GetHistogram()
    		for _, b := range h.Bucket {
    			labels := make(map[string]string)
    			for _, lp := range dtoMetric.GetLabel() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_set_control_test.go

    	if err != nil {
    		return err
    	}
    	for _, claim := range claims {
    		claimPodName := getClaimPodName(set, claim)
    		if claimPodName == "" {
    			continue // Skip claims not related to a stateful set pod.
    		}
    		if _, found := currentPods[claimPodName]; found {
    			continue // Skip claims which still have a current pod.
    		}
    		for _, refs := range claim.GetOwnerReferences() {
    			if refs.Name == claimPodName {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

          DenseIntElementsAttr attr;
          if (!matchPattern(val, m_Constant(&attr))) continue;
          operand_ty = attr.getType();
        }
    
        if (operand_ty.getRank() != 1)
          return op.emitOpError()
                 << "requires begin, end and strides to be 1D tensors";
    
        int64_t length = operand_ty.getDimSize(0);
        if (length == -1) continue;
    
        if (expected_size == -1) {
          // This op uses 32-bit masks.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  7. cmd/object-handlers_test.go

    					continue
    				}
    			} else {
    				t.Errorf("Test %d: %s:  Expected the response status to be `%d`, but instead found `%d`", i, instanceType, testCase.expectedRespStatus, rec.Code)
    				continue
    			}
    		}
    		if rec.Code == http.StatusOK {
    			var cpObjResp CopyObjectResponse
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    		},
    	}
    
    	var successTestCount, failureTestCount int
    	for _, test := range tests {
    		t.Run(test.name, test.run)
    		if test.wantSkip || len(test.wantInitErr) > 0 || len(test.wantHealthErrPrefix) > 0 {
    			continue
    		}
    		// check metrics for success and failure
    		if test.wantErr == "" {
    			successTestCount++
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  9. pkg/controller/podautoscaler/horizontal_test.go

    	for _, s := range metricStatus {
    		if s.Type != autoscalingv2.ResourceMetricSourceType {
    			continue
    		}
    		if s.Resource == nil {
    			continue
    		}
    		if s.Resource.Name != v1.ResourceCPU {
    			continue
    		}
    		if s.Resource.Current.AverageUtilization == nil {
    			continue
    		}
    		return s.Resource.Current.AverageUtilization
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  10. pkg/printers/internalversion/printers.go

    			}
    		}
    		switch {
    		case container.State.Terminated != nil && container.State.Terminated.ExitCode == 0:
    			continue
    		case isRestartableInitContainer(initContainers[container.Name]) &&
    			container.Started != nil && *container.Started:
    			if container.Ready {
    				readyContainers++
    			}
    			continue
    		case container.State.Terminated != nil:
    			// initialization is failed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
Back to top