Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for unwrapped (0.22 sec)

  1. src/syscall/zerrors_solaris_amd64.go

    	66:  "object is remote",
    	67:  "link has been severed",
    	68:  "advertise error",
    	69:  "srmount error",
    	70:  "communication error on send",
    	71:  "protocol error",
    	72:  "locked lock was unmapped ",
    	73:  "facility is not active",
    	74:  "multihop attempted",
    	77:  "not a data message",
    	78:  "file name too long",
    	79:  "value too large for defined data type",
    	80:  "name not unique on network",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	var buf [SizeofPtr]byte
    
    	// Leading edge. PEEKTEXT/PEEKDATA don't require aligned
    	// access (PEEKUSER warns that it might), but if we don't
    	// align our reads, we might straddle an unmapped page
    	// boundary and not get the bytes leading up to the page
    	// boundary.
    	n := 0
    	if addr%SizeofPtr != 0 {
    		err = ptracePtr(req, pid, addr-addr%SizeofPtr, unsafe.Pointer(&buf[0]))
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    Note that they are only supported wrapped in a `Provider`.
    
    * Nested values
    +
    Custom types that don’t conform to the other two categories but have their own properties that are inputs or outputs. In effect, the task inputs or outputs are nested inside these custom types.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  4. src/crypto/tls/conn.go

    func (c *Conn) SetWriteDeadline(t time.Time) error {
    	return c.conn.SetWriteDeadline(t)
    }
    
    // NetConn returns the underlying connection that is wrapped by c.
    // Note that writing to or reading from this connection directly will corrupt the
    // TLS session.
    func (c *Conn) NetConn() net.Conn {
    	return c.conn
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. src/encoding/xml/marshal_test.go

    		},
    		UnmarshalOnly: true,
    	},
    	{
    		ExpectXML: `<EmbedInt><MyInt>42</MyInt></EmbedInt>`,
    		Value: &EmbedInt{
    			MyInt: 42,
    		},
    	},
    	// Test outputting CDATA-wrapped text.
    	{
    		ExpectXML: `<CDataTest></CDataTest>`,
    		Value:     &CDataTest{},
    	},
    	{
    		ExpectXML: `<CDataTest><![CDATA[http://example.com/tests/1?foo=1&bar=baz]]></CDataTest>`,
    		Value: &CDataTest{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  6. src/runtime/mprof.go

    )
    
    type buckhashArray [buckHashSize]atomic.UnsafePointer // *bucket
    
    const mProfCycleWrap = uint32(len(memRecord{}.future)) * (2 << 24)
    
    // mProfCycleHolder holds the global heap profile cycle number (wrapped at
    // mProfCycleWrap, stored starting at bit 1), and a flag (stored at bit 0) to
    // indicate whether future[cycle] in all buckets has been queued to flush into
    // the active profile.
    type mProfCycleHolder struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	cpuCFSQuota bool
    
    	// CPUCFSQuotaPeriod sets the CPU CFS quota period value, cpu.cfs_period_us, defaults to 100ms
    	cpuCFSQuotaPeriod metav1.Duration
    
    	// wrapped image puller.
    	imagePuller images.ImageManager
    
    	// gRPC service clients
    	runtimeService internalapi.RuntimeService
    	imageService   internalapi.ImageManagerService
    
    	// The version cache of runtime daemon.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/elf.go

    			// notes that we do not want to be mapped (e.g. the package
    			// list note). The real fix is probably to define new values
    			// for Symbol.Type corresponding to mapped and unmapped notes
    			// and handle them in dodata().
    			Errorf(nil, "sh.Type == SHT_NOTE in elfshbits when linking internally")
    		}
    		sh.Addralign = uint64(sect.Align)
    		sh.Size = sect.Length
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	// should not be modified by the user.
    	ResetFieldsStrategy rest.ResetFieldsStrategy
    
    	// Storage is the interface for the underlying storage for the
    	// resource. It is wrapped into a "DryRunnableStorage" that will
    	// either pass-through or simply dry-run.
    	Storage DryRunnableStorage
    	// StorageVersioner outputs the <group/version/kind> an object will be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Sets.java

       * serializable.
       *
       * <p><b>Java 8+ users and later:</b> Prefer {@link Collections#synchronizedNavigableSet}.
       *
       * @param navigableSet the navigable set to be "wrapped" in a synchronized navigable set.
       * @return a synchronized view of the specified navigable set.
       * @since 13.0
       */
      @GwtIncompatible // NavigableSet
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
Back to top