Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 1,089 for given (0.01 sec)

  1. src/main/java/jcifs/smb1/netbios/NbtAddress.java

         *
         * @return the local host name
         */
        public static Name getLocalName() {
            return localhost.hostName;
        }
    
        /**
         * Determines the address of a host given it's host name. The name can be a NetBIOS name like
         * "freto" or an IP address like "192.168.1.15". It cannot be a DNS name;
         * the analygous {@link jcifs.smb1.UniAddress} or {@link java.net.InetAddress}
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 31.7K bytes
    - Viewed (0)
  2. cmd/object-api-multipart_test.go

    		},
    		// listMultipartResults - 23.
    		// Testing for listing of 3 uploadID's for a given object
    		// setting `prefix` to be "orange".
    		// Will be used to list on bucketNames[1].
    		{
    			MaxUploads:  10,
    			IsTruncated: false,
    			Prefix:      "orange",
    		},
    		// listMultipartResults - 24.
    		// Testing for listing of 3 uploadID's for a given object.
    		// setting `prefix` to be "Asia".
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 89.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/suggest/util/SuggestUtil.java

        private static final int ID_MAX_LENGTH = 445;
    
        /**
         * Private constructor to prevent instantiation.
         */
        private SuggestUtil() {
        }
    
        /**
         * Creates a unique identifier for the given text by encoding it to a Base64 string.
         * If the encoded string exceeds the maximum allowed length, it truncates the string
         * to the specified maximum length.
         *
         * @param text the input text to be encoded
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Mon Sep 01 13:33:03 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/suggest/settings/AnalyzerSettings.java

         */
        public String getAnalyzerSettingsIndexName() {
            return analyzerSettingsIndexName;
        }
    
        /**
         * Returns the name of the reading analyzer for a given field and language.
         * @param field The field name.
         * @param lang The language.
         * @return The reading analyzer name.
         */
        public String getReadingAnalyzerName(final String field, final String lang) {
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 26.5K bytes
    - Viewed (0)
  5. src/test/java/jcifs/pac/kerberos/KerberosAuthDataTest.java

         * Expects an empty list of authorizations.
         * @throws PACDecodingException should not be thrown
         */
        @Test
        void testParseUnknownAuthType() throws PACDecodingException {
            // GIVEN an unknown auth type
            int unknownAuthType = -1;
            byte[] emptyToken = new byte[0];
    
            // WHEN parsing the auth data
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  6. CITATION.cff

    # Visit https://bit.ly/cffinit to generate yours today!
    
    cff-version: 1.2.0
    title: FastAPI
    message: >-
      If you use this software, please cite it using the
      metadata from this file.
    type: software
    authors:
      - given-names: Sebastián
        family-names: Ramírez
        email: ******@****.***
    identifiers:
    repository-code: 'https://github.com/fastapi/fastapi'
    url: 'https://fastapi.tiangolo.com'
    abstract: >-
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Jul 29 23:35:07 UTC 2024
    - 614 bytes
    - Viewed (0)
  7. cmd/admin-heal-ops.go

    		if apiErr.Code != "" {
    			return respBytes, apiErr, ""
    		}
    	} else {
    		oh, exists := ahs.getHealSequence(pathJoin(h.bucket, h.object))
    		if exists && !oh.hasEnded() {
    			errMsg = "Heal is already running on the given path " +
    				"(use force-start option to stop and start afresh). " +
    				fmt.Sprintf("The heal was started by IP %s at %s, token is %s",
    					h.clientAddress, h.startTime.Format(http.TimeFormat), h.clientToken)
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/rule/impl/SitemapsRule.java

    import org.codelibs.fess.crawler.exception.CrawlingAccessException;
    import org.codelibs.fess.crawler.helper.SitemapsHelper;
    
    /**
     * SitemapsRule is a rule implementation that extends RegexRule to determine if a given response data
     * represents a valid sitemap. It uses a SitemapsHelper to validate the response body as an InputStream.
     * The rule checks if the URL matches the defined regex pattern and then validates the content as a sitemap.
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/ProcessHelper.java

        }
    
        /**
         * Sends a command to the process associated with the given session ID.
         *
         * @param sessionId unique identifier for the process session
         * @param command the command to send to the process
         * @throws JobNotFoundException if no process is found for the given session ID
         * @throws JobProcessingException if there's an error sending the command
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/ntlmssp/av/AvPairs.java

         * @return first occurance of the given type
         */
        public static AvPair get(final List<AvPair> pairs, final int type) {
            for (final AvPair p : pairs) {
                if (p.getType() == type) {
                    return p;
                }
            }
            return null;
        }
    
        /**
         * Remove all occurances of the given type
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.3K bytes
    - Viewed (0)
Back to top