Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for establishKeys (0.26 sec)

  1. src/encoding/json/decode.go

    // the additional JSON array elements are discarded.
    // If the JSON array is smaller than the Go array,
    // the additional Go array elements are set to zero values.
    //
    // To unmarshal a JSON object into a map, Unmarshal first establishes a map to
    // use. If the map is nil, Unmarshal allocates a new map. Otherwise Unmarshal
    // reuses the existing map, keeping existing entries. Unmarshal then stores
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/cache/actual_state_of_world_test.go

    	verifyVolumeExistsInUnmountedVolumes(t, generatedVolumeName, asw)
    	verifyVolumeDoesntExistInGloballyMountedVolumes(t, generatedVolumeName, asw)
    }
    
    // Calls MarkVolumeAsAttached() once to add volume, specifying a name --
    // establishes that the supplied volume name is used to register the volume
    // rather than the generated one.
    // Verifies newly added volume exists in GetUnmountedVolumes()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/staticinit/sched.go

    // MapInitToVar is the inverse of VarToMapInit; it maintains a mapping
    // from a compiler-generated init function to the map the function is
    // initializing.
    var MapInitToVar map[*ir.Func]*ir.Name
    
    // recordFuncForVar establishes a mapping between global map var "v" and
    // outlined init function "fn" (and vice versa); so that we can use
    // the mappings later on to update relocations.
    func recordFuncForVar(v *ir.Name, fn *ir.Func) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    			// those two operations the last old server crashes and
    			// recovers. The chosen solution is making this controller
    			// insist on maintaining the particular state that it
    			// establishes.
    			if !(apiequality.Semantic.DeepEqual(oldFS.Spec, newFS.Spec) &&
    				apiequality.Semantic.DeepEqual(oldFS.Status, newFS.Status)) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  5. src/net/http/transport.go

    	"time"
    	_ "unsafe"
    
    	"golang.org/x/net/http/httpguts"
    	"golang.org/x/net/http/httpproxy"
    )
    
    // DefaultTransport is the default implementation of [Transport] and is
    // used by [DefaultClient]. It establishes network connections as needed
    // and caches them for reuse by subsequent calls. It uses HTTP proxies
    // as directed by the environment variables HTTP_PROXY, HTTPS_PROXY
    // and NO_PROXY (or the lowercase versions thereof).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  6. src/go/types/expr.go

    				goto Error
    			}
    		}
    		x.setConst(e.Kind, e.Value)
    		if x.mode == invalid {
    			// The parser already establishes syntactic correctness.
    			// If we reach here it's because of number under-/overflow.
    			// TODO(gri) setConst (and in turn the go/constant package)
    			// should return an error describing the issue.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/expr.go

    				goto Error
    			}
    		}
    		x.setConst(e.Kind, e.Value)
    		if x.mode == invalid {
    			// The parser already establishes syntactic correctness.
    			// If we reach here it's because of number under-/overflow.
    			// TODO(gri) setConst (and in turn the go/constant package)
    			// should return an error describing the issue.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.31.md

    - Add the` WatchList` method to the `rest client` in `client-go`. When used, it establishes a stream to obtain a consistent snapshot of data from the server. This method is meant to be used by the generated client. ([#122657](https://github.com/kubernetes/kubernetes/pull/122657), [@p0lyn0mial](https://github.com/p0lyn0mial)) [SIG API Machinery]...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  9. src/runtime/mheap.go

    // mark bits are repurposed as allocation bits when
    // the span is swept.
    func newAllocBits(nelems uintptr) *gcBits {
    	return newMarkBits(nelems)
    }
    
    // nextMarkBitArenaEpoch establishes a new epoch for the arenas
    // holding the mark bits. The arenas are named relative to the
    // current GC cycle which is demarcated by the call to finishweep_m.
    //
    // All current spans have been swept.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  10. doc/go_spec.html

    </p>
    
    <p>
    Type inference uses the type relationships between pairs of types for inference:
    For instance, a function argument must be <a href="#Assignability">assignable</a>
    to its respective function parameter; this establishes a relationship between the
    type of the argument and the type of the parameter.
    If either of these two types contains type parameters, type inference looks for the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
Back to top