Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,253 for pairOf (0.27 sec)

  1. guava/src/com/google/common/collect/SortedSetMultimap.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A {@code SetMultimap} whose set of values for a given key are kept sorted; that is, they comprise
     * a {@link SortedSet}. It cannot hold duplicate key-value pairs; adding a key-value pair that's
     * already in the multimap has no effect. This interface does not specify the ordering of the
     * multimap's keys. See the {@link Multimap} documentation for information common to all multimaps.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 24 17:47:51 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  2. doc/next/6-stdlib/3-iter.md

    - [All](/pkg/maps#All) returns an iterator over key-value pairs from m.
    - [Keys](/pkg/maps#Keys) returns an iterator over keys in m.
    - [Values](/pkg/maps#Values) returns an iterator over values in m.
    - [Insert](/pkg/maps#Insert) adds the key-value pairs from seq to m.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:13 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. src/maps/maps.go

    	return clone(m).(M)
    }
    
    // Copy copies all key/value pairs in src adding them to dst.
    // When a key in src is already present in dst,
    // the value in dst will be overwritten by the value associated
    // with the key in src.
    func Copy[M1 ~map[K]V, M2 ~map[K]V, K comparable, V any](dst M1, src M2) {
    	for k, v := range src {
    		dst[k] = v
    	}
    }
    
    // DeleteFunc deletes any key/value pairs from m for which del returns true.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 20:35:05 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/LinkedHashMultimap.java

     * associated with a key and then add the key back to the multimap, that key will come last in the
     * key iteration order.
     *
     * <p>The multimap does not store duplicate key-value pairs. Adding a new key-value pair equal to an
     * existing key-value pair has no effect.
     *
     * <p>Keys and values may be null. All optional multimap methods are supported, and all returned
     * views are modifiable.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/LinkedHashMultimap.java

     * associated with a key and then add the key back to the multimap, that key will come last in the
     * key iteration order.
     *
     * <p>The multimap does not store duplicate key-value pairs. Adding a new key-value pair equal to an
     * existing key-value pair has no effect.
     *
     * <p>Keys and values may be null. All optional multimap methods are supported, and all returned
     * views are modifiable.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    			b.ResetTimer()
    
    			do := func(pairs []pair) {
    				for _, pair := range pairs {
    					// Create a validator for the GVK of the valid object.
    					validator, ok := validators[pair.old.GroupVersionKind()]
    					if !ok {
    						b.Log("No validator for GVK", pair.old.GroupVersionKind())
    						continue
    					}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  7. pkg/test/config/mock_config.proto

    // limitations under the License.
    
    syntax = "proto3";
    
    
    // Basic config resource consisting
    // of a set of key-value pairs
    
    package config;
    
    option go_package = ".;config";
    
    message MockConfig {
      string key = 1;
      repeated ConfigPair pairs = 2;
    }
    
    message ConfigPair {
      string key = 1;
      string value = 2;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 23 17:19:38 UTC 2022
    - 861 bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/slog/doc.go

    // Package slog defines an Analyzer that checks for
    // mismatched key-value pairs in log/slog calls.
    //
    // # Analyzer slog
    //
    // slog: check for invalid structured logging calls
    //
    // The slog checker looks for calls to functions from the log/slog
    // package that take alternating key-value pairs. It reports calls
    // where an argument in a key position is neither a string nor a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 830 bytes
    - Viewed (0)
  9. pkg/maps/maps.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package maps
    
    import "maps" // nolint: depguard
    
    // Equal reports whether two maps contain the same key/value pairs.
    // Values are compared using ==.
    func Equal[M1, M2 ~map[K]V, K, V comparable](m1 M1, m2 M2) bool {
    	return maps.Equal(m1, m2)
    }
    
    // Clone returns a copy of the map.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 01 22:48:35 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_quantize.cc

          }
          i++;
        }
      });
    
      // Check for  (Quant (Dequant $in), $qA) "qdq" pairs that couldn't be
      // eliminated at this point.  This only occurs for the pattern
      //      (Quant (Dequant (Quant $in, $qB)), $qA)   $qB != $qA
      // where the  qdq pair denotes a non-trivial requantization of an
      // already quantized value. Since this makes little sense (directly quantizing
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top