Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 79 for Printer (0.25 sec)

  1. pkg/kubelet/server/server_test.go

    		query        string
    		podLogOption *v1.PodLogOptions
    	}{
    		"without tail":     {"", &v1.PodLogOptions{}},
    		"with tail":        {"?tailLines=5", &v1.PodLogOptions{TailLines: pointer.Int64(5)}},
    		"with legacy tail": {"?tail=5", &v1.PodLogOptions{TailLines: pointer.Int64(5)}},
    		"with tail all":    {"?tail=all", &v1.PodLogOptions{}},
    		"with follow":      {"?follow=1", &v1.PodLogOptions{Follow: true}},
    	}
    
    	for desc, test := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    To disable the running of go vet, use the -vet=off flag. To run all
    checks, use the -vet=all flag.
    
    All test output and summary lines are printed to the go command's
    standard output, even if the test printed them to its own standard
    error. (The go command's standard error is reserved for printing
    errors building the tests.)
    
    The go command places $GOROOT/bin at the beginning of $PATH
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	if listVal.Kind() != reflect.Slice {
    		return fmt.Errorf("need a pointer to slice, got %v", listVal.Kind())
    	}
    	filter := filterWithAttrsFunction(key, pred)
    
    	objs, readResourceVersion, indexUsed, err := c.listItems(ctx, listRV, key, pred, recursive)
    	if err != nil {
    		return err
    	}
    	span.AddEvent("Listed items from cache", attribute.Int("count", len(objs)))
    	// store pointer of eligible objects,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. src/go/types/api_test.go

    		{`package n4; var _ chan int = nil`, `nil`, `untyped nil`},
    		{`package n5; var _ interface{} = nil`, `nil`, `untyped nil`},
    		{`package n6; import "unsafe"; var _ unsafe.Pointer = nil`, `nil`, `untyped nil`},
    
    		{`package n10; var (x *int; _ = x == nil)`, `nil`, `untyped nil`},
    		{`package n11; var (x func(); _ = x == nil)`, `nil`, `untyped nil`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	if err := pl.foreachPodResourceClaim(pod, func(_ string, claim *resourcev1alpha2.ResourceClaim) {
    		// We store the pointer as returned by the lister. The
    		// assumption is that if a claim gets modified while our code
    		// runs, the cache will store a new pointer, not mutate the
    		// existing object that we point to here.
    		claims = append(claims, claim)
    	}); err != nil {
    		return nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ppc64/ssa.go

    		pp.AddRestSourceConst(1)
    
    		if ppc64.NeedTOCpointer(base.Ctxt) {
    			// When compiling Go into PIC, the function we just
    			// called via pointer might have been implemented in
    			// a separate module and so overwritten the TOC
    			// pointer in R2; reload it.
    			q := s.Prog(ppc64.AMOVD)
    			q.From.Type = obj.TYPE_MEM
    			q.From.Offset = 24
    			q.From.Reg = ppc64.REGSP
    			q.To.Type = obj.TYPE_REG
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/queue/scheduling_queue.go

    // UnschedulablePods holds pods that cannot be scheduled. This data structure
    // is used to implement unschedulablePods.
    type UnschedulablePods struct {
    	// podInfoMap is a map key by a pod's full-name and the value is a pointer to the QueuedPodInfo.
    	podInfoMap map[string]*framework.QueuedPodInfo
    	keyFunc    func(*v1.Pod) string
    	// unschedulableRecorder/gatedRecorder updates the counter when elements of an unschedulablePodsMap
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewrite.go

    func uaddOvf(a, b int64) bool {
    	return uint64(a)+uint64(b) < uint64(a)
    }
    
    // loadLSymOffset simulates reading a word at an offset into a
    // read-only symbol's runtime memory. If it would read a pointer to
    // another symbol, that symbol is returned. Otherwise, it returns nil.
    func loadLSymOffset(lsym *obj.LSym, offset int64) *obj.LSym {
    	if lsym.Type != objabi.SRODATA {
    		return nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	'z': "...",
    }
    
    // demangleType parses:
    //
    //	<type> ::= <builtin-type>
    //	       ::= <function-type>
    //	       ::= <class-enum-type>
    //	       ::= <array-type>
    //	       ::= <pointer-to-member-type>
    //	       ::= <template-param>
    //	       ::= <template-template-param> <template-args>
    //	       ::= <substitution>
    //	       ::= <CV-qualifiers> <type>
    //	       ::= P <type>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    	"k8s.io/apiserver/pkg/storage/value"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	utilflowcontrol "k8s.io/apiserver/pkg/util/flowcontrol"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	"k8s.io/utils/pointer"
    )
    
    func RunTestWatch(ctx context.Context, t *testing.T, store storage.Interface) {
    	testWatch(ctx, t, store, false)
    	testWatch(ctx, t, store, true)
    }
    
    // It tests that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
Back to top