Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 197 for BREAK (0.11 sec)

  1. 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)
  2. android/guava/src/com/google/common/base/CharMatcher.java

        // This unusual loop comes from extensive benchmarking
        OUT:
        while (true) {
          pos++;
          while (true) {
            if (pos == chars.length) {
              break OUT;
            }
            if (matches(chars[pos])) {
              break;
            }
            chars[pos - spread] = chars[pos];
            pos++;
          }
          spread++;
        }
        return new String(chars, 0, pos - spread);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    			}
    			defer watcher.Stop()
    			select {
    			case event := <-watcher.ResultChan():
    				if tt.expectedEvent == nil {
    					t.Errorf("Unexpected event: type=%#v, object=%#v", event.Type, event.Object)
    					break
    				}
    				if e, a := tt.expectedEvent.Type, event.Type; e != a {
    					t.Errorf("Expected: %s, got: %s", e, a)
    				}
    				if e, a := tt.expectedEvent.Object, event.Object; !apiequality.Semantic.DeepDerivative(e, a) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  4. 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)
  5. pkg/controller/daemon/daemon_controller.go

    			if len(daemonPodsRunning) <= 1 {
    				// There are no excess pods to be pruned, and no pods to create
    				break
    			}
    
    			sort.Sort(podByCreationTimestampAndPhase(daemonPodsRunning))
    			for i := 1; i < len(daemonPodsRunning); i++ {
    				podsToDelete = append(podsToDelete, daemonPodsRunning[i].Name)
    			}
    			break
    		}
    
    		if len(daemonPodsRunning) <= 1 {
    			// // There are no excess pods to be pruned
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  6. src/runtime/traceback.go

    				if cgoSymbolizer == nil {
    					if pr, stop := commitFrame(); stop {
    						break
    					} else if pr {
    						print("non-Go function at pc=", hex(pc), "\n")
    					}
    				} else {
    					stop = printOneCgoTraceback(pc, commitFrame, &arg)
    					anySymbolized = true
    					if stop {
    						break
    					}
    				}
    			}
    			if anySymbolized {
    				// Free symbolization state.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/CharMatcher.java

        // This unusual loop comes from extensive benchmarking
        OUT:
        while (true) {
          pos++;
          while (true) {
            if (pos == chars.length) {
              break OUT;
            }
            if (matches(chars[pos])) {
              break;
            }
            chars[pos - spread] = chars[pos];
            pos++;
          }
          spread++;
        }
        return new String(chars, 0, pos - spread);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

      }
    
      Type new_storage_type;
      if (is_signed) {
        switch (bit_width) {
          case 8:
            new_storage_type = TF::Qint8Type::get(ctx);
            break;
          case 32:
            new_storage_type = TF::Qint32Type::get(ctx);
            break;
          default:
            return nullptr;  // Not yet supported
        }
      } else {
        return nullptr;  // Not yet supported
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/loong64/asm.go

    					alignedValue := p.From.Offset
    					m = pcAlignPadLength(ctxt, pc, alignedValue)
    					break
    				case obj.ANOP, obj.AFUNCDATA, obj.APCDATA:
    					continue
    				default:
    					c.ctxt.Diag("zero-width instruction\n%v", p)
    				}
    			}
    
    			pc += int64(m)
    		}
    
    		c.cursym.Size = pc
    
    		if !rescan {
    			break
    		}
    	}
    
    	pc += -pc & (FuncAlign - 1)
    	c.cursym.Size = pc
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  10. src/go/build/build.go

    		c.CgoEnabled = false
    	default:
    		// cgo must be explicitly enabled for cross compilation builds
    		if runtime.GOARCH == c.GOARCH && runtime.GOOS == c.GOOS {
    			c.CgoEnabled = platform.CgoSupported(c.GOOS, c.GOARCH)
    			break
    		}
    		c.CgoEnabled = false
    	}
    
    	return c
    }
    
    func envOr(name, def string) string {
    	s := os.Getenv(name)
    	if s == "" {
    		return def
    	}
    	return s
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
Back to top