Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 915 for iovecs (0.11 sec)

  1. cmd/kubeadm/app/apis/output/scheme/scheme.go

    	"k8s.io/kubernetes/cmd/kubeadm/app/apis/output/v1alpha3"
    )
    
    // Scheme is the runtime.Scheme to which all kubeadm api types are registered.
    var Scheme = runtime.NewScheme()
    
    // Codecs provides access to encoding and decoding for the scheme.
    var Codecs = serializer.NewCodecFactory(Scheme)
    
    func init() {
    	metav1.AddToGroupVersion(Scheme, schema.GroupVersion{Version: "v1"})
    	AddToScheme(Scheme)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:01:20 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/metadata/ProjectMetadataController.kt

        override fun projectPathForKey(key: Path) = key
    
        override fun write(encoder: Encoder, value: LocalComponentGraphResolveState) {
            val (context, codecs) = cacheIO.writerContextFor(encoder)
            context.push(IsolateOwners.OwnerHost(host), codecs.userTypesCodec())
            context.runWriteOperation {
                write(value.id)
                write(value.moduleVersionId)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go

    	return Timeval{Sec: sec, Usec: usec}
    }
    
    func SetKevent(k *Kevent_t, fd, mode, flags int) {
    	k.Ident = uint64(fd)
    	k.Filter = int16(mode)
    	k.Flags = uint16(flags)
    }
    
    func (iov *Iovec) SetLen(length int) {
    	iov.Len = uint64(length)
    }
    
    func (msghdr *Msghdr) SetControllen(length int) {
    	msghdr.Controllen = uint32(length)
    }
    
    func (msghdr *Msghdr) SetIovlen(length int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. src/syscall/ztypes_netbsd_arm64.go

    	Data   [14]int8
    }
    
    type RawSockaddrAny struct {
    	Addr RawSockaddr
    	Pad  [92]int8
    }
    
    type _Socklen uint32
    
    type Linger struct {
    	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 */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/scheme/scheme.go

    	"k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm/v1beta4"
    )
    
    // Scheme is the runtime.Scheme to which all kubeadm api types are registered.
    var Scheme = runtime.NewScheme()
    
    // Codecs provides access to encoding and decoding for the scheme.
    var Codecs = serializer.NewCodecFactory(Scheme)
    
    func init() {
    	metav1.AddToGroupVersion(Scheme, schema.GroupVersion{Version: "v1"})
    	AddToScheme(Scheme)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 26 10:43:47 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. plugin/pkg/admission/eventratelimit/config.go

    	eventratelimitv1alpha1 "k8s.io/kubernetes/plugin/pkg/admission/eventratelimit/apis/eventratelimit/v1alpha1"
    )
    
    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
    - 2K bytes
    - Viewed (0)
  7. pkg/api/testing/fuzzer.go

    			obj := types[c.Rand.Intn(len(types))]
    			c.Fuzz(obj)
    
    			var codec runtime.Codec
    			switch obj.(type) {
    			case *apps.Deployment:
    				codec = apitesting.TestCodec(codecs, appsv1.SchemeGroupVersion)
    			default:
    				codec = apitesting.TestCodec(codecs, v1.SchemeGroupVersion)
    			}
    
    			// Convert the object to raw bytes
    			bytes, err := runtime.Encode(codec, obj)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 19:08:24 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/stdlib-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/stdlib/BindingsBuilderExtensions.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.serialize.codecs.stdlib
    
    import org.gradle.internal.serialize.BaseSerializerFactory.BIG_DECIMAL_SERIALIZER
    import org.gradle.internal.serialize.BaseSerializerFactory.BIG_INTEGER_SERIALIZER
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/test/util.go

    	scheme.AddKnownTypes(externalGV,
    		&v1.Carp{},
    		&v1.CarpList{},
    		&List{},
    	)
    	utilruntime.Must(testapigroup.AddToScheme(scheme))
    	utilruntime.Must(v1.AddToScheme(scheme))
    
    	codecs := apiserializer.NewCodecFactory(scheme)
    	return scheme, codecs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 23 11:06:32 UTC 2018
    - 2.1K bytes
    - Viewed (0)
  10. pkg/kubelet/kubeletconfig/util/codec/codec.go

    	_, codecs, err := scheme.NewSchemeAndCodecs()
    	if err != nil {
    		return nil, err
    	}
    	mediaType := "application/yaml"
    	info, ok := runtime.SerializerInfoForMediaType(codecs.SupportedMediaTypes(), mediaType)
    	if !ok {
    		return nil, fmt.Errorf("unsupported media type %q", mediaType)
    	}
    	return codecs.EncoderForVersion(info.Serializer, targetVersion), nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 21:48:29 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top