Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 4,498 for For (0.03 sec)

  1. CHANGELOG/CHANGELOG-1.14.md

    # Kubernetes v1.14 Release Notes
    
    ## 1.14 What’s New
    
    Support for Windows Nodes is Graduating to Stable ([#116](https://github.com/kubernetes/enhancements/issues/116) )
    
    - Support for Windows Server 2019 for worker nodes and containers
    - Support for out of tree networking with Azure-CNI, OVN-Kubernetes and Flannel
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Mon Jun 14 22:06:39 UTC 2021
    - 271.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/elevateword/AdminElevatewordAction.java

    import jakarta.annotation.Resource;
    
    /**
     * Admin action for Elevate Word management.
     *
     */
    public class AdminElevatewordAction extends FessAdminAction {
    
        /**
         * Default constructor.
         */
        public AdminElevatewordAction() {
            super();
        }
    
        /** Role constant for admin elevate word management access control. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/SearchForm.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.dict.mapping;
    
    import org.lastaflute.web.validation.Required;
    
    /**
     * The search form for Mapping.
     */
    public class SearchForm {
    
        /**
         * Default constructor for SearchForm.
         */
        public SearchForm() {
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1007 bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/relatedcontent/AdminRelatedcontentAction.java

    import jakarta.annotation.Resource;
    
    /**
     * Admin action for Related Content management.
     *
     */
    public class AdminRelatedcontentAction extends FessAdminAction {
    
        /**
         * Default constructor.
         */
        public AdminRelatedcontentAction() {
            super();
        }
    
        /** Role name for admin related content operations */
        public static final String ROLE = "admin-relatedcontent";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16K bytes
    - Viewed (0)
  5. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/DerReader.kt

      /** How many bytes to read before [peekHeader] should return false, or -1L for no limit. */
      private var limit = -1L
    
      /** Type hints scoped to the call stack, manipulated with [withTypeHint]. */
      private val typeHintStack = mutableListOf<Any?>()
    
      /**
       * The type hint for the current object. Used to pick adapters based on other fields, such as
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  6. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RealRoutePlanner.kt

        return connect
      }
    
      /**
       * Returns the connection already attached to the call if it's eligible for a new exchange.
       *
       * If the call's connection exists and is eligible for another exchange, it is returned. If it
       * exists but cannot be used for another exchange, it is closed and this returns null.
       */
      private fun planReuseCallConnection(): ReusePlan? {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed May 28 23:28:25 UTC 2025
    - 12K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/role/AdminRoleAction.java

    import jakarta.annotation.Resource;
    
    /**
     * Admin action for Role management.
     *
     */
    public class AdminRoleAction extends FessAdminAction {
    
        /**
         * Default constructor.
         */
        public AdminRoleAction() {
            super();
        }
    
        /** Role name for admin role operations */
        public static final String ROLE = "admin-role";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/io/ClassTraversalUtil.java

    import org.codelibs.core.zip.ZipInputStreamUtil;
    
    /**
     * Handler for traversing and processing classes.
     *
     * @author koichik
     * @see ClassHandler
     * @see TraversalUtil
     */
    public abstract class ClassTraversalUtil {
    
        /**
         * Do not instantiate.
         */
        protected ClassTraversalUtil() {
        }
    
        /** The file extension for class files. */
        protected static final String CLASS_SUFFIX = ".class";
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/DictionaryManager.java

    public class DictionaryManager {
        private static final Logger logger = LogManager.getLogger(DictionaryManager.class);
    
        /** List of dictionary creators for handling different dictionary types */
        protected List<DictionaryCreator> creatorList = new ArrayList<>();
    
        /**
         * Default constructor for DictionaryManager.
         * Creates a new dictionary manager with an empty creator list.
         */
        public DictionaryManager() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/testing/EqualsTester.java

                Equivalence.equals(), "Object#equals", "Object#hashCode", itemReporter);
        for (List<Object> group : equalityGroups) {
          delegate.addRelatedGroup(group);
        }
        for (int run = 0; run < REPETITIONS; run++) {
          testItems();
          delegate.test();
        }
        return this;
      }
    
      private void testItems() {
        for (Object item : Iterables.concat(equalityGroups)) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 6.1K bytes
    - Viewed (0)
Back to top