Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 541 for Prevent (0.07 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/accesstoken/EditForm.java

         */
        @ValidateTypeFailure
        public Long updatedTime;
    
        /**
         * The version number of the access token for optimistic locking.
         * This field is required to prevent concurrent modification conflicts
         * by ensuring the token hasn't been modified by another process.
         */
        @Required
        @ValidateTypeFailure
        public Integer versionNo;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/badword/EditForm.java

         */
        @ValidateTypeFailure
        public Long updatedTime;
    
        /**
         * The version number of the bad word entry for optimistic locking.
         * This field is required to prevent concurrent modification conflicts
         * by ensuring the entry hasn't been modified by another process.
         */
        @Required
        @ValidateTypeFailure
        public Long versionNo;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/boostdoc/EditForm.java

         */
        @ValidateTypeFailure
        public Long updatedTime;
    
        /**
         * The version number of the boost document configuration for optimistic locking.
         * This field is required to prevent concurrent modification conflicts
         * by ensuring the configuration hasn't been modified by another process.
         */
        @Required
        @ValidateTypeFailure
        public Integer versionNo;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/fileauth/EditForm.java

         */
        @ValidateTypeFailure
        public Long updatedTime;
    
        /**
         * The version number of the file authentication configuration for optimistic locking.
         * This field is required to prevent concurrent modification conflicts
         * by ensuring the configuration hasn't been modified by another process.
         */
        @Required
        @ValidateTypeFailure
        public Integer versionNo;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/EditForm.java

         */
        @ValidateTypeFailure
        public Long updatedTime;
    
        /**
         * The version number of the file configuration for optimistic locking.
         * This field is required to prevent concurrent modification conflicts
         * by ensuring the configuration hasn't been modified by another process.
         */
        @Required
        @ValidateTypeFailure
        public Integer versionNo;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/keymatch/EditForm.java

         */
        @ValidateTypeFailure
        public Long updatedTime;
    
        /**
         * The version number of the key match configuration for optimistic locking.
         * This field is required to prevent concurrent modification conflicts
         * by ensuring the configuration hasn't been modified by another process.
         */
        @Required
        @ValidateTypeFailure
        public Integer versionNo;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/webconfig/EditForm.java

         */
        @ValidateTypeFailure
        public Long updatedTime;
    
        /**
         * The version number of the web configuration for optimistic locking.
         * This field is required to prevent concurrent modification conflicts
         * by ensuring the configuration hasn't been modified by another process.
         */
        @Required
        @ValidateTypeFailure
        public Integer versionNo;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/primitives/Chars.java

        @Override
        public boolean contains(@Nullable Object target) {
          // Overridden to prevent a ton of boxing
          return (target instanceof Character)
              && Chars.indexOf(array, (Character) target, start, end) != -1;
        }
    
        @Override
        public int indexOf(@Nullable Object target) {
          // Overridden to prevent a ton of boxing
          if (target instanceof Character) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 24.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/primitives/Floats.java

        }
    
        @Override
        public boolean contains(@Nullable Object target) {
          // Overridden to prevent a ton of boxing
          return (target instanceof Float) && Floats.indexOf(array, (Float) target, start, end) != -1;
        }
    
        @Override
        public int indexOf(@Nullable Object target) {
          // Overridden to prevent a ton of boxing
          if (target instanceof Float) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25.7K bytes
    - Viewed (0)
  10. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http/CallServerInterceptor.kt

                bufferedRequestBody.close()
              }
            } else {
              exchange.noRequestBody()
              if (!exchange.connection.isMultiplexed) {
                // If the "Expect: 100-continue" expectation wasn't met, prevent the HTTP/1 connection
                // from being reused. Otherwise we're still obligated to transmit the request body to
                // leave the connection in a consistent state.
                exchange.noNewExchangesOnConnection()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Jul 29 22:04:11 UTC 2025
    - 7.8K bytes
    - Viewed (0)
Back to top