Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for VALUE1 (0.18 sec)

  1. guava/src/com/google/common/util/concurrent/ClosingFuture.java

           * (but not before this method completes), even if this method throws or the pipeline is
           * cancelled.
           */
          @ParametricNullness
          U apply(DeferredCloser closer, @ParametricNullness V1 value1, @ParametricNullness V2 value2)
              throws Exception;
        }
    
        /**
         * A function that returns a {@link ClosingFuture} when applied to the values of the two futures
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

           * (but not before this method completes), even if this method throws or the pipeline is
           * cancelled.
           */
          @ParametricNullness
          U apply(DeferredCloser closer, @ParametricNullness V1 value1, @ParametricNullness V2 value2)
              throws Exception;
        }
    
        /**
         * A function that returns a {@link ClosingFuture} when applied to the values of the two futures
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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