Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 3,255 for BREAK (0.04 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/OutputsCleaner.java

                            didWork = true;
                        }
                        markParentDirForDeletion(file);
                    }
                    break;
                case Missing:
                    // Ignore missing files
                    break;
                default:
                    throw new AssertionError("Unknown file type: " + fileType);
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admission/v1beta1/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
    - 46.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/config.cc

          ExpandStaticRangePtqPreset(config.static_range_ptq_preset(), new_config);
          break;
        case QuantizationConfig::kWeightOnlyPtqPreset:
          ExpandWeightOnlyPtqPreset(new_config);
          break;
        default:
          // Preset has not been specified. The expansion is a no-op.
          break;
      }
    
      return new_config;
    }
    
    bool HasQuantizationMethod(const QuantizationSpecs& specs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/autoscaling/v2/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
    - 162.9K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

            enterSatisfyGuardAndLeaveInCurrentThread();
            break;
          case UNSATISFIED_AND_UNOCCUPIED_BEFORE_ENTERING:
            break;
          case SATISFIED_AND_OCCUPIED_BEFORE_ENTERING:
            enterSatisfyGuardAndLeaveInCurrentThread();
            enterAndRemainOccupyingInAnotherThread();
            break;
          case SATISFIED_UNOCCUPIED_AND_INTERRUPTED_BEFORE_ENTERING:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  6. src/syscall/dirent.go

    		ino, ok := direntIno(rec)
    		if !ok {
    			break
    		}
    		// See src/os/dir_unix.go for the reason why this condition is
    		// excluded on wasip1.
    		if ino == 0 && runtime.GOOS != "wasip1" { // File absent in directory.
    			continue
    		}
    		const namoff = uint64(unsafe.Offsetof(Dirent{}.Name))
    		namlen, ok := direntNamlen(rec)
    		if !ok || namoff+namlen > uint64(len(rec)) {
    			break
    		}
    		name := rec[namoff : namoff+namlen]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 20:13:24 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/FailingIncrementalTasksIntegrationTest.groovy

                                    break
                                case "change":
                                    outputTxt.text = "changed output -- \${System.currentTimeMillis()}"
                                    break
                                case "remove":
                                    outputTxt.delete()
                                    break
                            }
                        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 01 14:32:13 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  8. src/mime/quotedprintable/reader.go

    					// Take the = as a literal =.
    					b = '='
    					break
    				}
    				return n, err
    			}
    			r.line = r.line[2:] // 2 of the 3; other 1 is done below
    		case b == '\t' || b == '\r' || b == '\n':
    			break
    		case b >= 0x80:
    			// As an extension to RFC 2045, we accept
    			// values >= 0x80 without complaint. Issue 22597.
    			break
    		case b < ' ' || b > '~':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 27 17:00:08 UTC 2018
    - 3.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AbstractFileResolver.java

            switch (validation) {
                case NONE:
                    break;
                case EXISTS:
                    if (!file.exists()) {
                        throw new InvalidUserDataException(String.format("File '%s' does not exist.", file));
                    }
                    break;
                case FILE:
                    if (!file.exists()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/RemovePreviousOutputsStep.java

                                    outputDirectoriesToPreserve.add(parentFile);
                                }
                                break;
                            case DIRECTORY:
                                outputDirectoriesToPreserve.add(root);
                                break;
                            default:
                                throw new AssertionError();
                        }
                    }
                });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top