Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 49 of 49 for toolID (0.14 sec)

  1. src/cmd/go/internal/modget/get.go

    // reproduce the user's intent, not to find a solution that a human couldn't.
    // In the vast majority of cases, we expect only one module per pathSet,
    // but we want to give some minimal additional tools so that users can add an
    // extra argument or two on the command line to resolve simple ambiguities.
    func (r *resolver) disambiguate(cs pathSet) (filtered pathSet, isPackage bool, m module.Version, unique bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/client-go/informers"
    	clientsetfake "k8s.io/client-go/kubernetes/fake"
    	clienttesting "k8s.io/client-go/testing"
    	"k8s.io/client-go/tools/events"
    	"k8s.io/klog/v2/ktesting"
    	kubeschedulerconfigv1 "k8s.io/kube-scheduler/config/v1"
    	extenderv1 "k8s.io/kube-scheduler/extender/v1"
    	"k8s.io/kubernetes/pkg/scheduler/apis/config"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	resourcev1alpha2apply "k8s.io/client-go/applyconfigurations/resource/v1alpha2"
    	"k8s.io/client-go/kubernetes"
    	resourcev1alpha2listers "k8s.io/client-go/listers/resource/v1alpha2"
    	"k8s.io/client-go/tools/cache"
    	"k8s.io/component-helpers/scheduling/corev1/nodeaffinity"
    	"k8s.io/dynamic-resource-allocation/resourceclaim"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  4. src/internal/trace/order.go

    	// face of broken timestamps. See the go122-syscall-steal-proc-ambiguous test for
    	// more details.
    	//
    	// Note that because this sequence number only exists as a tool for disambiguation,
    	// we can enforce that we have the right sequence number at this point; we don't need
    	// to back off and see if any other events will advance. This is a running P.
    	pSeq := makeSeq(gen, ev.args[0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  5. src/testing/testing.go

    //	        }
    //	    })
    //	}
    //
    // A detailed specification of the benchmark results format is given
    // in https://golang.org/design/14313-benchmark-format.
    //
    // There are standard tools for working with benchmark results at
    // https://golang.org/x/perf/cmd.
    // In particular, https://golang.org/x/perf/cmd/benchstat performs
    // statistically robust A/B comparisons.
    //
    // # Examples
    //
    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. pilot/pkg/model/push_context.go

    		"pilot_virt_services",
    		"Total virtual services known to pilot.",
    	)
    
    	// LastPushStatus preserves the metrics and data collected during lasts global push.
    	// It can be used by debugging tools to inspect the push event. It will be reset after each push with the
    	// new version.
    	LastPushStatus *PushContext
    	// LastPushMutex will protect the LastPushStatus
    	LastPushMutex sync.Mutex
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  7. src/net/http/transport.go

    // net/http against an *http2.Transport that's either bundled into
    // h2_bundle.go or supplied by the user via x/net/http2.
    //
    // We name it with the "h2" prefix to stay out of the "http2" prefix
    // namespace used by x/tools/cmd/bundle for h2_bundle.go.
    type h2Transport interface {
    	CloseIdleConnections()
    }
    
    func (t *Transport) hasCustomTLSDialer() bool {
    	return t.DialTLS != nil || t.DialTLSContext != nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loader/loader.go

    func (l *Loader) Preload(localSymVersion int, f *bio.Reader, lib *sym.Library, unit *sym.CompilationUnit, length int64) goobj.FingerprintType {
    	roObject, readonly, err := f.Slice(uint64(length)) // TODO: no need to map blocks that are for tools only (e.g. RefName)
    	if err != nil {
    		log.Fatal("cannot read object file:", err)
    	}
    	r := goobj.NewReaderFromBytes(roObject, readonly)
    	if r == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  9. src/go/types/api_test.go

    		}
    
    		// Exclude selectors and qualified identifiers---lexical
    		// refs only.  (Ideally, we'd see if the AST parent is a
    		// SelectorExpr, but that requires PathEnclosingInterval
    		// from golang.org/x/tools/go/ast/astutil.)
    		if id.Name == "X" {
    			continue
    		}
    
    		_, gotObj := inner.LookupParent(id.Name, id.Pos())
    		if gotObj != wantObj {
    			// Print the scope tree of mainScope in case of error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top