Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for ContainsKey (0.17 sec)

  1. cluster/gce/windows/k8s-node-setup.psm1

    function Create-NodePki {
      Log-Output 'Creating node pki files'
    
      if ($kube_env.ContainsKey('CA_CERT')) {
        $CA_CERT_BUNDLE = ${kube_env}['CA_CERT']
        Write_PkiData "${CA_CERT_BUNDLE}" ${env:CA_FILE_PATH}
      }
      else {
        Log-Output -Fatal 'CA_CERT not present in kube-env'
      }
    
      if ($kube_env.ContainsKey('KUBELET_CERT')) {
        $KUBELET_CERT = ${kube_env}['KUBELET_CERT']
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/MapsTest.java

        assertEquals("2", result.get("second"));
        assertEquals("item :   a short  phrase   ", result.get("Third"));
        assertFalse(result.containsKey("not here"));
    
        // Test loading system properties
        result = Maps.fromProperties(System.getProperties());
        assertTrue(result.containsKey("java.version"));
    
        // Test that defaults work, too.
        testProp = new Properties(System.getProperties());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/CacheBuilder.java

       * access. Access time is reset by all cache read and write operations (including {@code
       * Cache.asMap().get(Object)} and {@code Cache.asMap().put(K, V)}), but not by {@code
       * containsKey(Object)}, nor by operations on the collection-views of {@link Cache#asMap}}. So,
       * for example, iterating through {@code Cache.asMap().entrySet()} does not reset access time for
       * the entries you retrieve.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

        }
    
        private synchronized <T extends OperationDescriptor> T addDescriptor(InternalOperationDescriptor descriptor, T clientDescriptor) {
            if (this.descriptorCache.containsKey(descriptor.getId())) {
                throw new IllegalStateException(String.format("Operation %s already available.", descriptor));
            }
            descriptorCache.put(descriptor.getId(), clientDescriptor);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

            // enrich user properties with project packaging
            Map<String, String> userProperties = new HashMap<>(request.getUserProperties());
            if (!userProperties.containsKey(ProfileActivationContext.PROPERTY_NAME_PACKAGING)) {
                userProperties.put(ProfileActivationContext.PROPERTY_NAME_PACKAGING, model.getPackaging());
            }
            context.setUserProperties(userProperties);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

            context.setSystemProperties(request.getSystemProperties());
            // enrich user properties with project packaging
            Properties userProperties = request.getUserProperties();
            if (!userProperties.containsKey(ProfileActivationContext.PROPERTY_NAME_PACKAGING)) {
                userProperties.put(
                        ProfileActivationContext.PROPERTY_NAME_PACKAGING,
                        request.getFileModel().getPackaging());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
Back to top