Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 915 for iovecs (0.24 sec)

  1. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/package-info.java

     *  <li>or as composite/multi-type codecs, backed by a set of bindings, via {@link org.gradle.internal.serialize.graph.codecs.Bindings#build()} - see below for more on Bindings.
     *  </ul>
     *
     * <h3>Building Composite Codecs using Bindings</h3>
     * <p>In order to build composite codecs that can handle multiple types of objects, you use {@link org.gradle.internal.serialize.graph.codecs.Bindings bindings}.</p>
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. src/syscall/syscall_aix_ppc64.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package syscall
    
    func (iov *Iovec) SetLen(length int) {
    	iov.Len = uint64(length)
    }
    
    func (msghdr *Msghdr) SetControllen(length int) {
    	msghdr.Controllen = uint32(length)
    }
    
    func (cmsg *Cmsghdr) SetLen(length int) {
    	cmsg.Len = uint32(length)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 10 04:29:55 UTC 2018
    - 405 bytes
    - Viewed (0)
  3. src/syscall/zsysnum_freebsd_arm.go

    	SYS_GETSOCKOPT               = 118 // { int getsockopt(int s, int level, int name, \
    	SYS_READV                    = 120 // { int readv(int fd, struct iovec *iovp, \
    	SYS_WRITEV                   = 121 // { int writev(int fd, struct iovec *iovp, \
    	SYS_SETTIMEOFDAY             = 122 // { int settimeofday(struct timeval *tv, \
    	SYS_FCHOWN                   = 123 // { int fchown(int fd, int uid, int gid); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  4. src/runtime/os_wasip1.go

    type clockid = uint32
    
    const (
    	clockRealtime  clockid = 0
    	clockMonotonic clockid = 1
    )
    
    // https://github.com/WebAssembly/WASI/blob/a2b96e81c0586125cc4dc79a5be0b78d9a059925/legacy/preview1/docs.md#-iovec-record
    type iovec struct {
    	buf    uintptr32
    	bufLen size
    }
    
    //go:wasmimport wasi_snapshot_preview1 proc_exit
    func exit(code int32)
    
    //go:wasmimport wasi_snapshot_preview1 args_get
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 7K bytes
    - Viewed (0)
  5. src/syscall/syscall_netbsd_arm.go

    	return Timeval{Sec: sec, Usec: int32(usec)}
    }
    
    func SetKevent(k *Kevent_t, fd, mode, flags int) {
    	k.Ident = uint32(fd)
    	k.Filter = uint32(mode)
    	k.Flags = uint32(flags)
    }
    
    func (iov *Iovec) SetLen(length int) {
    	iov.Len = uint32(length)
    }
    
    func (msghdr *Msghdr) SetControllen(length int) {
    	msghdr.Controllen = uint32(length)
    }
    
    func (cmsg *Cmsghdr) SetLen(length int) {
    	cmsg.Len = uint32(length)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 12 13:10:54 UTC 2016
    - 716 bytes
    - Viewed (0)
  6. src/syscall/syscall_openbsd_386.go

    	return Timeval{Sec: sec, Usec: int32(usec)}
    }
    
    func SetKevent(k *Kevent_t, fd, mode, flags int) {
    	k.Ident = uint32(fd)
    	k.Filter = int16(mode)
    	k.Flags = uint16(flags)
    }
    
    func (iov *Iovec) SetLen(length int) {
    	iov.Len = uint32(length)
    }
    
    func (msghdr *Msghdr) SetControllen(length int) {
    	msghdr.Controllen = uint32(length)
    }
    
    func (cmsg *Cmsghdr) SetLen(length int) {
    	cmsg.Len = uint32(length)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 12 13:10:54 UTC 2016
    - 715 bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/marshal.go

    	if !ok {
    		return []byte{}, errors.Errorf("unsupported media type %q", mediaType)
    	}
    
    	encoder := codecs.EncoderForVersion(info.Serializer, gv)
    	return runtime.Encode(encoder, obj)
    }
    
    // UniversalUnmarshal unmarshals YAML or JSON into a runtime.Object using the universal deserializer.
    func UniversalUnmarshal(buffer []byte) (runtime.Object, error) {
    	codecs := clientsetscheme.Codecs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/stdlib-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/stdlib/EnumCodec.kt

     * limitations under the License.
     */
    
    package org.gradle.internal.serialize.codecs.stdlib
    
    import org.gradle.internal.serialize.graph.codecs.Decoding
    import org.gradle.internal.serialize.graph.codecs.Encoding
    import org.gradle.internal.serialize.graph.codecs.EncodingProducer
    import org.gradle.internal.serialize.graph.ReadContext
    import org.gradle.internal.serialize.graph.WriteContext
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/IntermediateModelController.kt

            val (context, codecs) = cacheIO.writerContextFor(encoder)
            context.push(IsolateOwners.OwnerHost(host), codecs.userTypesCodec())
            context.runWriteOperation {
                write(value)
            }
        }
    
        override fun read(decoder: Decoder): IntermediateModel {
            val (context, codecs) = cacheIO.readerContextFor(decoder)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. pkg/api/testing/copy_test.go

    	}
    
    	prefuzzData := &bytes.Buffer{}
    	if err := legacyscheme.Codecs.LegacyCodec(kind.GroupVersion()).Encode(item, prefuzzData); err != nil {
    		t.Errorf("Could not encode a %v: %s", kind, err)
    		return
    	}
    
    	// Refuzz the copy, which should have no effect on the original
    	f.Fuzz(itemCopy)
    
    	postfuzzData := &bytes.Buffer{}
    	if err := legacyscheme.Codecs.LegacyCodec(kind.GroupVersion()).Encode(item, postfuzzData); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:45:31 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top