Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 58 for Printer (0.24 sec)

  1. 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)
  2. 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)
  3. 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)
  4. pilot/pkg/serviceregistry/serviceregistry_test.go

    	ports []v1.EndpointPort, ips []string, addrType discovery.AddressType,
    ) {
    	esps := make([]discovery.EndpointPort, 0)
    	for _, name := range ports {
    		n := name // Create a stable reference to take the pointer from
    		esps = append(esps, discovery.EndpointPort{
    			Name:        &n.Name,
    			Protocol:    &n.Protocol,
    			Port:        &n.Port,
    			AppProtocol: n.AppProtocol,
    		})
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    === Potential breaking changes
    
    ==== Kotlin DSL scripts emit compilation warnings
    
    Compilation warnings from Kotlin DSL scripts are printed to the console output.
    For example, the use of deprecated APIs in Kotlin DSL will emit warnings each time the script is compiled.
    
    This is a potentially breaking change if you are consuming the console output of Gradle builds.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    				continue
    			}
    
    			if asDec {
    				got.AsDec()
    			}
    
    			for _, format := range []Format{DecimalSI, BinarySI, DecimalExponent} {
    				// ensure we are not simply checking pointer equality by creating a new inf.Dec
    				var copied inf.Dec
    				copied.Add(inf.NewDec(0, inf.Scale(0)), got.AsDec())
    				q := NewDecimalQuantity(copied, format)
    				if c := q.Cmp(got); c != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  7. src/net/http/transport.go

    	go pconn.readLoop()
    	go pconn.writeLoop()
    	return pconn, nil
    }
    
    // persistConnWriter is the io.Writer written to by pc.bw.
    // It accumulates the number of bytes written to the underlying conn,
    // so the retry logic can determine whether any bytes made it across
    // the wire.
    // This is exactly 1 pointer field wide so it can go into an interface
    // without allocation.
    type persistConnWriter struct {
    	pc *persistConn
    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/crypto/tls/conn.go

    		// You might be tempted to simplify this by just passing &outBuf to Put,
    		// but that would make the local copy of the outBuf slice header escape
    		// to the heap, causing an allocation. Instead, we keep around the
    		// pointer to the slice header returned by Get, which is already on the
    		// heap, and overwrite and return that.
    		*outBufPtr = outBuf
    		outBufPool.Put(outBufPtr)
    	}()
    
    	var n int
    	for len(data) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/runtime/framework.go

    // frameworkImpl.
    type extensionPoint struct {
    	// the set of plugins to be configured at this extension point.
    	plugins *config.PluginSet
    	// a pointer to the slice storing plugins implementations that will run at this
    	// extension point.
    	slicePtr interface{}
    }
    
    func (f *frameworkImpl) getExtensionPoints(plugins *config.Plugins) []extensionPoint {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/buildlist.go

    	// nested module back into a parent module).
    	direct map[string]bool
    
    	graphOnce sync.Once // guards writes to (but not reads from) graph
    	graph     atomic.Pointer[cachedGraph]
    }
    
    // A cachedGraph is a non-nil *ModuleGraph, together with any error discovered
    // while loading that graph.
    type cachedGraph struct {
    	mg  *ModuleGraph
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top