Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for VALUE1 (0.09 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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