Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 297 for continueCh (0.19 sec)

  1. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // 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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // 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: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  3. src/index/suffixarray/sais2.go

    	b := bucket[cB]
    	sa[b] = int64(k)
    	b++
    
    	for i := 0; i < len(sa); i++ {
    		j := int(sa[i])
    		if j == 0 {
    			// Skip empty entry.
    			continue
    		}
    		if j < 0 {
    			// Leave discovered type-S index for caller.
    			sa[i] = int64(-j)
    			continue
    		}
    		sa[i] = 0
    
    		// Index j was on work queue, meaning k := j-1 is L-type,
    		// so we can now place k correctly into sa.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top