Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 115 for continueCh (0.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/testing/testing.go

    	for more := true; more; prevFrame = frame {
    		frame, more = frames.Next()
    		if frame.Function == "runtime.gopanic" {
    			continue
    		}
    		if frame.Function == c.cleanupName {
    			frames = runtime.CallersFrames(c.cleanupPc)
    			continue
    		}
    		if firstFrame.PC == 0 {
    			firstFrame = frame
    		}
    		if frame.Function == c.runner {
    			// We've gone up all the way to the tRunner calling
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/load.go

    					stdErr.importerGoVersion = v.(string)
    				}
    			}
    			if ld.SilenceMissingStdImports {
    				continue
    			}
    		}
    		if ld.SilencePackageErrors {
    			continue
    		}
    		if ld.SilenceNoGoErrors && errors.Is(pkg.err, imports.ErrNoGo) {
    			continue
    		}
    
    		ld.error(fmt.Errorf("%s: %w", pkg.stackText(), pkg.err))
    	}
    
    	ld.checkMultiplePaths()
    	return ld
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  10. src/math/big/int_test.go

    		if !ok {
    			t.Errorf("SetString(%s, 0) failed", s)
    			continue
    		}
    
    		want, err := strconv.ParseInt(s, 0, 64)
    		if err != nil {
    			if err.(*strconv.NumError).Err == strconv.ErrRange {
    				if x.IsInt64() {
    					t.Errorf("IsInt64(%s) succeeded unexpectedly", s)
    				}
    			} else {
    				t.Errorf("ParseInt(%s) failed", s)
    			}
    			continue
    		}
    
    		if !x.IsInt64() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
Back to top