Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 193 for BREAK (0.1 sec)

  1. src/cmd/compile/internal/syntax/parser.go

    				// x is a comptype
    				complit_ok = true
    			}
    			if !complit_ok {
    				break loop
    			}
    			if t != x {
    				p.syntaxError("cannot parenthesize type in composite literal")
    				// already progressed, no need to advance
    			}
    			n := p.complitexpr()
    			n.Type = x
    			x = n
    
    		default:
    			break loop
    		}
    	}
    
    	return x
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/prove.go

    		ft.stack = ft.stack[:len(ft.stack)-1]
    		if old == checkpointFact {
    			break
    		}
    		if old.r == lt|eq|gt {
    			delete(ft.facts, old.p)
    		} else {
    			ft.facts[old.p] = old.r
    		}
    	}
    	for {
    		old := ft.limitStack[len(ft.limitStack)-1]
    		ft.limitStack = ft.limitStack[:len(ft.limitStack)-1]
    		if old.vid == 0 { // checkpointBound
    			break
    		}
    		if old.limit == noLimit {
    			delete(ft.limits, old.vid)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug.go

    				continue
    			}
    			otherSlot := blockLocs[other.ID].endState.Find(k)
    			if otherSlot == nil {
    				x = VarLoc{}
    				break
    			}
    			y := otherSlot.(*liveSlot).VarLoc
    			x = x.intersect(y)
    			if x.absent() {
    				x = VarLoc{}
    				break
    			}
    		}
    
    		// Delete if necessary, but not otherwise (in order to maximize sharing).
    		if x.absent() {
    			if !x0.absent() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/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)
    			break
    		}
    
    		// binary expression
    		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
    - 51.7K bytes
    - Viewed (0)
  5. src/runtime/mgcmark.go

    	// finalizers after root marking.
    	//
    	// We're going to scan the whole heap (that was available at the time the
    	// mark phase started, i.e. markArenas) for in-use spans which have specials.
    	//
    	// Break up the work into arenas, and further into chunks.
    	//
    	// Snapshot allArenas as markArenas. This snapshot is safe because allArenas
    	// is append-only.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

        @SuppressWarnings("unused")
        Class<?> ensureLoaded = LockSupport.class;
    
        // Log after all static init is finished; if an installed logger uses any Futures methods, it
        // shouldn't break in cases where reflection is missing/broken.
        if (thrownAtomicReferenceFieldUpdaterFailure != null) {
          log.get().log(Level.SEVERE, "UnsafeAtomicHelper is broken!", thrownUnsafeFailure);
          log.get()
              .log(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  7. guava/src/com/google/common/util/concurrent/AbstractFuture.java

        @SuppressWarnings("unused")
        Class<?> ensureLoaded = LockSupport.class;
    
        // Log after all static init is finished; if an installed logger uses any Futures methods, it
        // shouldn't break in cases where reflection is missing/broken.
        if (thrownAtomicReferenceFieldUpdaterFailure != null) {
          log.get().log(Level.SEVERE, "UnsafeAtomicHelper is broken!", thrownUnsafeFailure);
          log.get()
              .log(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  8. cmd/erasure-object.go

    	if err != nil {
    		return toObjectErr(err, bucket, object)
    	}
    
    	var healOnce sync.Once
    
    	for ; partIndex <= lastPartIndex; partIndex++ {
    		if length == totalBytesRead {
    			break
    		}
    
    		partNumber := fi.Parts[partIndex].Number
    
    		// Save the current part name and size.
    		partSize := fi.Parts[partIndex].Size
    
    		partLength := partSize - partOffset
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  9. 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)
  10. tensorflow/compiler/jit/deadness_analysis.cc

      absl::flat_hash_set<Predicate*> common_inner_operands_set;
      for (Predicate* op : simplified_ops) {
        if (op->kind() != other_pred_kind) {
          common_inner_operands.clear();
          break;
        }
    
        if (common_inner_operands.empty()) {
          common_inner_operands.insert(common_inner_operands.end(),
                                       op->GetOperands().begin(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
Back to top