Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 106 for continued (0.26 sec)

  1. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			x := v_0
    			if v_1.Op != OpMIPS64MOVVconst {
    				continue
    			}
    			t := v_1.Type
    			c := auxIntToInt64(v_1.AuxInt)
    			if !(is32Bit(c) && !t.IsPtr()) {
    				continue
    			}
    			v.reset(OpMIPS64ADDVconst)
    			v.AuxInt = int64ToAuxInt(c)
    			v.AddArg(x)
    			return true
    		}
    		break
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
  2. pkg/api/pod/util_test.go

    			for _, newPodInfo := range podInfo {
    				oldPodHasProcMount, oldPod := oldPodInfo.hasProcMount, oldPodInfo.pod()
    				newPodHasProcMount, newPod := newPodInfo.hasProcMount, newPodInfo.pod()
    				if newPod == nil {
    					continue
    				}
    
    				t.Run(fmt.Sprintf("feature enabled=%v, old pod %v, new pod %v", enabled, oldPodInfo.description, newPodInfo.description), func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. pkg/volume/util/operationexecutor/operation_generator.go

    			continue
    		}
    		volumePlugin, err :=
    			og.volumePluginMgr.FindPluginBySpec(volumeAttached.VolumeSpec)
    		if err != nil || volumePlugin == nil {
    			klog.Errorf(volumeAttached.GenerateErrorDetailed("VolumesAreAttached.FindPluginBySpec failed", err).Error())
    			continue
    		}
    		volumeSpecList, pluginExists := volumesPerPlugin[volumePlugin.GetPluginName()]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top