Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 101 for toolID (0.34 sec)

  1. 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)
  2. src/go/parser/parser.go

    			default:
    				pos := p.pos
    				p.errorExpected(pos, "selector or type assertion")
    				// TODO(rFindley) The check for token.RBRACE below is a targeted fix
    				//                to error recovery sufficient to make the x/tools tests to
    				//                pass with the new parsing logic introduced for type
    				//                parameters. Remove this once error recovery has been
    				//                more generally reconsidered.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// +optional
    	Labels map[string]string `json:"labels,omitempty" protobuf:"bytes,11,rep,name=labels"`
    
    	// Annotations is an unstructured key value map stored with a resource that may be
    	// set by external tools to store and retrieve arbitrary metadata. They are not
    	// queryable and should be preserved when modifying objects.
    	// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  6. pkg/kubelet/pod_workers.go

    import (
    	"context"
    	"fmt"
    	"strings"
    	"sync"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/client-go/tools/record"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	"k8s.io/klog/v2"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    	"k8s.io/kubernetes/pkg/kubelet/events"
    	"k8s.io/kubernetes/pkg/kubelet/eviction"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    One way of generating a Base64-encoded AES-compatible key is by using a command like this:
    
    ```
    ❯ openssl rand -base64 16
    ```
    
    This command should work on Linux, Mac OS, or on Windows, if using a tool like Cygwin.
    
    You can then use the Base64-encoded key produced by that command and set it as the value of the
    `GRADLE_ENCRYPTION_KEY` environment variable.
    
    
    [[config_cache:not_yet_implemented]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/compile/internal/types2/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.Value == "X" {
    			continue
    		}
    
    		_, gotObj := inner.LookupParent(id.Value, 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: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  10. 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)
Back to top