Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 197 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. pkg/kubelet/pod_workers_test.go

    		for uid, worker := range w.w.podSyncStatuses {
    			if _, ok := pausedWorkers[uid]; ok {
    				continue
    			}
    			if worker.working {
    				stillWorking = true
    				break
    			}
    		}
    		w.w.podLock.Unlock()
    
    		if !stillWorking {
    			break
    		}
    		time.Sleep(time.Millisecond)
    	}
    }
    
    func (w *timeIncrementingWorkers) tick() {
    	w.lock.Lock()
    	defer w.lock.Unlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                            }
                        }
                        break;
                    case DEP_ARTIFACT:
                    case ARTIFACT_INCLUDE:
                    case ARTIFACT_EXCLUDE:
                        addConfiguration(conf);
                        break;
                    default:
                        if (validate) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top