Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 197 for eventual (0.42 sec)

  1. pkg/kubelet/util/manager/watch_based_manager_test.go

    	}
    
    	tests := []struct {
    		desc     string
    		initial  *v1.Secret
    		eventual *v1.Secret
    	}{
    		{
    			desc:     "secret doesn't exist, created as mutable",
    			initial:  nil,
    			eventual: secret("200", false),
    		},
    		{
    			desc:     "secret doesn't exist, created as immutable",
    			initial:  nil,
    			eventual: secret("200", true),
    		},
    		{
    			desc:     "mutable secret modified to mutable",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 09 10:05:43 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  2. src/cmd/link/internal/arm/asm.go

    	rs := r.Sym()
    	if target.IsExternal() {
    		switch r.Type() {
    		case objabi.R_CALLARM:
    			// set up addend for eventual relocation via outer symbol.
    			_, off := ld.FoldSubSymbolOffset(ldr, rs)
    			xadd := int64(signext24(r.Add()&0xffffff))*4 + off
    			if xadd/4 > 0x7fffff || xadd/4 < -0x800000 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    // These four hook variables are a proof of concept of a future
    // parameterization of a unitchecker API that allows the client to
    // determine how and where facts and types are produced and consumed.
    // (Note that the eventual API will likely be quite different.)
    //
    // The defaults honor a Config in a manner compatible with 'go vet'.
    var (
    	makeTypesImporter = func(cfg *Config, fset *token.FileSet) types.Importer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/interfaces.go

    	// If the key doesn't exist, it will return NotFound storage error if ignoreNotFound=false
    	// else `destination` will be set to the zero value of it's type.
    	// If the eventual successful invocation of `tryUpdate` returns an output with the same serialized
    	// contents as the input, it won't perform any update, but instead set `destination` to an object with those
    	// contents.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:53:48 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. pkg/registry/core/service/storage/alloc.go

    	al.releaseClusterIPs(svc)
    
    	for _, nodePort := range collectServiceNodePorts(svc) {
    		err := al.serviceNodePorts.Release(nodePort)
    		if err != nil {
    			// these should be caught by an eventual reconciliation / restart
    			utilruntime.HandleError(fmt.Errorf("Error releasing service %s node port %d: %v", svc.Name, nodePort, err))
    		}
    	}
    
    	if apiservice.NeedsHealthCheck(svc) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 37.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/typecheck/stmt.go

    				}
    				base.ErrorfAt(pos, errors.InvalidSelectCase, "select case must be receive, send or assign recv")
    
    			case ir.OAS:
    				// convert x = <-c into x, _ = <-c
    				// remove implicit conversions; the eventual assignment
    				// will reintroduce them.
    				n := n.(*ir.AssignStmt)
    				if r := n.Y; r.Op() == ir.OCONVNOP || r.Op() == ir.OCONVIFACE {
    					r := r.(*ir.ConvExpr)
    					if r.Implicit() {
    						n.Y = r.X
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  7. src/go/internal/gcimporter/gcimporter_test.go

    	compile(t, "testdata", "p.go", filepath.Join(tmpdir, "testdata"), nil)
    
    	// Multiple imports of p must succeed without redeclaration errors.
    	// We use an import path that's not cleaned up so that the eventual
    	// file path for the package is different from the package path; this
    	// will expose the error if it is present.
    	//
    	// (Issue: Both the textual and the binary importer used the file path
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    type file struct {
    	b       *binrep
    	name    string
    	buildID string
    
    	baseOnce sync.Once // Ensures the base, baseErr and isData are computed once.
    	base     uint64
    	baseErr  error // Any eventual error while computing the base.
    	isData   bool
    	// Mapping information. Relevant only for ELF files, nil otherwise.
    	m *elfMapping
    }
    
    // computeBase computes the relocation base for the given binary file only if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  9. src/runtime/pprof/proto.go

    	firstPCSymbolizeResult symbolizeFlag
    }
    
    // newProfileBuilder returns a new profileBuilder.
    // CPU profiling data obtained from the runtime can be added
    // by calling b.addCPUData, and then the eventual profile
    // can be obtained by calling b.finish.
    func newProfileBuilder(w io.Writer) *profileBuilder {
    	zw, _ := gzip.NewWriterLevel(w, gzip.BestSpeed)
    	b := &profileBuilder{
    		w:         w,
    		zw:        zw,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/buildid.go

    // original build ID as a contiguous string.)
    //
    // During the build, when it's time to build main.a, the gofmt binary has the
    // information needed to decide whether the eventual link would produce
    // the same binary: if the action ID for main.a's inputs matches and then
    // the action ID for the link step matches when assuming the given main.a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top