Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 196 for continueCh (0.27 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top