Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 193 for BREAK (0.05 sec)

  1. src/cmd/go/internal/modload/load.go

    			// We've loaded as much as we can without resolving missing imports.
    			break
    		}
    
    		modAddedBy, err := ld.resolveMissingImports(ctx)
    		if err != nil {
    			ld.error(err)
    			break
    		}
    		if len(modAddedBy) == 0 {
    			// The roots are stable, and we've resolved all of the missing packages
    			// that we can.
    			break
    		}
    
    		toAdd := make([]module.Version, 0, len(modAddedBy))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. src/runtime/map.go

    				if i == 0 {
    					if b == bOrig {
    						break // beginning of initial bucket, we're done.
    					}
    					// Find previous bucket, continue at its last entry.
    					c := b
    					for b = bOrig; b.overflow(t) != c; b = b.overflow(t) {
    					}
    					i = abi.MapBucketCount - 1
    				} else {
    					i--
    				}
    				if b.tophash[i] != emptyOne {
    					break
    				}
    			}
    		notLast:
    			h.count--
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	var ret []AST
    	for {
    		if len(st.str) < 1 {
    			break
    		}
    		if st.str[0] == 'E' || st.str[0] == '.' {
    			break
    		}
    		if (st.str[0] == 'R' || st.str[0] == 'O') && len(st.str) > 1 && st.str[1] == 'E' {
    			// This is a function ref-qualifier.
    			break
    		}
    		if st.str[0] == 'Q' {
    			// This is a requires clause.
    			break
    		}
    		ptype := st.demangleType(false)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_container.go

    			if !types.IsRestartableInitContainer(container) {
    				break
    			}
    
    			if types.IsRestartableInitContainer(container) {
    				if container.StartupProbe != nil {
    					startup, found := m.startupManager.Get(status.ID)
    					if !found {
    						// If the startup probe has not been run, wait for it.
    						break
    					}
    					if startup != proberesults.Success {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  5. src/runtime/mgcscavenge.go

    		// memory to scavenge, or exhausts the heap. If we haven't found enough
    		// to scavenge, then the heap must be exhausted.
    		if r < scavengeQuantum {
    			break
    		}
    		// When using fake time just do one loop.
    		if faketime != 0 {
    			break
    		}
    	}
    	if released > 0 && released < physPageSize {
    		// If this happens, it means that we may have attempted to release part
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. src/go/types/expr.go

    		// left in the untyped map, they will be processed
    		// at the end of the type check.
    		if old.val != nil {
    			break
    		}
    		check.updateExprType0(x, x.X, typ, final)
    
    	case *ast.BinaryExpr:
    		if old.val != nil {
    			break // see comment for unary expressions
    		}
    		if isComparison(x.Op) {
    			// The result type is independent of operand types
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/queue/scheduling_queue.go

    		rawPodInfo := p.podBackoffQ.Peek()
    		if rawPodInfo == nil {
    			break
    		}
    		pInfo := rawPodInfo.(*framework.QueuedPodInfo)
    		pod := pInfo.Pod
    		if p.isPodBackingoff(pInfo) {
    			break
    		}
    		_, err := p.podBackoffQ.Pop()
    		if err != nil {
    			logger.Error(err, "Unable to pop pod from backoff queue despite backoff completion", "pod", klog.KObj(pod))
    			break
    		}
    		if added, _ := p.addToActiveQ(logger, pInfo); added {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/css/manual.css

    	outline: none;
    }
    
    .docs-navigation a:hover {
    	color: #35c1e4;
    	text-decoration: none;
    }
    
    .docs-navigation a code {
    	color: var(--text-color);
    	overflow-wrap: break-word;
    	padding: 0;
    	word-break: break-all;
    }
    
    .docs-navigation a.active {
    	color: #06A0CE;
    	outline: 0;
    	border: none;
    	-moz-outline-style: none;
    }
    
    .docs-navigation a.active:hover {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  9. cmd/xl-storage-format-v2.go

    			if fi.Parts[i].ETag != "" {
    				ventry.ObjectV2.PartETags = make([]string, len(fi.Parts))
    				break
    			}
    		}
    		for i := range fi.Parts {
    			// Only add indices if any.
    			if len(fi.Parts[i].Index) > 0 {
    				ventry.ObjectV2.PartIndices = make([][]byte, len(fi.Parts))
    				break
    			}
    		}
    		for i := range fi.Erasure.Distribution {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/route/route.go

    					// As an optimization, we can just stop sending any more routes here.
    					if IsCatchAllRoute(r) {
    						catchall = true
    						break
    					}
    				}
    			}
    		}
    		if catchall {
    			break
    		}
    	}
    
    	if len(out) == 0 {
    		return nil, fmt.Errorf("no routes matched")
    	}
    	return out, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
Back to top