Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for marshaled (0.16 sec)

  1. src/cmd/go/internal/work/exec.go

    		for _, file := range p.EmbedFiles {
    			embed.Files[file] = filepath.Join(p.Dir, file)
    		}
    		js, err := json.MarshalIndent(&embed, "", "\t")
    		if err != nil {
    			return fmt.Errorf("marshal embedcfg: %v", err)
    		}
    		embedcfg = js
    	}
    
    	// Find PGO profile if needed.
    	var pgoProfile string
    	for _, a1 := range a.Deps {
    		if a1.Mode != "preprocess PGO profile" {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    		var expect string
    		if test.pretty {
    			out, err := json.MarshalIndent(unstructured, "", "  ")
    			if err != nil {
    				t.Fatal(err)
    			}
    			expect = string(out)
    		} else {
    			out, err := json.Marshal(unstructured)
    			if err != nil {
    				t.Fatal(err)
    			}
    			expect = string(out) + "\n"
    		}
    		if expect != body {
    			t.Errorf("%d: body did not match expected:\n%s\n%s", i, body, expect)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  3. cmd/object-handlers_test.go

    		var req *http.Request
    		var completeBytes, actualContent []byte
    		// Complete multipart upload parts.
    		completeUploads := &CompleteMultipartUpload{
    			Parts: testCase.parts,
    		}
    		completeBytes, err = xml.Marshal(completeUploads)
    		if err != nil {
    			t.Fatalf("Error XML encoding of parts: <ERROR> %s.", err)
    		}
    		// Indicating that all parts are uploaded and initiating CompleteMultipartUpload.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    		klog.V(5).Infof("request: %+v", *r)
    		switch r.URL.Path {
    		case "/.testing/keys":
    			w.Header().Set("Content-Type", "application/json")
    			keyBytes, err := json.Marshal(keys)
    			if err != nil {
    				t.Fatalf("unexpected error while marshaling keys: %v", err)
    			}
    			klog.V(5).Infof("%v: returning: %+v", r.URL, string(keyBytes))
    			w.Write(keyBytes)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  5. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    marketing
    
    // markets : 2014-12-11 Dog Beach, LLC
    markets
    
    // marriott : 2014-10-09 Marriott Worldwide Corporation
    marriott
    
    // marshalls : 2015-07-16 The TJX Companies, Inc.
    marshalls
    
    // maserati : 2015-07-31 Fiat Chrysler Automobiles N.V.
    maserati
    
    // mattel : 2015-08-06 Mattel Sites, Inc.
    mattel
    
    // mba : 2015-04-02 Binky Moon, LLC
    mba
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  6. pkg/config/validation/validation.go

    		if mr != nil && mr.Name != "" {
    			cl := &networking.HTTPMatchRequest{}
    			protomarshal.ShallowCopy(cl, mr)
    			cl.Name = ""
    			data = cl
    		}
    	}
    
    	b, err := json.Marshal(data)
    	if err != nil {
    		return err.Error()
    	}
    	return string(b)
    }
    
    func routeName(route any, routen int) string {
    	switch r := route.(type) {
    	case *networking.HTTPRoute:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top