Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 135 for marshaled (0.62 sec)

  1. internal/event/target/amqp.go

    	objectName, err := url.QueryUnescape(eventData.S3.Object.Key)
    	if err != nil {
    		return err
    	}
    	key := eventData.S3.Bucket.Name + "/" + objectName
    
    	data, err := json.Marshal(event.Log{EventName: eventData.EventName, Key: key, Records: []event.Event{eventData}})
    	if err != nil {
    		return err
    	}
    
    	headers := make(amqp091.Table)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. internal/grid/handlers.go

    }
    
    // RoundTripper provides an interface for type roundtrip serialization.
    type RoundTripper interface {
    	msgp.Unmarshaler
    	msgp.Marshaler
    	msgp.Sizer
    
    	comparable
    }
    
    // SingleHandler is a type safe handler for single roundtrip requests.
    type SingleHandler[Req, Resp RoundTripper] struct {
    	id            HandlerID
    	sharedResp    bool
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  3. cni/pkg/plugin/plugin.go

    	}
    
    	log.Debugf("istio-cni: Config is: %+v", conf)
    	// Parse previous result. Remove this if your plugin is not chained.
    	if conf.RawPrevResult != nil {
    		resultBytes, err := json.Marshal(conf.RawPrevResult)
    		if err != nil {
    			return nil, fmt.Errorf("could not serialize prevResult: %v", err)
    		}
    		res, err := version.NewResult(conf.CNIVersion, resultBytes)
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. pkg/config/validation/envoyfilter/envoyfilter_test.go

    						Value:     &structpb.Struct{},
    					},
    				},
    			},
    		}, error: "", warning: "using deprecated filter name"},
    		// Regression test for https://github.com/golang/protobuf/issues/1374
    		{name: "duration marshal", in: &networking.EnvoyFilter{
    			ConfigPatches: []*networking.EnvoyFilter_EnvoyConfigObjectPatch{
    				{
    					ApplyTo: networking.EnvoyFilter_CLUSTER,
    					Patch: &networking.EnvoyFilter_Patch{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  5. pkg/config/mesh/mesh.go

    	}
    }
    
    func extractYamlField(key string, mp map[string]any) (string, error) {
    	proxyConfig := mp[key]
    	if proxyConfig == nil {
    		return "", nil
    	}
    	bytes, err := yaml.Marshal(proxyConfig)
    	if err != nil {
    		return "", err
    	}
    	return string(bytes), nil
    }
    
    func toMap(yamlText string) (map[string]any, error) {
    	mp := map[string]any{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. cmd/api-response.go

    		Key   string
    		Value string
    	}{
    		Key:   k,
    		Value: v,
    	})
    }
    
    type xmlKeyEntry struct {
    	XMLName xxml.Name
    	Value   string `xml:",chardata"`
    }
    
    // MarshalXML - StringMap marshals into XML.
    func (s *Metadata) MarshalXML(e *xxml.Encoder, start xxml.StartElement) error {
    	if s == nil {
    		return nil
    	}
    
    	if len(s.Items) == 0 {
    		return nil
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  7. cmd/admin-handlers-pools.go

    		writeErrorResponseJSON(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    
    	// Rebalance routine is run on the first node of any pool participating in rebalance.
    	pools.StartRebalance()
    
    	b, err := json.Marshal(struct {
    		ID string `json:"id"`
    	}{ID: id})
    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    
    	writeSuccessResponseJSON(w, b)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. pkg/scheduler/extender.go

    	return h.filterVerb != ""
    }
    
    // Helper function to send messages to the extender
    func (h *HTTPExtender) send(action string, args interface{}, result interface{}) error {
    	out, err := json.Marshal(args)
    	if err != nil {
    		return err
    	}
    
    	url := strings.TrimRight(h.extenderURL, "/") + "/" + action
    
    	req, err := http.NewRequest("POST", url, bytes.NewReader(out))
    	if err != nil {
    		return err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. pkg/controller/podgc/gc_controller_test.go

    				t.Fatalf("Pod was pactched but expectedPatchedPod is nil")
    			}
    			if test.expectedPatchedPod != nil {
    				patchedPodBytes := patchAction.GetPatch()
    				originalPod, err := json.Marshal(test.pod)
    				if err != nil {
    					t.Fatalf("Failed to marshal original pod %#v: %v", originalPod, err)
    				}
    				updated, err := strategicpatch.StrategicMergePatch(originalPod, patchedPodBytes, v1.Pod{})
    				if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/pkiutil/pki_helpers.go

    		}
    	}
    
    	certificatePath := pathForCert(pkiPath, name)
    	encoded, err := EncodeCertBundlePEM(certs)
    	if err != nil {
    		return errors.Wrapf(err, "unable to marshal certificate bundle to PEM")
    	}
    	if err := certutil.WriteCert(certificatePath, encoded); err != nil {
    		return errors.Wrapf(err, "unable to write certificate bundle to file %s", certificatePath)
    	}
    
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 25.5K bytes
    - Viewed (0)
Back to top