Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for vers (0.09 sec)

  1. pkg/kubelet/status/status_manager_test.go

    		}
    	}
    }
    
    func getAction() core.GetAction {
    	return core.GetActionImpl{ActionImpl: core.ActionImpl{Verb: "get", Resource: schema.GroupVersionResource{Resource: "pods"}}}
    }
    
    func patchAction() core.PatchAction {
    	return core.PatchActionImpl{ActionImpl: core.ActionImpl{Verb: "patch", Resource: schema.GroupVersionResource{Resource: "pods"}, Subresource: "status"}}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/api_test.go

    			t.Error(err)
    		}
    	}
    
    	// check InitOrder is [x y]
    	var vars []string
    	for _, init := range info.InitOrder {
    		for _, v := range init.Lhs {
    			vars = append(vars, v.Name())
    		}
    	}
    	if got, want := fmt.Sprint(vars), "[x y]"; got != want {
    		t.Errorf("InitOrder == %s, want %s", got, want)
    	}
    }
    
    type testImporter map[string]*Package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  3. src/go/types/api_test.go

    			t.Error(err)
    		}
    	}
    
    	// check InitOrder is [x y]
    	var vars []string
    	for _, init := range info.InitOrder {
    		for _, v := range init.Lhs {
    			vars = append(vars, v.Name())
    		}
    	}
    	if got, want := fmt.Sprint(vars), "[x y]"; got != want {
    		t.Errorf("InitOrder == %s, want %s", got, want)
    	}
    }
    
    type testImporter map[string]*Package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  4. src/go/types/expr.go

    	errOp := x  // operand for which error is reported, if any
    	cause := "" // specific error cause, if any
    
    	// spec: "In any comparison, the first operand must be assignable
    	// to the type of the second operand, or vice versa."
    	code := MismatchedTypes
    	ok, _ := x.assignableTo(check, y.typ, nil)
    	if !ok {
    		ok, _ = y.assignableTo(check, x.typ, nil)
    	}
    	if !ok {
    		// Report the error on the 2nd operand since we only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modget/get.go

    			if _, err := modfetch.DownloadZip(ctx, mActual); err != nil {
    				verb := "upgraded"
    				if gover.ModCompare(m.Path, m.Version, old.Version) < 0 {
    					verb = "downgraded"
    				}
    				replaced := ""
    				if mActual != m {
    					replaced = fmt.Sprintf(" (replaced by %s)", mActual)
    				}
    				err = fmt.Errorf("%s %s %s => %s%s: error finding sum for %s: %v", verb, m.Path, old.Version, m.Version, replaced, mActual, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  6. pkg/controller/replicaset/replica_set_test.go

    		informers.Core().V1().Pods(),
    		client,
    		burstReplicas,
    	)
    
    	ret.podListerSynced = alwaysReady
    	ret.rsListerSynced = alwaysReady
    
    	return ret, informers
    }
    
    func skipListerFunc(verb string, url url.URL) bool {
    	if verb != "GET" {
    		return false
    	}
    	if strings.HasSuffix(url.Path, "/pods") || strings.Contains(url.Path, "/replicasets") {
    		return true
    	}
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  7. cluster/gce/windows/k8s-node-setup.psm1

    #  - Always use single-quoted strings unless actually interpolating variables
    #    or using escape characters.
    #  - Use "approved verbs":
    #    https://docs.microsoft.com/en-us/powershell/developer/cmdlet/approved-verbs-for-windows-powershell-commands
    #  - Document functions using proper syntax:
    #    https://technet.microsoft.com/en-us/library/hh847834(v=wps.620).aspx
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/expr.go

    	errOp := x  // operand for which error is reported, if any
    	cause := "" // specific error cause, if any
    
    	// spec: "In any comparison, the first operand must be assignable
    	// to the type of the second operand, or vice versa."
    	code := MismatchedTypes
    	ok, _ := x.assignableTo(check, y.typ, nil)
    	if !ok {
    		ok, _ = y.assignableTo(check, x.typ, nil)
    	}
    	if !ok {
    		// Report the error on the 2nd operand since we only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loader/loader.go

    func (l *Loader) LookupOrCreateSym(name string, ver int) Sym {
    	i := l.Lookup(name, ver)
    	if i != 0 {
    		return i
    	}
    	i = l.newExtSym(name, ver)
    	static := ver >= sym.SymVerStatic || ver < 0
    	if static {
    		l.extStaticSyms[nameVer{name, ver}] = i
    	} else {
    		l.symsByName[ver][name] = i
    	}
    	return i
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  10. src/cmd/cgo/gcc.go

    			// like the second arg in the call below:
    			//
    			//     myfunction(42, "foo")
    			//
    			// If a var has no name we won't see attempts to
    			// refer to it via "C.<name>", so skip these vars
    			//
    			// See issue 53000 for more context.
    			if name == "" {
    				break
    			}
    			typOff, _ := e.Val(dwarf.AttrType).(dwarf.Offset)
    			if typOff == 0 {
    				if e.Val(dwarf.AttrSpecification) != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top