Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 74 for podindex (0.17 sec)

  1. common-protos/k8s.io/api/apps/v1beta1/generated.proto

      // will fulfill this Template, but have a unique identity from the rest
      // of the StatefulSet. Each pod will be named with the format
      // <statefulsetname>-<podindex>. For example, a pod in a StatefulSet named
      // "web" with index number "3" would be named "web-3".
      optional k8s.io.api.core.v1.PodTemplateSpec template = 3;
    
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 24K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/apps/v1/generated.proto

      // will fulfill this Template, but have a unique identity from the rest
      // of the StatefulSet. Each pod will be named with the format
      // <statefulsetname>-<podindex>. For example, a pod in a StatefulSet named
      // "web" with index number "3" would be named "web-3".
      // The only allowed template.spec.restartPolicy value is "Always".
      optional k8s.io.api.core.v1.PodTemplateSpec template = 3;
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 34.5K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/apps/v1beta2/generated.proto

      // will fulfill this Template, but have a unique identity from the rest
      // of the StatefulSet. Each pod will be named with the format
      // <statefulsetname>-<podindex>. For example, a pod in a StatefulSet named
      // "web" with index number "3" would be named "web-3".
      // The only allowed template.spec.restartPolicy value is "Always".
      optional k8s.io.api.core.v1.PodTemplateSpec template = 3;
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 36.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java

                    searchEngineClient.addMapping(docIndex, "doc", toIndex);
                    if (searchEngineClient.copyDocIndex(fromIndex, toIndex, replaceAliases)
                            && (replaceAliases && !searchEngineClient.updateAlias(toIndex))) {
                        logger.warn("Failed to update aliases for {} and {}", fromIndex, toIndex);
                    }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 14K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ArrayTable.java

        checkNotNull(rowKey);
        Integer rowIndex = rowKeyToIndex.get(rowKey);
        if (rowIndex == null) {
          return emptyMap();
        } else {
          return new Row(rowIndex);
        }
      }
    
      private class Row extends ArrayMap<C, @Nullable V> {
        final int rowIndex;
    
        Row(int rowIndex) {
          super(columnKeyToIndex);
          this.rowIndex = rowIndex;
        }
    
        @Override
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 26.3K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ArrayTable.java

        checkNotNull(rowKey);
        Integer rowIndex = rowKeyToIndex.get(rowKey);
        if (rowIndex == null) {
          return emptyMap();
        } else {
          return new Row(rowIndex);
        }
      }
    
      private class Row extends ArrayMap<C, @Nullable V> {
        final int rowIndex;
    
        Row(int rowIndex) {
          super(columnKeyToIndex);
          this.rowIndex = rowIndex;
        }
    
        @Override
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 26.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/primitives/Chars.java

       * exclusive in descending order.
       *
       * @since 23.1
       */
      public static void sortDescending(char[] array, int fromIndex, int toIndex) {
        checkNotNull(array);
        checkPositionIndexes(fromIndex, toIndex, array.length);
        Arrays.sort(array, fromIndex, toIndex);
        reverse(array, fromIndex, toIndex);
      }
    
      /**
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 23.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/primitives/Doubles.java

       * exclusive. This is equivalent to {@code
       * Collections.reverse(Doubles.asList(array).subList(fromIndex, toIndex))}, but is likely to be
       * more efficient.
       *
       * @throws IndexOutOfBoundsException if {@code fromIndex < 0}, {@code toIndex > array.length}, or
       *     {@code toIndex > fromIndex}
       * @since 23.1
       */
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 29 15:43:06 GMT 2024
    - 27.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/primitives/Ints.java

       * exclusive in descending order.
       *
       * @since 23.1
       */
      public static void sortDescending(int[] array, int fromIndex, int toIndex) {
        checkNotNull(array);
        checkPositionIndexes(fromIndex, toIndex, array.length);
        Arrays.sort(array, fromIndex, toIndex);
        reverse(array, fromIndex, toIndex);
      }
    
      /**
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 29.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/primitives/Bytes.java

        }
    
        @Override
        public List<Byte> subList(int fromIndex, int toIndex) {
          int size = size();
          checkPositionIndexes(fromIndex, toIndex, size);
          if (fromIndex == toIndex) {
            return Collections.emptyList();
          }
          return new ByteArrayAsList(array, start + fromIndex, start + toIndex);
        }
    
        @Override
        public boolean equals(@CheckForNull Object object) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 14.9K bytes
    - Viewed (0)
Back to top