Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 196 for continueCh (0.23 sec)

  1. src/runtime/mgcmark.go

    			// defensively, too.
    			state.putPtr(val, true)
    			continue
    		}
    
    		// Check if val points to a heap span.
    		span := spanOfHeap(val)
    		if span == nil {
    			continue
    		}
    
    		// Check if val points to an allocated object.
    		idx := span.objIndex(val)
    		if span.isFree(idx) {
    			continue
    		}
    
    		// val points to an allocated object. Mark it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. src/testing/testing.go

    	for more := true; more; prevFrame = frame {
    		frame, more = frames.Next()
    		if frame.Function == "runtime.gopanic" {
    			continue
    		}
    		if frame.Function == c.cleanupName {
    			frames = runtime.CallersFrames(c.cleanupPc)
    			continue
    		}
    		if firstFrame.PC == 0 {
    			firstFrame = frame
    		}
    		if frame.Function == c.runner {
    			// We've gone up all the way to the tRunner calling
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/load.go

    					stdErr.importerGoVersion = v.(string)
    				}
    			}
    			if ld.SilenceMissingStdImports {
    				continue
    			}
    		}
    		if ld.SilencePackageErrors {
    			continue
    		}
    		if ld.SilenceNoGoErrors && errors.Is(pkg.err, imports.ErrNoGo) {
    			continue
    		}
    
    		ld.error(fmt.Errorf("%s: %w", pkg.stackText(), pkg.err))
    	}
    
    	ld.checkMultiplePaths()
    	return ld
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. src/cmd/internal/testdir/testdir_test.go

    		errFile, rest, ok := strings.Cut(errStr, ":")
    		if !ok || errFile != file {
    			continue
    		}
    		lineStr, msg, ok := strings.Cut(rest, ":")
    		if !ok {
    			continue
    		}
    		line, err := strconv.Atoi(lineStr)
    		line--
    		if err != nil || line < 0 || line >= len(lines) {
    			continue
    		}
    		msg = strings.Replace(msg, file, base, -1) // normalize file mentions in error itself
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  5. src/net/dnsclient_unix_test.go

    		if err != nil {
    			t.Error(err)
    			continue
    		}
    		if h.RCode != tt.rcode {
    			t.Errorf("got %v from %v; want %v", h.RCode, tt.server, tt.rcode)
    			continue
    		}
    		a, err := p.AllAnswers()
    		if err != nil {
    			t.Errorf("unexpected error %v getting all answers from %v", err, tt.server)
    			continue
    		}
    		if len(a) != 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    		if shouldErrorOnClusterScopedRequests {
    			continue
    		} else if p.GetAPIVersion() != policy.Spec.ParamKind.APIVersion || p.GetKind() != policy.Spec.ParamKind.Kind {
    			continue
    		} else if len(paramRef.Name) > 0 && p.GetName() != paramRef.Name {
    			continue
    		} else if len(paramRef.Namespace) > 0 && p.GetNamespace() != paramRef.Namespace {
    			continue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        for (int pred : cycles_graph_.Predecessors(current_rpo_node)) {
          if (!best_pred_for_node.contains(pred)) {
            continue;
          }
    
          // Ignore the from->to edge since we're trying to find an alternate path.
          if (current_rpo_node == to && pred == from) {
            continue;
          }
    
          some_pred = pred;
          if (GetClusterForCyclesGraphNode(pred) == nullptr) {
            preferred_pred = pred;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  8. src/math/big/int_test.go

    		if !ok {
    			t.Errorf("SetString(%s, 0) failed", s)
    			continue
    		}
    
    		want, err := strconv.ParseInt(s, 0, 64)
    		if err != nil {
    			if err.(*strconv.NumError).Err == strconv.ErrRange {
    				if x.IsInt64() {
    					t.Errorf("IsInt64(%s) succeeded unexpectedly", s)
    				}
    			} else {
    				t.Errorf("ParseInt(%s) failed", s)
    			}
    			continue
    		}
    
    		if !x.IsInt64() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  9. pkg/controller/daemon/daemon_controller.go

    			// store by the kubelet or the Pod GC. The DS controller doesn't have
    			// anything else to do with it.
    			continue
    		}
    		nodeName, err := util.GetTargetNodeName(pod)
    		if err != nil {
    			logger.V(4).Info("Failed to get target node name of Pod in DaemonSet",
    				"pod", klog.KObj(pod), "daemonset", klog.KObj(ds))
    			continue
    		}
    
    		nodeToDaemonPods[nodeName] = append(nodeToDaemonPods[nodeName], pod)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener.go

    		res := sets.NewWithLength[string](len(cidrs))
    		for _, s := range cidrs {
    			prefix, err := util.AddrStrToPrefix(s)
    			if err != nil {
    				continue
    			}
    			if prefix.Addr().String() == constants.UnspecifiedIP {
    				continue
    			}
    
    			if s == "*" {
    				continue
    			}
    			res.Insert(prefix.Masked().String())
    		}
    		return res
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top