Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 216 for typeData (0.16 sec)

  1. src/go/internal/gccgoimporter/parser.go

    		r := p.scanner.Next()
    		if r == scanner.EOF {
    			p.error("unexpected EOF")
    		}
    		sb.WriteRune(r)
    	}
    	allTypeData := sb.String()
    
    	p.typeData = []string{""} // type 0, unused
    	for _, to := range typeOffsets {
    		p.typeData = append(p.typeData, allTypeData[to.offset:to.offset+to.length])
    	}
    
    	for i := 1; i < exportedp1; i++ {
    		p.parseSavedType(pkg, i, nil)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 23:14:07 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  2. src/net/http/fcgi/child.go

    				req.pw.Close()
    			}
    		}
    		return nil
    	case typeGetValues:
    		values := map[string]string{"FCGI_MPXS_CONNS": "1"}
    		c.conn.writePairs(typeGetValuesResult, 0, values)
    		return nil
    	case typeData:
    		// If the filter role is implemented, read the data stream here.
    		return nil
    	case typeAbortRequest:
    		delete(c.requests, rec.h.Id)
    		c.conn.writeEndRequest(rec.h.Id, 0, statusRequestComplete)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/request/admissionreview_test.go

    			uid:  "123",
    			review: &admissionv1.AdmissionReview{
    				TypeMeta: metav1.TypeMeta{APIVersion: "admission.k8s.io/v1", Kind: "AdmissionReview"},
    			},
    			expectErr: "response was absent",
    		},
    
    		// v1 invalid responses
    		{
    			name: "v1 wrong group",
    			uid:  "123",
    			review: &admissionv1.AdmissionReview{
    				TypeMeta: metav1.TypeMeta{APIVersion: "admission.k8s.io2/v1", Kind: "AdmissionReview"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 16:56:12 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/egressselector/config_test.go

              clientCert: "/etc/srv/kubernetes/pki/konnectivity-server-master/client.crt"
    - name: "etcd"
      connection:
        proxyProtocol: "Direct"
    `,
    			expectedResult: &apiserver.EgressSelectorConfiguration{
    				TypeMeta: metav1.TypeMeta{
    					Kind:       "",
    					APIVersion: "",
    				},
    				EgressSelections: []apiserver.EgressSelection{
    					{
    						Name: "cluster",
    						Connection: apiserver.Connection{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/testing/conversion.go

    }
    
    func convertInternalSimpleToExternalSimple(in *InternalSimple, out *ExternalSimple, s conversion.Scope) error {
    	out.TypeMeta = in.TypeMeta
    	out.TestString = in.TestString
    	return nil
    }
    
    func convertExternalSimpleToInternalSimple(in *ExternalSimple, out *InternalSimple, s conversion.Scope) error {
    	out.TypeMeta = in.TypeMeta
    	out.TestString = in.TestString
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 06 16:07:10 UTC 2020
    - 10.3K bytes
    - Viewed (0)
  6. pkg/kubelet/config/http_test.go

    		desc string
    		pod  *v1.Pod
    	}{
    		{
    			desc: "No version",
    			pod:  &v1.Pod{TypeMeta: metav1.TypeMeta{APIVersion: ""}},
    		},
    		{
    			desc: "Invalid version",
    			pod:  &v1.Pod{TypeMeta: metav1.TypeMeta{APIVersion: "v1betta2"}},
    		},
    		{
    			desc: "Invalid volume name",
    			pod: &v1.Pod{
    				TypeMeta: metav1.TypeMeta{APIVersion: "v1"},
    				Spec: v1.PodSpec{
    					Volumes: []v1.Volume{{Name: "_INVALID_"}},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 14 09:38:23 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  7. pkg/scheduler/apis/config/v1/defaults_test.go

    			Object: &configv1.InterPodAffinityArgs{
    				TypeMeta: metav1.TypeMeta{
    					Kind:       "InterPodAffinityArgs",
    					APIVersion: "kubescheduler.config.k8s.io/v1",
    				},
    				HardPodAffinityWeight: ptr.To[int32](1),
    			}},
    	},
    	{
    		Name: "NodeAffinity",
    		Args: runtime.RawExtension{Object: &configv1.NodeAffinityArgs{
    			TypeMeta: metav1.TypeMeta{
    				Kind:       "NodeAffinityArgs",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:03:04 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/runtime/testing/types.go

    type ExtensionA struct {
    	runtime.TypeMeta `json:",inline"`
    	TestString       string `json:"testString"`
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    type ExtensionB struct {
    	runtime.TypeMeta `json:",inline"`
    	TestString       string `json:"testString"`
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    type ExternalExtensionType struct {
    	runtime.TypeMeta `json:",inline"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 28 03:26:35 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/rbac/v1/zz_generated.deepcopy.go

    	return out
    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *ClusterRole) DeepCopyInto(out *ClusterRole) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	if in.Rules != nil {
    		in, out := &in.Rules, &out.Rules
    		*out = make([]PolicyRule, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 10.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/testing/zz_generated.deepcopy.go

    )
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *EmbeddedTest) DeepCopyInto(out *EmbeddedTest) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	if in.Object != nil {
    		out.Object = in.Object.DeepCopyObject()
    	}
    	if in.EmptyObject != nil {
    		out.EmptyObject = in.EmptyObject.DeepCopyObject()
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 17.8K bytes
    - Viewed (0)
Back to top