Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for Support (0.3 sec)

  1. CHANGELOG/CHANGELOG-1.4.md

    * Turned-off etcd listening on public ports as potentially insecure. Removed ([#35192](https://github.com/kubernetes/kubernetes/pull/35192), [@jszczepkowski](https://github.com/jszczepkowski))
        * experimental support for master replication.
    * Add support for vSphere Cloud Provider when deploying via kubeup on vSphere. ([#31467](https://github.com/kubernetes/kubernetes/pull/31467), [@kerneltime](https://github.com/kerneltime))
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 133.5K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.30.md

    - Graduated HorizontalPodAutoscaler support for per-container metrics to stable. ([#123482](https://github.com/kubernetes/kubernetes/pull/123482), [@sanposhiho](https://github.com/sanposhiho))
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Wed Apr 17 17:56:15 GMT 2024
    - 227.9K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.5.md

    - Improved Federation Support
      - New command: `kubefed`
      - DaemonSets
      - Deployments
      - ConfigMaps
    - Simplified Cluster Deployment
      - Improvements to `kubeadm`
      - HA Setup for Master
    - Node Robustness and Extensibility
      - Windows Server Container support
      - CRI for pluggable container runtimes
      - `kubelet` API supports authentication and authorization
    
    ## Features
    
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 136.4K bytes
    - Viewed (1)
  4. android/guava/src/com/google/common/collect/Maps.java

            // if the iterators don't support remove
            return Sets.removeAllImpl(this, c.iterator());
          }
        }
    
        @Override
        public boolean retainAll(Collection<?> c) {
          try {
            return super.retainAll(checkNotNull(c));
          } catch (UnsupportedOperationException e) {
            // if the iterators don't support remove
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 24 19:38:27 GMT 2024
    - 159.3K bytes
    - Viewed (0)
  5. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    style
    
    // sucks : 2014-12-22 Vox Populi Registry Ltd.
    sucks
    
    // supplies : 2013-12-19 Binky Moon, LLC
    supplies
    
    // supply : 2013-12-19 Binky Moon, LLC
    supply
    
    // support : 2013-10-24 Binky Moon, LLC
    support
    
    // surf : 2014-01-09 Registry Services, LLC
    surf
    
    // surgery : 2014-03-20 Binky Moon, LLC
    surgery
    
    // suzuki : 2014-02-20 SUZUKI MOTOR CORPORATION
    suzuki
    
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
  6. android/guava/src/com/google/common/cache/LocalCache.java

              ReferenceEntry<K, V> next = previous.getNextInAccessQueue();
              return (next == head) ? null : next;
            }
          };
        }
      }
    
      // Cache support
    
      public void cleanUp() {
        for (Segment<?, ?> segment : segments) {
          segment.cleanUp();
        }
      }
    
      // ConcurrentMap methods
    
      @Override
      public boolean isEmpty() {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 144.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/LocalCache.java

              ReferenceEntry<K, V> next = previous.getNextInAccessQueue();
              return (next == head) ? null : next;
            }
          };
        }
      }
    
      // Cache support
    
      public void cleanUp() {
        for (Segment<?, ?> segment : segments) {
          segment.cleanUp();
        }
      }
    
      // ConcurrentMap methods
    
      @Override
      public boolean isEmpty() {
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 150.3K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/CacheTest.kt

        testRequestMethod("GET", true)
      }
    
      @Test
      fun requestMethodHeadIsNotCached() {
        // We could support this but choose not to for implementation simplicity
        testRequestMethod("HEAD", false)
      }
    
      @Test
      fun requestMethodPostIsNotCached() {
        // We could support this but choose not to for implementation simplicity
        testRequestMethod("POST", false)
      }
    
      @Test
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 108.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

         * your current SDK version but also at the oldest version you support. For example, <a
         * href="https://developer.android.com/sdk/api_diff/16/">API Level 16</a> is the first version
         * in which {@code Cursor} is {@code Closeable}. To support older versions, pass a wrapper
         * {@code Closeable} with a method reference like {@code cursor::close}.
         *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 98.5K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * URLs that represent workgroups, servers, shares, or directories require a trailing slash '/'.
     * </td></tr>
     *
     * <tr><td width="20%">
     * <code>smb1://MYGROUP/?SERVER=192.168.10.15</code></td><td>
     * SMB URLs support some query string parameters. In this example
     * the <code>SERVER</code> parameter is used to override the
     * server name service lookup to contact the server 192.168.10.15
     * (presumably known to be a master
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
Back to top