Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 536 for dAtA (0.04 sec)

  1. src/encoding/gob/encoder_test.go

    	subdata := make(map[string]any)
    	subdata["bar"] = "baz"
    	data := make(map[string]any)
    	data["foo"] = subdata
    
    	b := new(bytes.Buffer)
    	err := NewEncoder(b).Encode(data)
    	if err != nil {
    		t.Fatal("encode:", err)
    	}
    	var newData map[string]any
    	err = NewDecoder(b).Decode(&newData)
    	if err != nil {
    		t.Fatal("decode:", err)
    	}
    	if !reflect.DeepEqual(data, newData) {
    		t.Fatalf("expected %v got %v", data, newData)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  2. cmd/admin-handlers-idp-ldap.go

    		return
    	}
    
    	// Encode result and send response.
    
    	data, err := json.Marshal(res)
    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    	password := cred.SecretKey
    	econfigData, err := madmin.EncryptData(password, data)
    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 19:58:48 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/first-steps.md

    #### Data "schema"
    
    The term "schema" might also refer to the shape of some data, like a JSON content.
    
    In that case, it would mean the JSON attributes, and data types they have, etc.
    
    #### OpenAPI and JSON Schema
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 12K bytes
    - Viewed (1)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1/customresourcedefinition.go

    	result = &v1.CustomResourceDefinition{}
    	err = c.client.Patch(pt).
    		Resource("customresourcedefinitions").
    		Name(name).
    		SubResource(subresources...).
    		VersionedParams(&opts, scheme.ParameterCodec).
    		Body(data).
    		Do(ctx).
    		Into(result)
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/customresourcedefinition.go

    	result = &v1beta1.CustomResourceDefinition{}
    	err = c.client.Patch(pt).
    		Resource("customresourcedefinitions").
    		Name(name).
    		SubResource(subresources...).
    		VersionedParams(&opts, scheme.ParameterCodec).
    		Body(data).
    		Do(ctx).
    		Into(result)
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. pkg/config/model.go

    	// but all Istio types have an efficient deep copy.
    	js, err := json.Marshal(s)
    	if err != nil {
    		return nil
    	}
    
    	data := reflect.New(reflect.TypeOf(s)).Interface()
    	if err := json.Unmarshal(js, data); err != nil {
    		return nil
    	}
    	data = reflect.ValueOf(data).Elem().Interface()
    	return data
    }
    
    type Status any
    
    // Key function for the configuration objects
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  7. association.go

    			cleanUpDeletedRelations := func(data reflect.Value) {
    				if _, zero := rel.Field.ValueOf(association.DB.Statement.Context, data); !zero {
    					fieldValue := reflect.Indirect(rel.Field.ReflectValueOf(association.DB.Statement.Context, data))
    					primaryValues := make([]interface{}, len(rel.FieldSchema.PrimaryFields))
    
    					switch fieldValue.Kind() {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:49:45 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  8. cmd/erasure-healing.go

    	result.ObjectSize, err = latestMeta.ToObjectInfo(bucket, object, true).GetActualSize()
    	if err != nil {
    		return result, err
    	}
    
    	// Loop to find number of disks with valid data, per-drive
    	// data state and a list of outdated disks on which data needs
    	// to be healed.
    	outDatedDisks := make([]StorageAPI, len(storageDisks))
    	disksToHealCount := 0
    	for i := range availableDisks {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.8K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r89/ProblemProgressEventCrossVersionTest.groovy

                    $documentationConfig
                    .lineInFileLocation("/tmp/foo", 1, 2, 3)
                    $detailsConfig
                    .additionalData(org.gradle.api.problems.internal.GeneralDataSpec, data -> data.put("aKey", "aValue"))
                    .severity(Severity.WARNING)
                    .solution("try this instead")
                }
            """
            when:
    
            def problems = runTask()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. src/runtime/alg.go

    }
    func interequal(p, q unsafe.Pointer) bool {
    	x := *(*iface)(p)
    	y := *(*iface)(q)
    	return x.tab == y.tab && ifaceeq(x.tab, x.data, y.data)
    }
    func nilinterequal(p, q unsafe.Pointer) bool {
    	x := *(*eface)(p)
    	y := *(*eface)(q)
    	return x._type == y._type && efaceeq(x._type, x.data, y.data)
    }
    func efaceeq(t *_type, x, y unsafe.Pointer) bool {
    	if t == nil {
    		return true
    	}
    	eq := t.Equal
    	if eq == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top