Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 297 for continueCh (0.25 sec)

  1. pkg/proxy/winkernel/proxier.go

    	for _, epInfo := range proxier.endpointsMap[svcName] {
    		ep, ok := epInfo.(*endpointInfo)
    		if !ok {
    			continue
    		}
    		if isLocalTrafficDSR && !ep.IsLocal() {
    			// KEP-1669: Ignore remote endpoints when the ExternalTrafficPolicy is Local (DSR Mode)
    			continue
    		}
    		// If Readiness Probe fails and pod is not under delete, then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

          // For functions, if the resource is used as a return operand, use that
          // as its result index.
          if (is_func && isa<func::ReturnOp>(user)) {
            assert(!info.IsResultIndexAssigned() &&
                   "Expect resource argument to returned no more than once");
            info.result_index = use.getOperandNumber();
            continue;
          }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. cmd/batch-handlers.go

    							batchLogIf(ctx, err)
    						}
    						continue
    					}
    				}
    			}
    			if skip(oi) {
    				continue
    			}
    			if obj.Key != prevObj {
    				prevObj = obj.Key
    				// skip replication of delete marker and all versions under the same object name if one of source or target is s3.
    				skipReplicate = obj.IsDeleteMarker && s3Type
    			}
    			if skipReplicate {
    				continue
    			}
    
    			wk.Take()
    			go func() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  4. pkg/proxy/ipvs/proxier.go

    			if !ok {
    				proxier.logger.Error(nil, "Failed to cast BaseEndpointInfo", "endpoint", e)
    				continue
    			}
    			if !ep.IsLocal() {
    				continue
    			}
    			epIP := ep.IP()
    			epPort := ep.Port()
    			// Error parsing this endpoint has been logged. Skip to next endpoint.
    			if epIP == "" || epPort == 0 {
    				continue
    			}
    			entry := &utilipset.Entry{
    				IP:       epIP,
    				Port:     epPort,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conversion.go

    			for _, gw := range gateways[gk] {
    				if gw == pr {
    					continue // do not ban ourself
    				}
    				if gw.Port != pr.Port {
    					// We only care about listeners on the same port
    					continue
    				}
    				if gw.Protocol != pr.Protocol {
    					// We only care about listeners on the same protocol
    					continue
    				}
    				bannedHostnames.Insert(gw.OriginalHostname)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"continue":             "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 (generally five...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  7. src/go/build/build.go

    					inSlashStar = false
    					line = bytes.TrimSpace(line[i+len(starSlash):])
    					continue Comments
    				}
    				continue Lines
    			}
    			if bytes.HasPrefix(line, slashSlash) {
    				continue Lines
    			}
    			if bytes.HasPrefix(line, slashStar) {
    				inSlashStar = true
    				line = bytes.TrimSpace(line[len(slashStar):])
    				continue Comments
    			}
    			// Found non-comment text.
    			break Lines
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  8. cmd/iam.go

    				// No change to groups memberships for this
    				// credential.
    				continue
    			}
    
    			// Expired credentials don't need group membership updates.
    			if cred.IsExpired() {
    				continue
    			}
    
    			cred.Groups = currGroups
    			if err := sys.store.UpdateUserIdentity(ctx, cred); err != nil {
    				// Log and continue error - perhaps it'll work the next time.
    				iamLogIf(GlobalContext, err)
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  9. cmd/xl-storage-format-v2.go

    						freeFound = true
    					}
    				}
    			}
    
    			if header.VersionID != uv {
    				continue
    			}
    		}
    		if found {
    			continue
    		}
    
    		// We need a specific version, skip...
    		if versionID != "" && uv != header.VersionID {
    			isLatest = false
    			succModTime = header.ModTime
    			continue
    		}
    
    		// We found what we need.
    		found = true
    		var version xlMetaV2Version
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/debug.go

    				}
    				if changed {
    					if mustBeFirst(v) || v.Op == OpArg {
    						// already taken care of above
    						continue
    					}
    					zeroWidthPending = true
    				}
    				continue
    			}
    			if !changed && !zeroWidthPending {
    				continue
    			}
    
    			// Not zero-width; i.e., a "real" instruction.
    			zeroWidthPending = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
Back to top