Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/extensions/property/PropertyUpgradeClassSourceGenerator.java

                    assignment = ".fileValue(arg0)";
                    break;
                case CONFIGURABLE_FILE_COLLECTION:
                    assignment = ".setFrom(arg0)";
                    break;
                case LIST_PROPERTY:
                case SET_PROPERTY:
                case MAP_PROPERTY:
                case PROPERTY:
                    assignment = ".set(arg0)";
                    break;
                default:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:11:23 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/node/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
    - 40.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/storagemigration/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 08 04:18:56 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  4. src/net/mail/message.go

    			return nil, errors.New("mail: misformatted parenthetical comment")
    		}
    		if p.empty() {
    			break
    		}
    		if p.peek() != ',' {
    			return nil, errors.New("mail: expected comma")
    		}
    
    		// Skip empty entries for obs-addr-list.
    		for p.consume(',') {
    			p.skipSpace()
    		}
    		if p.empty() {
    			break
    		}
    	}
    	return list, nil
    }
    
    func (p *addrParser) parseSingleAddress() (*Address, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/example2/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:
    			iNdEx += 8
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/scheduling/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:
    			iNdEx += 8
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  7. src/internal/concurrent/hashtriemap.go

    			// What we saw is still true, so we can continue with the insert.
    			break
    		}
    		// We have to start over.
    		i.mu.Unlock()
    	}
    	// N.B. This lock is held from when we broke out of the outer loop above.
    	// We specifically break this out so that we can use defer here safely.
    	// One option is to break this out into a new function instead, but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/memcombine.go

    	isLittleEndian := true
    	for i := int64(0); i < n; i++ {
    		if r[i].shift != shift0+i*size*8 {
    			isLittleEndian = false
    			break
    		}
    	}
    	isBigEndian := true
    	for i := int64(0); i < n; i++ {
    		if r[i].shift != shift0-i*size*8 {
    			isBigEndian = false
    			break
    		}
    	}
    	if !isLittleEndian && !isBigEndian {
    		return false
    	}
    
    	// Find a place to put the new load.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_custom_aggregation_ops.cc

            calib_opts_.set_calibration_method(
                CalibrationOptions::CALIBRATION_METHOD_MIN_MAX);
            break;
          case TEST_CASE_AVERAGE_MIN_MAX:
            calib_opts_.set_calibration_method(
                CalibrationOptions::CALIBRATION_METHOD_AVERAGE_MIN_MAX);
            break;
          case TEST_CASE_HISTOGRAM_PERCENTILE: {
            calib_opts_.set_calibration_method(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/coordination/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:
    			iNdEx += 8
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top