Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,310 for map1 (0.04 sec)

  1. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/BuildOperationMapper.java

            return Collections.emptyList();
        }
    
        /**
         * Maps the descriptor for the given build operation.
         */
        TO createDescriptor(DETAILS details, BuildOperationDescriptor buildOperation, @Nullable OperationIdentifier parent);
    
        /**
         * Maps the start event for the given build operation.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/MapDifference.java

      Map<K, V> entriesOnlyOnRight();
    
      /**
       * Returns an unmodifiable map containing the entries that appear in both maps; that is, the
       * intersection of the two maps.
       */
      Map<K, V> entriesInCommon();
    
      /**
       * Returns an unmodifiable map describing keys that appear in both maps, but with different
       * values.
       */
      Map<K, ValueDifference<V>> entriesDiffering();
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 04 13:28:27 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/AbstractNavigableMap.java

      @CheckForNull
      public K lowerKey(@ParametricNullness K key) {
        return Maps.keyOrNull(lowerEntry(key));
      }
    
      @Override
      @CheckForNull
      public K floorKey(@ParametricNullness K key) {
        return Maps.keyOrNull(floorEntry(key));
      }
    
      @Override
      @CheckForNull
      public K ceilingKey(@ParametricNullness K key) {
        return Maps.keyOrNull(ceilingEntry(key));
      }
    
      @Override
      @CheckForNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 15 18:11:44 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. src/crypto/x509/root_unix.go

    	// to check for SSL certificate files. If set this overrides the system default.
    	// It is a colon separated list of directories.
    	// See https://www.openssl.org/docs/man1.0.2/man1/c_rehash.html.
    	certDirEnv = "SSL_CERT_DIR"
    )
    
    func (c *Certificate) systemVerify(opts *VerifyOptions) (chains [][]*Certificate, err error) {
    	return nil, nil
    }
    
    func loadSystemRoots() (*CertPool, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:54:07 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/SparseImmutableTable.java

          ImmutableSet<R> rowSpace,
          ImmutableSet<C> columnSpace) {
        Map<R, Integer> rowIndex = Maps.indexMap(rowSpace);
        Map<R, Map<C, V>> rows = Maps.newLinkedHashMap();
        for (R row : rowSpace) {
          rows.put(row, new LinkedHashMap<C, V>());
        }
        Map<C, Map<R, V>> columns = Maps.newLinkedHashMap();
        for (C col : columnSpace) {
          columns.put(col, new LinkedHashMap<R, V>());
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/telemetry-selector.yaml

        myapp: ratings-myapp
      name: ratings
      namespace: default
    ---
    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: maps-correctly-no-conflicts
      namespace: default
    spec:
      selector:
        matchLabels:
          app: productpage # Maps to an existing workload without conflicts in the same ns, no error
      metrics:
        - providers:
            - name: prometheus
          overrides:
            - match:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 06:56:06 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/flagdefs_test.go

    import (
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/test/internal/genflags"
    	"internal/testenv"
    	"maps"
    	"os"
    	"testing"
    )
    
    func TestMain(m *testing.M) {
    	cfg.SetGOROOT(testenv.GOROOT(nil), false)
    	os.Exit(m.Run())
    }
    
    func TestPassFlagToTest(t *testing.T) {
    	wantNames := genflags.ShortTestFlags()
    
    	missing := map[string]bool{}
    	for _, name := range wantNames {
    		if !passFlagToTest[name] {
    			missing[name] = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 09 13:37:58 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. schema/naming_test.go

    	}
    
    	ns := NamingStrategy{}
    	for key, value := range maps {
    		if ns.toDBName(key) != value {
    			t.Errorf("%v toName should equal %v, but got %v", key, value, ns.toDBName(key))
    		}
    	}
    
    	maps = map[string]string{
    		"x":                              "X",
    		"user_restrictions":              "UserRestriction",
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue May 30 02:00:48 UTC 2023
    - 7K bytes
    - Viewed (0)
  9. src/unique/handle_test.go

    	// Manually load the value out of the map.
    	typ := abi.TypeOf(value)
    	a, ok := uniqueMaps.Load(typ)
    	if !ok {
    		return
    	}
    	m := a.(*uniqueMap[T])
    	wp, ok := m.Load(value)
    	if !ok {
    		return
    	}
    	if wp.Strong() != nil {
    		t.Errorf("value %v still referenced a handle (or tiny block?) ", value)
    		return
    	}
    	t.Errorf("failed to drain internal maps of %v", value)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:14:07 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. src/internal/types/testdata/fixedbugs/issue50755.go

    // during function argument type inference.
    // M2's constraint is unnamed.
    func f1[K1 comparable, E1 any](m1 map[K1]E1) {}
    
    func f2[M2 map[string]int](m2 M2) {
    	f1(m2)
    }
    
    // The core type of M3 unifies with the type of m1
    // during function argument type inference.
    // M3's constraint is named.
    type Map3 map[string]int
    
    func f3[M3 Map3](m3 M3) {
    	f1(m3)
    }
    
    // The core type of M5 unifies with the core type of M4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 1K bytes
    - Viewed (0)
Back to top