Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for probing (0.14 sec)

  1. staging/src/k8s.io/apiserver/go.sum

    github.com/xhit/go-str2duration/v2 v2.1.0/go.mod h1:ohY8p+0f07DiV6Em5LKB0s2YpLtXVyJfNt1+BlmyAsU=
    github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 h1:eY9dn8+vbi4tKz5Qo6v2eYzo7kUS51QINcR5jNpbZS8=
    github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU=
    github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/go.sum

    github.com/xhit/go-str2duration/v2 v2.1.0/go.mod h1:ohY8p+0f07DiV6Em5LKB0s2YpLtXVyJfNt1+BlmyAsU=
    github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 h1:eY9dn8+vbi4tKz5Qo6v2eYzo7kUS51QINcR5jNpbZS8=
    github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU=
    github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  3. go.sum

    github.com/xhit/go-str2duration/v2 v2.1.0/go.mod h1:ohY8p+0f07DiV6Em5LKB0s2YpLtXVyJfNt1+BlmyAsU=
    github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 h1:eY9dn8+vbi4tKz5Qo6v2eYzo7kUS51QINcR5jNpbZS8=
    github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU=
    github.com/xlab/treeprint v1.2.0 h1:HzHnuAF1plUN2zGlAFHbSQP2qJ0ZAD3XF5XD7OesXRQ=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 93.1K bytes
    - Viewed (0)
  4. src/runtime/mheap.go

    	// The heap lock must be held because this accesses the
    	// heapArena.spans arrays using potentially non-live pointers.
    	// In particular, if a span were freed and merged concurrently
    	// with this probing heapArena.spans, it would be possible to
    	// observe arbitrary, stale span pointers.
    	assertLockHeld(&h.lock)
    
    	n0 := n
    	var nFreed uintptr
    	sl := sweep.active.begin()
    	if !sl.valid {
    		return 0
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/buildlist.go

    // If rs already has the given pruning, convertPruning returns rs unmodified.
    func convertPruning(ctx context.Context, rs *Requirements, pruning modPruning) (*Requirements, error) {
    	if rs.pruning == pruning {
    		return rs, nil
    	} else if rs.pruning == workspace || pruning == workspace {
    		panic("attempting to convert to/from workspace pruning and another pruning type")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    					}
    
    					initialObjects = testCtx.listAll(t)
    					initialObjects = testCtx.updateAPIServer(t, initialObjects, tc.prepare.prebind)
    					status := testCtx.p.PreBind(testCtx.ctx, testCtx.state, tc.pod, selectedNode.Node().Name)
    					t.Run("prebind", func(t *testing.T) {
    						testCtx.verify(t, tc.want.prebind, initialObjects, nil, status)
    					})
    
    					if tc.want.unreserveAfterBindFailure != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  7. src/runtime/map.go

    	// If we hit the max load factor or we have too many overflow buckets,
    	// and we're not already in the middle of growing, start growing.
    	if !h.growing() && (overLoadFactor(h.count+1, h.B) || tooManyOverflowBuckets(h.noverflow, h.B)) {
    		hashGrow(t, h)
    		goto again // Growing the table invalidates everything, so try again
    	}
    
    	if inserti == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/init.go

    		var (
    			goVersion string
    			pruning   modPruning
    			roots     []module.Version
    			direct    = map[string]bool{"go": true}
    		)
    		if inWorkspaceMode() {
    			// Since we are in a workspace, the Go version for the synthetic
    			// "command-line-arguments" module must not exceed the Go version
    			// for the workspace.
    			goVersion = MainModules.GoVersion()
    			pruning = workspace
    			roots = []module.Version{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/load.go

    // 	- it is imported by another package in "all", or
    // 	- the main module specifies a go version ≤ 1.15, and the package is imported
    // 	  by a *test of* another package in "all".
    //
    // When graph pruning is in effect, we want to spot-check the graph-pruning
    // invariants — which depend on which packages are known to be in "all" — even
    // when we are only loading individual packages, so we set the pkgInAll flag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	//   the claim is assumed to be allocated.
    	// - PreBind for pod B is called first, tries to update reservedFor and
    	//   fails because the claim is not really allocated yet.
    	//
    	// We could avoid the ordering problem by allowing either pod A or pod B
    	// to set the allocation. But that is more complicated and leads to another
    	// problem:
    	// - Pod A and B get scheduled as above.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
Back to top