Search Options

Results per page
Sort
Preferred Languages
Advance

Results 2411 - 2420 of 4,618 for alse (0.05 sec)

  1. src/main/java/org/codelibs/fess/app/web/sso/SsoAction.java

                if (e.getCause() == null) {
                    if (logger.isDebugEnabled()) {
                        logger.debug("Metadata response.", e);
                    }
                    saveInfo(e.getMessageCode());
                } else {
                    logger.warn("Failed to process metadata.", e);
                    saveError(e.getMessageCode());
                }
                return redirect(LoginAction.class);
            }
        }
    
        @Execute
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/internal.kt

        // to match legacy i.e. the platform/provider
        //
        // Opting for 2 here and keeping MODERN_TLS in line with secure browsers.
        cipherSuitesAsString.intersect(socketEnabledCipherSuites, CipherSuite.ORDER_BY_NAME)
      } else {
        socketEnabledCipherSuites
      }
    }
    
    internal fun MediaType?.chooseCharset(): Pair<Charset, MediaType?> {
      var charset: Charset = Charsets.UTF_8
      var finalContentType: MediaType? = this
      if (this != null) {
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/model/bucket-extensions.kt

        return if (largestElementSize >= expectedBucketSize) {
            val bucketNumberOfFirstElement = if (largestElementSize % expectedBucketSize == 0)
                largestElementSize / expectedBucketSize
            else
            // Leave at least one bucket for the remaining elements
                min(largestElementSize / expectedBucketSize + 1, expectedBucketNumber - 1)
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Thu Nov 17 05:17:44 UTC 2022
    - 4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/FailureUrlPager.java

        public String errorCount;
    
        public String lastAccessTime;
    
        public void clear() {
            allRecordCount = 0;
            allPageCount = 0;
            existPrePage = false;
            existNextPage = false;
            pageSize = getDefaultPageSize();
            currentPageNumber = getDefaultCurrentPageNumber();
    
            id = null;
            url = null;
            threadName = null;
            errorCount = null;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/dict/synonym/SynonymItem.java

                return true;
            }
            if (obj == null || getClass() != obj.getClass()) {
                return false;
            }
            final SynonymItem other = (SynonymItem) obj;
            if (!ArrayUtil.equalsIgnoreSequence(inputs, other.inputs) || !ArrayUtil.equalsIgnoreSequence(outputs, other.outputs)) {
                return false;
            }
            return true;
        }
    
        @Override
        public String toString() {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/context/AbstractCIFSContext.java

            return false;
        }
    
    
        /**
         * {@inheritDoc}
         * 
         *
         * @see jcifs.CIFSContext#close()
         */
        @Override
        public boolean close () throws CIFSException {
            if ( !this.closed ) {
                Runtime.getRuntime().removeShutdownHook(this);
            }
            return false;
        }
    
    
        /**
         * {@inheritDoc}
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 3.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SecurityDescriptor.java

                }
            } else {
                aces = null;
            }
    
            return bufferIndex - start;
        }
        public String toString() {
            String ret = "SecurityDescriptor:\n";
            if (aces != null) {
                for (int ai = 0; ai < aces.length; ai++) {
                    ret += aces[ai].toString() + "\n";
                }
            } else {
                ret += "NULL";
            }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 3.3K bytes
    - Viewed (0)
  8. cni/test/testdata/expected/YYY-istio-cni.conf

    {
      "cniVersion": "0.3.1",
      "name": "istio-cni",
      "type": "istio-cni",
      "ipam": {},
      "dns": {},
      "plugin_log_level": "debug",
      "cni_agent_run_dir": "/tmp",
      "ambient_enabled": false,
      "exclude_namespaces": [
        "istio-system"
      ]
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Aug 01 18:38:14 UTC 2024
    - 241 bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

                this.andxCommand = (byte) 0xFF;
                this.andx = null;
            }
            else if ( this.andx == null ) {
                this.andxCommand = (byte) 0xFF;
                throw new RuntimeCIFSException("no andx command supplied with response");
            }
            else {
    
                /*
                 * Set bufferIndex according to andxOffset
                 */
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Mon Nov 28 10:56:27 UTC 2022
    - 14.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/RangeSet.java

       * other}.
       *
       * @since 21.0
       */
      default boolean enclosesAll(Iterable<Range<C>> other) {
        for (Range<C> range : other) {
          if (!encloses(range)) {
            return false;
          }
        }
        return true;
      }
    
      /** Returns {@code true} if this range set contains no ranges. */
      boolean isEmpty();
    
      /**
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top