Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 158 for VALUE1 (0.12 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/options/OptionReaderTest.groovy

            static String staticField
        }
    
        public static class TestClass4 {
            @Option(option = 'stringValue', description = "string value")
            public void setStrings(String value1, String value2) {
            }
        }
    
        public static class TestClass5 {
            @Option(option = 'fileValue', description = "file value")
            public void setStrings(File file) {
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 10 12:45:01 UTC 2023
    - 33.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/inline/inlheur/scoring.go

    }
    
    // SetupScoreAdjustments interprets the value of the -d=inlscoreadj
    // debugging option, if set. The value of this flag is expected to be
    // a series of "/"-separated clauses of the form adj1:value1. Example:
    // -d=inlscoreadj=inLoopAdj=0/passConstToIfAdj=-99
    func SetupScoreAdjustments() {
    	if base.Debug.InlScoreAdj == "" {
    		return
    	}
    	if err := parseScoreAdj(base.Debug.InlScoreAdj); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. 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)
  4. docs/changelogs/changelog_2x.md

        API. Requests made with OkUrlFactory will continue to have a default user
        agent.
     *  New: Guava-like API to create headers:
    
        ```java
        Headers headers = Headers.of(name1, value1, name2, value2, ...).
        ```
    
     *  New: Make the content-type header optional for request bodies.
     *  New: `Response.isSuccessful()` is a convenient API to check response codes.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  5. 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)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    	defer server.Close()
    
    	resp, err := http.Get(server.URL + "/" + prefix + "/" + testGroupVersion.Group + "/" + testGroupVersion.Version + "/namespaces/default/simple/" + itemID + "/connect?param1=value1&param2=value2")
    
    	if err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    	if resp.StatusCode != http.StatusOK {
    		t.Errorf("unexpected response: %#v", resp)
    	}
    	defer resp.Body.Close()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top