Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 915 for iovecs (0.13 sec)

  1. src/syscall/ztypes_openbsd_386.go

    	Onoff  int32
    	Linger int32
    }
    
    type Iovec struct {
    	Base *byte
    	Len  uint32
    }
    
    type IPMreq struct {
    	Multiaddr [4]byte /* in_addr */
    	Interface [4]byte /* in_addr */
    }
    
    type IPv6Mreq struct {
    	Multiaddr [16]byte /* in6_addr */
    	Interface uint32
    }
    
    type Msghdr struct {
    	Name       *byte
    	Namelen    uint32
    	Iov        *Iovec
    	Iovlen     uint32
    	Control    *byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  2. src/syscall/ztypes_openbsd_arm64.go

    	Onoff  int32
    	Linger int32
    }
    
    type Iovec struct {
    	Base *byte
    	Len  uint64
    }
    
    type IPMreq struct {
    	Multiaddr [4]byte /* in_addr */
    	Interface [4]byte /* in_addr */
    }
    
    type IPv6Mreq struct {
    	Multiaddr [16]byte /* in6_addr */
    	Interface uint32
    }
    
    type Msghdr struct {
    	Name       *byte
    	Namelen    uint32
    	Iov        *Iovec
    	Iovlen     uint32
    	Control    *byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 17:34:54 UTC 2019
    - 6.7K bytes
    - Viewed (0)
  3. src/syscall/ztypes_openbsd_mips64.go

    	Onoff  int32
    	Linger int32
    }
    
    type Iovec struct {
    	Base *byte
    	Len  uint64
    }
    
    type IPMreq struct {
    	Multiaddr [4]byte /* in_addr */
    	Interface [4]byte /* in_addr */
    }
    
    type IPv6Mreq struct {
    	Multiaddr [16]byte /* in6_addr */
    	Interface uint32
    }
    
    type Msghdr struct {
    	Name       *byte
    	Namelen    uint32
    	Iov        *Iovec
    	Iovlen     uint32
    	Control    *byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 08:08:26 UTC 2020
    - 6.7K bytes
    - Viewed (0)
  4. pkg/scheduler/apis/config/scheme/scheme.go

    )
    
    var (
    	// Scheme is the runtime.Scheme to which all kubescheduler api types are registered.
    	Scheme = runtime.NewScheme()
    
    	// Codecs provides access to encoding and decoding for the scheme.
    	Codecs = serializer.NewCodecFactory(Scheme, serializer.EnableStrict)
    )
    
    func init() {
    	AddToScheme(Scheme)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 17 05:27:21 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. test/solitaire.go

    		}
    	}
    	if n != 1 {
    		center = -1 // no single hole
    	}
    }
    
    var moves int // number of times move is called
    
    // move tests if there is a peg at position pos that can jump over another peg
    // in direction dir. If the move is valid, it is executed and move returns true.
    // Otherwise, move returns false.
    func move(pos, dir int) bool {
    	moves++
    	if board[pos] == '●' && board[pos+dir] == '●' && board[pos+2*dir] == '○' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:48:19 UTC 2012
    - 2.9K bytes
    - Viewed (0)
  6. plugin/pkg/admission/podtolerationrestriction/config.go

    	"k8s.io/kubernetes/plugin/pkg/admission/podtolerationrestriction/apis/podtolerationrestriction/validation"
    )
    
    var (
    	scheme = runtime.NewScheme()
    	codecs = serializer.NewCodecFactory(scheme)
    )
    
    func init() {
    	install.Install(scheme)
    }
    
    // LoadConfiguration loads the provided configuration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 08 22:33:50 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  7. src/syscall/ztypes_netbsd_arm.go

    	Onoff  int32
    	Linger int32
    }
    
    type Iovec struct {
    	Base *byte
    	Len  uint32
    }
    
    type IPMreq struct {
    	Multiaddr [4]byte /* in_addr */
    	Interface [4]byte /* in_addr */
    }
    
    type IPv6Mreq struct {
    	Multiaddr [16]byte /* in6_addr */
    	Interface uint32
    }
    
    type Msghdr struct {
    	Name       *byte
    	Namelen    uint32
    	Iov        *Iovec
    	Iovlen     int32
    	Control    *byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/JavaObjectSerializationCodec.kt

    import org.gradle.internal.serialize.graph.ReadContext
    import org.gradle.internal.serialize.graph.WriteContext
    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.decodeBean
    import org.gradle.internal.serialize.graph.decodePreservingIdentity
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/PersistentModuleSource.java

         */
        int getCodecId();
    
        /**
         * A codec will be used by the metadata serializer to encode
         * and decode this module source. Codecs must be stateless as
         * they are shared between several metadata instances.
         *
         * Codecs must implement equals/hashcode.
         */
        interface Codec<T extends PersistentModuleSource> {
            void encode(T moduleSource, Encoder encoder) throws IOException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. pkg/api/testing/conversion_test.go

    	"k8s.io/kubernetes/pkg/api/legacyscheme"
    	api "k8s.io/kubernetes/pkg/apis/core"
    )
    
    func BenchmarkPodConversion(b *testing.B) {
    	apiObjectFuzzer := fuzzer.FuzzerFor(FuzzerFuncs, rand.NewSource(benchmarkSeed), legacyscheme.Codecs)
    	items := make([]api.Pod, 4)
    	for i := range items {
    		apiObjectFuzzer.Fuzz(&items[i])
    		items[i].Spec.InitContainers = nil
    		items[i].Status.InitContainerStatuses = nil
    	}
    
    	// add a fixed item
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 30 06:49:09 UTC 2021
    - 3.9K bytes
    - Viewed (0)
Back to top