Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 88 for continueCh (0.69 sec)

  1. src/cmd/compile/internal/ssa/rewriteLOONG64.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 != OpLOONG64MOVVconst {
    				continue
    			}
    			t := v_1.Type
    			c := auxIntToInt64(v_1.AuxInt)
    			if !(is32Bit(c) && !t.IsPtr()) {
    				continue
    			}
    			v.reset(OpLOONG64ADDVconst)
    			v.AuxInt = int64ToAuxInt(c)
    			v.AddArg(x)
    			return true
    		}
    		break
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      for (const auto& arg_attr : dict_attrs) {
        if (!arg_attr) continue;
    
        auto attrs = arg_attr.getValue();
        for (const auto attr : attrs) {
          if (attr.getName() == attr_name) {
            auto array_attr =
                mlir::dyn_cast_or_null<mlir::ArrayAttr>(attr.getValue());
            if (!array_attr || array_attr.empty()) continue;
            auto string_attr =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  3. tensorflow/c/c_api.cc

        const Tensor& src = outputs[i];
        if (!src.IsInitialized() || src.NumElements() == 0) {
          c_outputs[i] =
              EmptyTensor(static_cast<TF_DataType>(src.dtype()), src.shape());
          continue;
        }
        c_outputs[i] = TF_TensorFromTensor(src, &status->status);
        if (!status->status.ok()) return;
      }
    }
    
    extern "C" {
    
    void TF_Run(TF_DeprecatedSession* s, const TF_Buffer* run_options,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top