Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 112 for VALUE1 (0.38 sec)

  1. pkg/controller/volume/persistentvolume/provision_test.go

    	"k8s.io/component-helpers/storage/volume"
    	api "k8s.io/kubernetes/pkg/apis/core"
    	pvtesting "k8s.io/kubernetes/pkg/controller/volume/persistentvolume/testing"
    )
    
    var class1Parameters = map[string]string{
    	"param1": "value1",
    }
    var class2Parameters = map[string]string{
    	"param2": "value2",
    }
    var deleteReclaimPolicy = v1.PersistentVolumeReclaimDelete
    var modeImmediate = storage.VolumeBindingImmediate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/nodeaffinity/node_affinity_test.go

    									{
    										MatchExpressions: []v1.NodeSelectorRequirement{
    											{
    												Key:      "foo",
    												Operator: v1.NodeSelectorOpIn,
    												Values:   []string{"value1", "value2"},
    											},
    										},
    									},
    								},
    							},
    						},
    					},
    				},
    			},
    			labels: map[string]string{
    				"foo": "bar",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 12:00:10 UTC 2023
    - 38.7K bytes
    - Viewed (0)
  3. src/encoding/gob/encoder_test.go

    	{[]int{1, 2, 3, 4}, nil},
    	// Decode struct containing an interface into a nil.
    	{&Struct0{&NewType0{"value0"}}, nil},
    	// Decode singleton slice of interfaces into a nil.
    	{[]any{"hi", &NewType0{"value1"}, 23}, nil},
    }
    
    func TestDecodeIntoNothing(t *testing.T) {
    	Register(new(NewType0))
    	for i, test := range ignoreTests {
    		b := new(bytes.Buffer)
    		enc := NewEncoder(b)
    		err := enc.Encode(test.in)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    						Code:    504,
    					},
    				},
    			}, true)
    
    			go func(t *testing.T) {
    				err := cacher.watchCache.Add(makeTestPodDetails("pod1", 105, "node1", map[string]string{"label": "value1"}))
    				require.NoError(t, err, "failed adding a pod to the watchCache")
    			}(t)
    			w, err = cacher.Watch(context.Background(), "pods/ns", scenario.opts)
    			require.NoError(t, err, "failed to create watch: %v")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Maps.java

        }
        Entry<K, ? extends V> entry1 = entryItr.next();
        K key1 = entry1.getKey();
        V value1 = entry1.getValue();
        checkEntryNotNull(key1, value1);
        // Do something that works for j2cl, where we can't call getDeclaredClass():
        EnumMap<K, V> enumMap = new EnumMap<>(singletonMap(key1, value1));
        while (entryItr.hasNext()) {
          Entry<K, ? extends V> entry = entryItr.next();
          K key = entry.getKey();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Maps.java

        }
        Entry<K, ? extends V> entry1 = entryItr.next();
        K key1 = entry1.getKey();
        V value1 = entry1.getValue();
        checkEntryNotNull(key1, value1);
        // Do something that works for j2cl, where we can't call getDeclaredClass():
        EnumMap<K, V> enumMap = new EnumMap<>(singletonMap(key1, value1));
        while (entryItr.hasNext()) {
          Entry<K, ? extends V> entry = entryItr.next();
          K key = entry.getKey();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  7. operator/pkg/apis/istio/v1alpha1/values_types.proto

      google.protobuf.BoolValue useMCP = 20;
    
      // Environment variables passed to the Pilot container.
      //
      // Examples:
      // env:
      //   ENV_VAR_1: value1
      //   ENV_VAR_2: value2
      google.protobuf.Struct env = 21;
    
      // K8s affinity to set on the Pilot Pods.
      k8s.io.api.core.v1.Affinity affinity = 22;
    
      // K8s rolling update strategy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    					Type:  field.ErrorTypeForbidden,
    					Field: "root.f.m",
    				},
    			},
    		},
    		{
    			name: "multiple rules with custom reason and field path",
    			obj: map[string]interface{}{
    				"field1": "value1",
    				"field2": "value2",
    				"field3": "value3",
    			},
    			schema: &schema.Structural{
    				Generic: schema.Generic{
    					Type: "object",
    				},
    				Properties: map[string]schema.Structural{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

      }
    
      @Test
      fun getRequestPropertyReturnsLastValue() {
        val request =
          Request.Builder()
            .url(server.url("/"))
            .addHeader("A", "value1")
            .addHeader("A", "value2")
            .build()
        assertThat(request.header("A")).isEqualTo("value2")
      }
    
      @Test
      fun responseHeaders() {
        server.enqueue(
          MockResponse.Builder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  10. src/database/sql/sql_test.go

    	if err != nil {
    		t.Fatal("exec wipe", err)
    	}
    
    	_, err = conn.ExecContext(ctx, "CREATE|keys|v1=string")
    	if err != nil {
    		t.Fatal("exec create", err)
    	}
    	expectedValue := "value1"
    	_, err = conn.ExecContext(ctx, "INSERT|keys|v1=?", expectedValue)
    	if err != nil {
    		t.Fatal("exec insert", err)
    	}
    	rows, err := conn.QueryContext(ctx, "SELECT|keys|v1|")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top