Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 196 for continueCh (0.2 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

          if (!arg_type) {
            args.push_back(arg);
            continue;
          }
          QuantizedType qtype =
              mlir::dyn_cast<QuantizedType>(arg_type.getElementType());
          if (!qtype) {
            args.push_back(arg);
            continue;
          }
    
          quantfork::StorageCastOp scast_op;
          if (target_opset_ == OpSet::UNIFORM_QUANTIZED) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  2. cmd/bucket-handlers.go

    	for bucket, records := range dnsBuckets {
    		if bucketsSet.Contains(bucket) {
    			continue
    		}
    
    		if globalDomainIPs.Intersection(set.CreateStringSet(getHostsSlice(records)...)).IsEmpty() {
    			// This is not for our server, so we can continue
    			continue
    		}
    
    		wg.Add(1)
    		go func(bucket string) {
    			defer wg.Done()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// The continue option should be set when retrieving more results from the server. Since this value is
    	// server defined, clients may only use the continue value from a previous query result with identical
    	// query parameters (except for the value of continue) and the server may reject a continue value it
    	// does not recognize. If the specified continue value is no longer valid whether due to expiration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  4. src/cmd/compile/internal/ssa/prove.go

    			if pred.Kind != BlockIf {
    				continue
    			}
    			control := pred.Controls[0]
    
    			br := unknown
    			if pred.Succs[0].b == child {
    				br = positive
    			}
    			if pred.Succs[1].b == child {
    				if br != unknown {
    					continue
    				}
    				br = negative
    			}
    			if br == unknown {
    				continue
    			}
    
    			tr, has := domainRelationTable[control.Op]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/dwarf.go

    				unit.AbsFnDIEs = append(unit.AbsFnDIEs, sym.LoaderSym(rsym))
    				d.importInfoSymbol(rsym)
    			}
    			continue
    		}
    
    		// Look for type references.
    		if rst != sym.SDWARFTYPE && rst != sym.Sxxx {
    			continue
    		}
    		if _, ok := d.rtmap[rsym]; ok {
    			// type already generated
    			continue
    		}
    
    		rsn := d.ldr.SymName(rsym)
    		tn := rsn[len(dwarf.InfoPrefix):]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

          // We're only expecting a single input argument to be replicated.
          if (input_op->getNumOperands() > 1) continue;
          Value operand = input_op->getOperand(0);
          if (!llvm::isa<BlockArgument>(operand)) continue;
          BlockArgument arg = llvm::dyn_cast<BlockArgument>(operand);
    
          // See if we've run across this TPUReplicatedInputOp before.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  7. istioctl/pkg/describe/describe.go

    						fmt.Printf("   Pod is not %s (%s)\n", corev1.PodRunning, pod.Status.Phase)
    						continue
    					}
    
    					ready, err := containerReady(&pod, inject.ProxyContainerName)
    					if err != nil {
    						fmt.Fprintf(writer, "Pod %s: %s\n", kname(pod.ObjectMeta), err)
    						continue
    					}
    					if !ready {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  8. src/runtime/map.go

    				}
    				if b.tophash[i] == emptyRest {
    					break bucketloop
    				}
    				continue
    			}
    			k := add(unsafe.Pointer(b), dataOffset+i*uintptr(t.KeySize))
    			if t.IndirectKey() {
    				k = *((*unsafe.Pointer)(k))
    			}
    			if !t.Key.Equal(key, k) {
    				continue
    			}
    			// already have a mapping for key. Update it.
    			if t.NeedKeyUpdate() {
    				typedmemmove(t.Key, k, key)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

    		case r == '\\':
    			escaped = true
    			continue
    		case quote != 0:
    			if r == quote {
    				quote = 0
    				continue
    			}
    		case r == '"' || r == '\'':
    			quoted = true
    			quote = r
    			continue
    		case unicode.IsSpace(r):
    			if quoted || i > 0 {
    				quoted = false
    				args = append(args, string(arg[:i]))
    				i = 0
    			}
    			continue
    		}
    		arg[i] = r
    		i++
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	for _, file := range files {
    		if file.IsDir() {
    			continue
    		}
    		matches := restartCountLogFileRegex.FindStringSubmatch(file.Name())
    		if len(matches) == 0 {
    			continue
    		}
    		count, err := strconv.Atoi(matches[1])
    		if err != nil {
    			// unlikely kubelet created this file,
    			// likely custom file with random numbers as a name
    			continue
    		}
    		count++
    		if count > restartCount {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
Back to top