Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 918 for BREAK (0.17 sec)

  1. cmd/import-boss/main.go

    				if disp == DepAllowed {
    					decided = true
    					break // no further rules, next file
    				} else if disp == DepForbidden {
    					errs = append(errs, fmt.Errorf("%q %s %q is forbidden by %s", pkg.PkgPath, relate(imp), imp, file.path))
    					decided = true
    					break // no further rules, next file
    				}
    			}
    			if decided {
    				break // no further files, next import
    			}
    		}
    		if matched && !decided {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  2. src/runtime/debuglog.go

    		all := (*dlogger)(unsafe.Pointer(atomic.Loaduintptr(allp)))
    		for l1 := all; l1 != nil; l1 = l1.allLink {
    			if l1.owned.Load() == 0 && l1.owned.CompareAndSwap(0, 1) {
    				l = l1
    				break
    			}
    		}
    	}
    
    	// If that failed, allocate a new logger.
    	if l == nil {
    		// Use sysAllocOS instead of sysAlloc because we want to interfere
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_uniform_attribute_utils.cc

          quantization_attributes = {"rhs_quantization"};
          break;
        case OpType::kUnaryOp:
          quantization_attributes = {"quantization"};
          break;
        case OpType::kBinaryOp:
          quantization_attributes = {"lhs_quantization", "rhs_quantization",
                                     "output_quantization"};
          break;
        case OpType::kQuantizationOp:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. src/go/build/read.go

    func (r *importReader) readString() {
    	switch r.nextByte(true) {
    	case '`':
    		for r.err == nil {
    			if r.nextByte(false) == '`' {
    				break
    			}
    			if r.eof {
    				r.syntaxError()
    			}
    		}
    	case '"':
    		for r.err == nil {
    			c := r.nextByte(false)
    			if c == '"' {
    				break
    			}
    			if r.eof || c == '\n' {
    				r.syntaxError()
    			}
    			if c == '\\' {
    				r.nextByte(false)
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. src/net/dnsclient_unix.go

    		p, server, err = r.tryOneName(ctx, conf, fqdn, qtype)
    		if err == nil {
    			break
    		}
    		if nerr, ok := err.(Error); ok && nerr.Temporary() && r.strictErrors() {
    			// If we hit a temporary error with StrictErrors enabled,
    			// stop immediately instead of trying more names.
    			break
    		}
    	}
    	if err == nil {
    		return p, server, nil
    	}
    	if err, ok := err.(*DNSError); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFlowScopeIntegrationTest.groovy

                    break
                }
                case ParameterKind.SERVICE_REFERENCE: {
                    withLavaLampServicePluginFor target, injectionStyle, false
                    break
                }
                case ParameterKind.NAMED_SERVICE_REFERENCE: {
                    withLavaLampServicePluginFor target, injectionStyle, true
                    break
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/DistributionIntegrationSpec.groovy

                    buildContext.binDistribution
                    break
                case 'all':
                    buildContext.allDistribution
                    break
                case 'docs':
                    buildContext.docsDistribution
                    break
                case 'src':
                    buildContext.srcDistribution
                    break
                default:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tpu_device_propagation.cc

      for (Value result : op_to_update->getResults()) {
        if (mlir::isa<tf_executor::TokenType>(result.getType())) continue;
        if (mlir::isa<tf_executor::ControlType>(result.getType())) break;
    
        value_to_device.insert({result, device});
      }
    }
    
    // Checks if an operation can have TPU devices propagated through.
    bool IsSupportedOpToSetDevice(Operation& op) {
      return IsSupportedExecutorOp(op) ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

                    importSystemProperties(fileName, tempFile);
                    break;
                case 2:
                    importGsaXml(fileName, tempFile);
                    break;
                case 3:
                    importBulk(fileName, tempFile);
                    break;
                case 4:
                    importFessJson(fileName, tempFile);
                    break;
                case 5:
                    importDocJson(fileName, tempFile);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/test/testflag.go

    	// and getting this wrong doesn't do too much harm.
    helpLoop:
    	for _, arg := range explicitArgs {
    		switch arg {
    		case "--":
    			break helpLoop
    		case "-h", "-help", "--help":
    			testHelp = true
    			break helpLoop
    		}
    	}
    
    	// Forward any unparsed arguments (following --args) to the test binary.
    	return packageNames, append(injectedFlags, explicitArgs...)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top