Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 79 for Printer (0.3 sec)

  1. 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)
  2. 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)
  3. 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)
  4. pkg/controller/replicaset/replica_set_test.go

    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/controller"
    	. "k8s.io/kubernetes/pkg/controller/testutil"
    	"k8s.io/kubernetes/pkg/securitycontext"
    	"k8s.io/kubernetes/test/utils/ktesting"
    	"k8s.io/utils/pointer"
    )
    
    var (
    	informerSyncTimeout = 30 * time.Second
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/link/internal/loader/loader.go

    	pi := len(l.payloads)
    	pp := l.allocPayload()
    	pp.name = name
    	pp.ver = ver
    	l.payloads = append(l.payloads, pp)
    	l.growExtAttrBitmaps()
    	return pi
    }
    
    // getPayload returns a pointer to the extSymPayload struct for an
    // external symbol if the symbol has a payload. Will panic if the
    // symbol in question is bogus (zero or not an external sym).
    func (l *Loader) getPayload(i Sym) *extSymPayload {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  7. pkg/apis/core/v1/defaults_test.go

    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	"k8s.io/kubernetes/pkg/api/legacyscheme"
    	corev1 "k8s.io/kubernetes/pkg/apis/core/v1"
    	"k8s.io/kubernetes/pkg/features"
    	utilpointer "k8s.io/utils/pointer"
    
    	// ensure types are installed
    	_ "k8s.io/kubernetes/pkg/apis/core/install"
    )
    
    // TestWorkloadDefaults detects changes to defaults within PodTemplateSpec.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  8. src/crypto/x509/x509.go

    // public key is a SubjectPublicKeyInfo structure (see RFC 5280, Section 4.1).
    //
    // It returns a *[rsa.PublicKey], *[dsa.PublicKey], *[ecdsa.PublicKey],
    // [ed25519.PublicKey] (not a pointer), or *[ecdh.PublicKey] (for X25519).
    // More types might be supported in the future.
    //
    // This kind of key is commonly encoded in PEM blocks of type "PUBLIC KEY".
    func ParsePKIXPublicKey(derBytes []byte) (pub any, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  9. pkg/apis/autoscaling/validation/validation_test.go

    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	"k8s.io/kubernetes/pkg/apis/autoscaling"
    	api "k8s.io/kubernetes/pkg/apis/core"
    	"k8s.io/kubernetes/pkg/features"
    	utilpointer "k8s.io/utils/pointer"
    )
    
    func TestValidateScale(t *testing.T) {
    	successCases := []autoscaling.Scale{{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "frontend",
    			Namespace: metav1.NamespaceDefault,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  10. src/cmd/go/go_test.go

    	tg.tempFile("src/p1/p1.go", `//go:binary-only-package
    
    		package p1
    	`)
    	tg.wantStale("p1", "binary-only packages are no longer supported", "p1 is binary-only, and this message should always be printed")
    	tg.runFail("install", "p1")
    	tg.grepStderr("binary-only packages are no longer supported", "did not report attempt to compile binary-only package")
    
    	tg.tempFile("src/p1/p1.go", `
    		package p1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top