Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for toKey (0.04 sec)

  1. platforms/jvm/toolchains-jvm-shared/src/test/groovy/org/gradle/jvm/toolchain/internal/DefaultToolchainSpecTest.groovy

            then:
            Matchers.strictlyEquals(spec11.toKey(), spec11.toKey())
            Matchers.strictlyEquals(spec11.toKey(), spec11Impl1.toKey())
            Matchers.strictlyEquals(spec11Vendor1.toKey(), spec11Vendor1.toKey())
            !Matchers.strictlyEquals(spec11Vendor1.toKey(), spec11Vendor2.toKey())
            !Matchers.strictlyEquals(spec11.toKey(), spec12.toKey())
            Matchers.strictlyEquals(spec11Impl1.toKey(), spec11Impl1.toKey())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

        return headMap(toKey, false);
      }
    
      /**
       * This method returns a {@code ImmutableSortedMap}, consisting of the entries whose keys are less
       * than (or equal to, if {@code inclusive}) {@code toKey}.
       *
       * <p>The {@link SortedMap#headMap} documentation states that a submap of a submap throws an
       * {@link IllegalArgumentException} if passed a {@code toKey} greater than an earlier {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Maps.java

        }
    
        @Override
        public SortedMap<K, V> headMap(@ParametricNullness K toKey) {
          return headMap(toKey, false);
        }
    
        @Override
        public NavigableMap<K, V> headMap(@ParametricNullness K toKey, boolean inclusive) {
          return Maps.unmodifiableNavigableMap(delegate.headMap(toKey, inclusive));
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Maps.java

        }
    
        @Override
        public SortedMap<K, V> headMap(@ParametricNullness K toKey) {
          return headMap(toKey, false);
        }
    
        @Override
        public NavigableMap<K, V> headMap(@ParametricNullness K toKey, boolean inclusive) {
          return Maps.unmodifiableNavigableMap(delegate.headMap(toKey, inclusive));
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  5. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/DefaultToolchainSpec.java

        public DefaultToolchainSpec() {
            getVendor().convention(getConventionVendor());
            getImplementation().convention(getConventionImplementation());
        }
        @Override
        public JavaToolchainSpecInternal.Key toKey() {
            return new Key(getLanguageVersion().getOrNull(), getVendor().getOrNull(), getImplementation().getOrNull());
        }
    
        @Override
        public boolean isConfigured() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 18:07:00 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/SpecificInstallationToolchainSpec.java

            return objectFactory.newInstance(SpecificInstallationToolchainSpec.class, JavaExecutableUtils.resolveJavaHomeOfExecutable(executable));
        }
    
        @Override
        public Key toKey() {
            return new Key(javaHome);
        }
    
        @Override
        public boolean isConfigured() {
            return true;
        }
    
        @Override
        public boolean isValid() {
            return true;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 18:07:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/echotest/filters_test.go

    							fromKey := from.Config().ClusterLocalFQDN()
    							toKey := to.Config().ClusterLocalFQDN()
    							if testTopology[fromKey] == nil {
    								testTopology[fromKey] = map[string]int{}
    							}
    							testTopology[fromKey][toKey]++
    						})
    				},
    				expect: map[string]map[string]int{
    					"a.echo1.svc.cluster.local": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/conversion.go

    					res[fromKey] = map[Reference]*Grants{}
    				}
    				if _, f := res[fromKey][toKey]; !f {
    					res[fromKey][toKey] = &Grants{
    						AllowedNames: sets.New[string](),
    					}
    				}
    				if to.Name != nil {
    					res[fromKey][toKey].AllowedNames.Insert(string(*to.Name))
    				} else {
    					res[fromKey][toKey].AllowAll = true
    				}
    			}
    		}
    	}
    	return res
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top