Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for Store2 (0.16 sec)

  1. src/cmd/compile/internal/ssagen/ssa.go

    }
    
    func (s *state) store(t *types.Type, dst, val *ssa.Value) {
    	s.vars[memVar] = s.newValue3A(ssa.OpStore, types.TypeMem, t, dst, val, s.mem())
    }
    
    func (s *state) zero(t *types.Type, dst *ssa.Value) {
    	s.instrument(t, dst, instrumentWrite)
    	store := s.newValue2I(ssa.OpZero, types.TypeMem, t.Size(), dst, s.mem())
    	store.Aux = t
    	s.vars[memVar] = store
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. pkg/registry/core/service/storage/storage_test.go

    	defer server.Terminate(t)
    	defer storage.Store.DestroyFunc()
    	test := genericregistrytest.New(t, storage.Store).AllowCreateOnUpdate()
    	test.TestList(validService())
    }
    
    func TestGenericWatch(t *testing.T) {
    	storage, _, server := newStorage(t, []api.IPFamily{api.IPv4Protocol})
    	defer server.Terminate(t)
    	defer storage.Store.DestroyFunc()
    	test := genericregistrytest.New(t, storage.Store)
    	test.TestWatch(
    		validService(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    	// corresponding ResourceClaim by the control plane after creating the
    	// ResourceClaim.
    	ResourceClaimTemplateName *string
    }
    
    // PodResourceClaimStatus is stored in the PodStatus for each PodResourceClaim
    // which references a ResourceClaimTemplate. It stores the generated name for
    // the corresponding ResourceClaim.
    type PodResourceClaimStatus struct {
    	// Name uniquely identifies this resource claim inside the pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"immutable":  "Immutable, if set to true, ensures that data stored in the ConfigMap cannot be updated (only object metadata can be modified). If not set to true, the field can be modified at any time. Defaulted to nil.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    \n\nSo what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject. That causes the raw JSON to be stored, but not unpacked. The next step is to copy (using pkg/conversion) into the internal struct. The runtime package's DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object. (TODO: In the case where the object is of an unknown type, a...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/core/v1/generated.proto

      // If not provided, the empty value is passed to the associated CSI driver
      // which will determine the default filesystem to apply.
      // +optional
      optional string fsType = 3;
    
      // volumeAttributes stores driver-specific properties that are passed to the CSI
      // driver. Consult your driver's documentation for supported values.
      // +optional
      map<string, string> volumeAttributes = 4;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  7. doc/go_spec.html

    type T int
    func (t T) M() { print(t) }
    
    t := new(T)
    s := S{T: t}
    f := t.M                    // receiver *t is evaluated and stored in f
    g := s.M                    // receiver *(s.T) is evaluated and stored in g
    *t = 42                     // does not affect stored receivers in f and g
    </pre>
    
    <p>
    The type <code>T</code> may be an interface or non-interface type.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__networking.k8s.io__v1_openapi.json

    \n\nSo what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject. That causes the raw JSON to be stored, but not unpacked. The next step is to copy (using pkg/conversion) into the internal struct. The runtime package's DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object. (TODO: In the case where the object is of an unknown type, a...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 324.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/generated.proto

      optional string name = 1;
    
      // Source describes where to find the ResourceClaim.
      optional ClaimSource source = 2;
    }
    
    // PodResourceClaimStatus is stored in the PodStatus for each PodResourceClaim
    // which references a ResourceClaimTemplate. It stores the generated name for
    // the corresponding ResourceClaim.
    message PodResourceClaimStatus {
      // Name uniquely identifies this resource claim inside the pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types.go

    	ResourceClaimTemplateName *string `json:"resourceClaimTemplateName,omitempty" protobuf:"bytes,2,opt,name=resourceClaimTemplateName"`
    }
    
    // PodResourceClaimStatus is stored in the PodStatus for each PodResourceClaim
    // which references a ResourceClaimTemplate. It stores the generated name for
    // the corresponding ResourceClaim.
    type PodResourceClaimStatus struct {
    	// Name uniquely identifies this resource claim inside the pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top