Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 289 for continueCh (0.2 sec)

  1. 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)
  2. 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)
  3. src/runtime/mgcmark.go

    			// defensively, too.
    			state.putPtr(val, true)
    			continue
    		}
    
    		// Check if val points to a heap span.
    		span := spanOfHeap(val)
    		if span == nil {
    			continue
    		}
    
    		// Check if val points to an allocated object.
    		idx := span.objIndex(val)
    		if span.isFree(idx) {
    			continue
    		}
    
    		// val points to an allocated object. Mark it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  4. src/html/template/escape_test.go

    		b := new(strings.Builder)
    		if err := tmpl.Execute(b, data); err != nil {
    			t.Errorf("%s: template execution failed: %s", test.desc, err)
    			continue
    		}
    		if w, g := test.output, b.String(); w != g {
    			t.Errorf("%s: escaped output: want\n\t%q\ngot\n\t%q", test.desc, w, g)
    			continue
    		}
    	}
    }
    
    func TestEscapeSet(t *testing.T) {
    	type dataItem struct {
    		Children []*dataItem
    		X        string
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/cmd/internal/testdir/testdir_test.go

    		errFile, rest, ok := strings.Cut(errStr, ":")
    		if !ok || errFile != file {
    			continue
    		}
    		lineStr, msg, ok := strings.Cut(rest, ":")
    		if !ok {
    			continue
    		}
    		line, err := strconv.Atoi(lineStr)
    		line--
    		if err != nil || line < 0 || line >= len(lines) {
    			continue
    		}
    		msg = strings.Replace(msg, file, base, -1) // normalize file mentions in error itself
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  8. src/net/dnsclient_unix_test.go

    		if err != nil {
    			t.Error(err)
    			continue
    		}
    		if h.RCode != tt.rcode {
    			t.Errorf("got %v from %v; want %v", h.RCode, tt.server, tt.rcode)
    			continue
    		}
    		a, err := p.AllAnswers()
    		if err != nil {
    			t.Errorf("unexpected error %v getting all answers from %v", err, tt.server)
    			continue
    		}
    		if len(a) != 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    		if shouldErrorOnClusterScopedRequests {
    			continue
    		} else if p.GetAPIVersion() != policy.Spec.ParamKind.APIVersion || p.GetKind() != policy.Spec.ParamKind.Kind {
    			continue
    		} else if len(paramRef.Name) > 0 && p.GetName() != paramRef.Name {
    			continue
    		} else if len(paramRef.Namespace) > 0 && p.GetNamespace() != paramRef.Namespace {
    			continue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/xcoff.go

    	ldr := ctxt.loader
    	for s, nsym := loader.Sym(1), loader.Sym(ldr.NSym()); s < nsym; s++ {
    		if !ldr.AttrCgoExport(s) {
    			continue
    		}
    		extname := ldr.SymExtname(s)
    		if !strings.HasPrefix(extname, "._cgoexp_") {
    			continue
    		}
    		if ldr.IsFileLocal(s) {
    			continue // Only export non-static symbols
    		}
    
    		// Retrieve the name of the initial symbol
    		// exported by cgo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
Back to top