Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 969 for continueCh (0.15 sec)

  1. src/cmd/go/internal/modload/list.go

    			}
    			continue
    		}
    		if path, vers, found := strings.Cut(arg, "@"); found {
    			if vers == "upgrade" || vers == "patch" {
    				if _, ok := rs.rootSelected(path); !ok || rs.pruning == unpruned {
    					needFullGraph = true
    					if !HasModRoot() {
    						base.Fatalf("go: cannot match %q: %v", arg, ErrNoModRoot)
    					}
    				}
    			}
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 22:43:50 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  2. cmd/erasure-common.go

    		}
    		for i := range resps {
    			if disks[i] == nil {
    				continue
    			}
    			select {
    			case <-ctx.Done():
    			case gotFile, ok := <-resps[i]:
    				if !ok {
    					continue
    				}
    				if gotFile.Error != "" || !gotFile.Exists {
    					continue
    				}
    				if gotFile.File != wantFile || gotFile.Bucket != req.Bucket || gotFile.Prefix != req.Prefix {
    					continue
    				}
    				quorum++
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow/continueReturn2.txt

        expression = if (foo() == 5) {
                    return 1
                } else if (foo() == 6) {
                    continue
                }
        type = kotlin.Unit
      hasEscapingJumps = true
      hasJumps = true
      hasMultipleJumpKinds = true
      hasMultipleJumpTargets = true
      jumpExpressions = [
        return 1,
        continue
      ]
      returnValueType = kotlin.Int
      valuedReturnExpressions = [
        return 1
      ]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 502 bytes
    - Viewed (0)
  4. src/os/dir_darwin.go

    		//
    		if dirent.Ino == 0 {
    			continue
    		}
    		name := (*[len(syscall.Dirent{}.Name)]byte)(unsafe.Pointer(&dirent.Name))[:]
    		for i, c := range name {
    			if c == 0 {
    				name = name[:i]
    				break
    			}
    		}
    		// Check for useless names before allocating a string.
    		if string(name) == "." || string(name) == ".." {
    			continue
    		}
    		if mode == readdirName {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. cmd/metacache-marker.go

    	tag := strings.Trim(s[start:end], "[]")
    	tags := strings.Split(tag, ",")
    	for _, tag := range tags {
    		kv := strings.Split(tag, ":")
    		if len(kv) < 2 {
    			continue
    		}
    		switch kv[0] {
    		case "minio_cache":
    			if kv[1] != markerTagVersion {
    				continue
    			}
    		case "id":
    			o.ID = kv[1]
    		case "return":
    			o.ID = mustGetUUID()
    			o.Create = true
    		case "p": // pool
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/testFixtures/groovy/org/gradle/internal/snapshot/SnapshotVisitorUtil.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.snapshot
    
    import org.gradle.internal.RelativePathSupplier
    
    import static org.gradle.internal.snapshot.SnapshotVisitResult.CONTINUE
    
    class SnapshotVisitorUtil {
        static List<String> getAbsolutePaths(FileSystemSnapshot snapshot, boolean includeRoots = false) {
            def absolutePaths = []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/WriteReplaceOverridesTest.java

        for (ClassInfo info : ClassPath.from(getClass().getClassLoader()).getAllClasses()) {
          if (!GUAVA_PACKAGES.contains(info.getPackageName())) {
            continue;
          }
          if (info.getName().endsWith("GwtSerializationDependencies")) {
            continue; // These classes exist only for the GWT compiler, not to be used.
          }
          if (
          /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/addmod.go

    		if len(f) != 3 {
    			log.Printf("go list -m %s: unexpected output %q", arg, out)
    			exitCode = 1
    			continue
    		}
    		path, vers, dir := f[0], f[1], f[2]
    		mod, err := os.ReadFile(filepath.Join(gopath, "pkg/mod/cache/download", path, "@v", vers+".mod"))
    		if err != nil {
    			log.Printf("%s: %v", arg, err)
    			exitCode = 1
    			continue
    		}
    		info, err := os.ReadFile(filepath.Join(gopath, "pkg/mod/cache/download", path, "@v", vers+".info"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 30 19:41:54 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. cmd/untar.go

    		// if the header is nil, just skip it (not sure how this happens)
    		case header == nil:
    			continue
    		}
    
    		name := header.Name
    		switch path.Clean(name) {
    		case ".", slashSeparator:
    			continue
    		}
    
    		switch header.Typeflag {
    		case tar.TypeDir: // = directory
    			if o.ignoreDirs {
    				continue
    			}
    			name = trimLeadingSlash(pathJoin(name, slashSeparator))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/reconciler/reconstruct.go

    				continue
    			}
    			err = rc.actualStateOfWorld.MarkDeviceAsUncertain(gvl.volumeName, gvl.devicePath, deviceMountPath, seLinuxMountContext)
    			if err != nil {
    				klog.ErrorS(err, "Could not mark device is uncertain to actual state of world", "volumeName", gvl.volumeName, "deviceMountPath", deviceMountPath)
    				continue
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top