Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for KeyValues (0.23 sec)

  1. pkg/test/echo/response.go

    	type keyValue struct {
    		k, v string
    	}
    	var keyValues []keyValue
    	// rawBody is in random order, so get the order back via sorting.
    	for k, v := range r.rawBody {
    		keyValues = append(keyValues, keyValue{k, v})
    	}
    	sort.Slice(keyValues, func(i, j int) bool {
    		return keyValues[i].k < keyValues[j].k
    	})
    	var resp []string
    	for _, kv := range keyValues {
    		resp = append(resp, kv.v)
    	}
    	return resp
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 01 01:05:45 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/envoy/configdump/testdata/ecds/output.yaml

                  filename: /var/lib/istio/data/fe482be5ac123d3d387b0c68b9ed7f8ed65824e7d0bbc88a9a9a71dd8391d96c/d8ef3957b4cf09da9ed25e88bc75ac397ea875d88c5cbed356872f936a86d928.wasm
              environmentVariables:
                keyValues:
                  ISTIO_META_WASM_PLUGIN_RESOURCE_VERSION: "1605"
              runtime: envoy.wasm.runtime.v8
      lastUpdated: "2022-12-08T11:03:53.361Z"
      versionInfo: 2022-12-08T09:07:09Z/10
    - ecdsFilter:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 24 08:16:26 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. src/net/http/header.go

    }
    
    func (w stringWriter) WriteString(s string) (n int, err error) {
    	return w.w.Write([]byte(s))
    }
    
    type keyValues struct {
    	key    string
    	values []string
    }
    
    // headerSorter contains a slice of keyValues sorted by keyValues.key.
    type headerSorter struct {
    	kvs []keyValues
    }
    
    var headerSorterPool = sync.Pool{
    	New: func() any { return new(headerSorter) },
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/envoy/configdump/testdata/ecds/output.json

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 24 08:16:26 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/extension/wasmplugin_test.go

    									},
    									Timeout: &durationpb.Duration{
    										Seconds: 30,
    									},
    								},
    							},
    						},
    					},
    					EnvironmentVariables: &wasmextension.EnvironmentVariables{
    						KeyValues: map[string]string{
    							"ISTIO_META_WASM_PLUGIN_RESOURCE_VERSION": "",
    						},
    					},
    				},
    			},
    		},
    	})
    	networkFilter := protoconv.MessageToAny(&networkwasm.Wasm{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/volumebinding/test_utils.go

    			Name: name,
    		},
    		Spec: v1.PersistentVolumeSpec{
    			StorageClassName: className,
    		},
    	}}
    }
    
    func (pvb pvBuilder) withNodeAffinity(keyValues map[string][]string) pvBuilder {
    	matchExpressions := make([]v1.NodeSelectorRequirement, 0)
    	for key, values := range keyValues {
    		matchExpressions = append(matchExpressions, v1.NodeSelectorRequirement{
    			Key:      key,
    			Operator: v1.NodeSelectorOpIn,
    			Values:   values,
    		})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top