Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 197 for BREAK (0.04 sec)

  1. staging/src/k8s.io/api/rbac/v1alpha1/generated.pb.go

    			if b < 0x80 {
    				break
    			}
    		}
    		wireType := int(wire & 0x7)
    		switch wireType {
    		case 0:
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return 0, ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return 0, io.ErrUnexpectedEOF
    				}
    				iNdEx++
    				if dAtA[iNdEx-1] < 0x80 {
    					break
    				}
    			}
    		case 1:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/rbac/v1/generated.pb.go

    			if b < 0x80 {
    				break
    			}
    		}
    		wireType := int(wire & 0x7)
    		switch wireType {
    		case 0:
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return 0, ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return 0, io.ErrUnexpectedEOF
    				}
    				iNdEx++
    				if dAtA[iNdEx-1] < 0x80 {
    					break
    				}
    			}
    		case 1:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  3. src/time/format.go

    			}
    			break
    		}
    		layout = suffix
    		var p string
    		hold := value
    		switch std & stdMask {
    		case stdYear:
    			if len(value) < 2 {
    				err = errBad
    				break
    			}
    			p, value = value[0:2], value[2:]
    			year, err = atoi(p)
    			if err != nil {
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  4. src/cmd/cgo/gcc.go

    				}
    				break
    			}
    			error_(r.Pos(), "call of non-function C.%s", fixGo(r.Name.Go))
    			break
    		}
    		if r.Context == ctxCall2 {
    			if r.Name.Go == "_CMalloc" {
    				error_(r.Pos(), "no two-result form for C.malloc")
    				break
    			}
    			// Invent new Name for the two-result function.
    			n := f.Name["2"+r.Name.Go]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  5. src/regexp/syntax/parse.go

    					return 0, "", err
    				}
    				if c == '}' {
    					break
    				}
    				v := unhex(c)
    				if v < 0 {
    					break Switch
    				}
    				r = r*16 + v
    				if r > unicode.MaxRune {
    					break Switch
    				}
    				nhex++
    			}
    			if nhex == 0 {
    				break Switch
    			}
    			return r, t, nil
    		}
    
    		// Easy case: two hex digits.
    		x := unhex(c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                break;
            case LABEL:
                processLabelRequest(request, response, chain);
                break;
            case POPULARWORD:
                processPopularWordRequest(request, response, chain);
                break;
            case FAVORITE:
                processFavoriteRequest(request, response, chain);
                break;
            case FAVORITES:
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  7. src/runtime/mbitmap.go

    	}
    	if src == 0 {
    		for {
    			var addr uintptr
    			if tp, addr = tp.next(dst + size); addr == 0 {
    				break
    			}
    			dstx := (*uintptr)(unsafe.Pointer(addr))
    			p := buf.get1()
    			p[0] = *dstx
    		}
    	} else {
    		for {
    			var addr uintptr
    			if tp, addr = tp.next(dst + size); addr == 0 {
    				break
    			}
    			dstx := (*uintptr)(unsafe.Pointer(addr))
    			srcx := (*uintptr)(unsafe.Pointer(src + (addr - dst)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  8. src/strings/strings_test.go

    		for {
    			b, e := reader.ReadByte()
    			if e == io.EOF {
    				break
    			}
    			if e != nil {
    				t.Errorf("Reading %q: %s", s, e)
    				break
    			}
    			res.WriteByte(b)
    			// unread and read again
    			e = reader.UnreadByte()
    			if e != nil {
    				t.Errorf("Unreading %q: %s", s, e)
    				break
    			}
    			b1, e := reader.ReadByte()
    			if e != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                case Constants.FESEN_TYPE_CLOUD:
                case Constants.FESEN_TYPE_AWS:
                    // nothing
                    break;
                default:
                    waitForConfigSyncStatus();
                    sendConfigFiles(index);
                    break;
                }
            }
    
            final String indexConfigFile = getResourcePath(indexConfigPath, fesenType, "/" + index + ".json");
            try {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  10. src/sync/atomic/atomic_test.go

    		for {
    			v := LoadInt32(addr)
    			if CompareAndSwapInt32(addr, v, v+1) {
    				break
    			}
    		}
    	}
    }
    
    func hammerCompareAndSwapInt32Method(uaddr *uint32, count int) {
    	addr := (*Int32)(unsafe.Pointer(uaddr))
    	for i := 0; i < count; i++ {
    		for {
    			v := addr.Load()
    			if addr.CompareAndSwap(v, v+1) {
    				break
    			}
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
Back to top