Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 58 for Printer (1.41 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/time/time.go

    	minWall      = wallToInternal               // year 1885
    	nsecMask     = 1<<30 - 1
    	nsecShift    = 30
    )
    
    // These helpers for manipulating the wall and monotonic clock readings
    // take pointer receivers, even when they don't modify the time,
    // to make them cheaper to call.
    
    // nsec returns the time's nanoseconds.
    func (t *Time) nsec() int32 {
    	return int32(t.wall & nsecMask)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/lib.go

    	iscgo           bool
    	elfglobalsymndx int
    	interpreter     string
    
    	debug_s bool // backup old value of debug['s']
    	HEADR   int32
    
    	nerrors  int
    	liveness int64 // size of liveness data (funcdata), printed if -v
    
    	// See -strictdups command line flag.
    	checkStrictDups   int // 0=off 1=warning 2=error
    	strictDupMsgCount int
    )
    
    var (
    	Segtext      sym.Segment
    	Segrodata    sym.Segment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  9. src/cmd/dist/test.go

    	runNames    []string // tests to run, exclusive with runRx; empty means all
    	banner      string   // prefix, or "" for none
    	lastHeading string   // last dir heading printed
    
    	short      bool
    	cgoEnabled bool
    	json       bool
    
    	tests        []distTest // use addTest to extend
    	testNames    map[string]bool
    	timeoutScale int
    
    	worklist []*work
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbFile.java

         * <li>all servers registered as members of a NetBIOS workgroup if this
         * resource refers to a workgroup in a <code>smb://workgroup/</code> URL,
         * <li>all browseable shares of a server including printers, IPC
         * services, or disk volumes if this resource is a server URL in the form
         * <code>smb://server/</code>,
         * <li>or <code>null</code> if the resource cannot be resolved.
         * </ul>
         *
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
Back to top