Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 337 for iovecs (0.16 sec)

  1. src/syscall/syscall_solaris.go

    //sysnb	socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) = libsocket.__xnet_socketpair
    //sys	write(fd int, p []byte) (n int, err error)
    //sys	writev(fd int, iovecs []Iovec) (n uintptr, err error)
    //sys	getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error) = libsocket.__xnet_getsockopt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/serialize/Codecs.kt

    import org.gradle.internal.serialize.codecs.core.FileValueSnapshotCodec
    import org.gradle.internal.serialize.codecs.core.FixedValueReplacingProviderCodec
    import org.gradle.internal.serialize.codecs.core.FlowProvidersCodec
    import org.gradle.internal.serialize.codecs.core.IntegerValueSnapshotCodec
    import org.gradle.internal.serialize.codecs.core.IntersectionPatternSetCodec
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheIO.kt

            writeContextFor(
                encoder,
                null,
                codecs
            ) to codecs
    
        internal
        fun <R> withReadContextFor(
            inputStream: InputStream,
            readOperation: suspend DefaultReadContext.(Codecs) -> R
        ): R =
            readerContextFor(inputStream).let { (context, codecs) ->
                context.use {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/componentconfigs/fakeconfig_test.go

    	// Save the real values
    	realKnown := known
    	realScheme := Scheme
    	realCodecs := Codecs
    
    	// Replace the context with the fake context
    	known = fakeKnown
    	Scheme = kubeadmscheme.Scheme
    	Codecs = kubeadmscheme.Codecs
    
    	// Upon function exit, restore the real values
    	defer func() {
    		known = realKnown
    		Scheme = realScheme
    		Codecs = realCodecs
    	}()
    
    	// Call f in the fake context
    	f()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:36:00 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  5. src/syscall/zsysnum_freebsd_386.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)
  6. pkg/api/testing/serialization_test.go

    	}
    
    	rs := &apps.ReplicaSet{}
    	rc := &api.ReplicationController{}
    	extGroup := schema.GroupVersion{Group: "apps", Version: "v1"}
    	extCodec := legacyscheme.Codecs.LegacyCodec(extGroup)
    
    	defaultGroup := schema.GroupVersion{Group: "", Version: "v1"}
    	defaultCodec := legacyscheme.Codecs.LegacyCodec(defaultGroup)
    
    	fuzzInternalObject(t, schema.GroupVersion{Group: "apps", Version: runtime.APIVersionInternal}, rs, rand.Int63())
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  7. src/syscall/zsysnum_freebsd_amd64.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)
  8. 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)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go

    	SYS_GETSOCKOPT               = 118 // { int getsockopt(int s, int level, int name, caddr_t val, int *avalsize); }
    	SYS_READV                    = 120 // { int readv(int fd, struct iovec *iovp, u_int iovcnt); }
    	SYS_WRITEV                   = 121 // { int writev(int fd, struct iovec *iovp, u_int iovcnt); }
    	SYS_SETTIMEOFDAY             = 122 // { int settimeofday(struct timeval *tv, struct timezone *tzp); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go

    	SYS_GETSOCKOPT               = 118 // { int getsockopt(int s, int level, int name, caddr_t val, int *avalsize); }
    	SYS_READV                    = 120 // { int readv(int fd, struct iovec *iovp, u_int iovcnt); }
    	SYS_WRITEV                   = 121 // { int writev(int fd, struct iovec *iovp, u_int iovcnt); }
    	SYS_SETTIMEOFDAY             = 122 // { int settimeofday(struct timeval *tv, struct timezone *tzp); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
Back to top