Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for kids (0.04 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java

            }
        }
    
        /**
         * Returns whether SIDs (Security Identifiers) should be resolved.
         * @return true if SIDs should be resolved, false otherwise
         */
        public boolean isResolveSids() {
            return resolveSids;
        }
    
        /**
         * Sets whether SIDs (Security Identifiers) should be resolved.
         * @param resolveSids true to resolve SIDs, false otherwise
         */
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Sep 18 09:30:45 UTC 2025
    - 22.5K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java

        }
    
        /**
         * Returns whether SIDs (Security Identifiers) should be resolved.
         *
         * @return true if SIDs should be resolved, false otherwise
         */
        public boolean isResolveSids() {
            return resolveSids;
        }
    
        /**
         * Sets whether SIDs (Security Identifiers) should be resolved.
         *
         * @param resolveSids true to resolve SIDs, false otherwise
         */
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Sep 18 09:30:45 UTC 2025
    - 23K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/filter/UrlFilterTest.java

            assertTrue(urlFilter.match("https://first.com/page"));
            assertTrue(urlFilter.match("https://second.com/page"));
        }
    
        /**
         * Test multiple initializations with different session IDs
         */
        public void test_multipleInit_differentSessionIds() {
            // First session
            urlFilter.init("session-001");
            urlFilter.addInclude("https://first.com/.*");
    
            // Second session
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Wed Sep 03 14:42:53 UTC 2025
    - 19K bytes
    - Viewed (0)
  4. cmd/erasure-multipart.go

    		readDirFn(pathJoin(drivePath, minioMetaMultipartBucket, shaDir), func(uploadIDDir string, typ os.FileMode) error {
    			uploadIDPath := pathJoin(shaDir, uploadIDDir)
    			var modTime time.Time
    			// Upload IDs are of the form base64_url(<UUID>x<UnixNano>), we can extract the time from the UUID.
    			if b64, err := base64.RawURLEncoding.DecodeString(uploadIDDir); err == nil {
    				if split := strings.Split(string(b64), "x"); len(split) == 2 {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sun Sep 07 16:13:09 UTC 2025
    - 47.3K bytes
    - Viewed (0)
  5. docs/en/docs/release-notes.md

    * Fix OpenAPI/JSON Schema generation for two functions with the same name (in different modules) with the same composite bodies.
        * Composite bodies' IDs are now based on path, not only on route name, as the auto-generated name uses the function names, that can be duplicated in different modules.
        * The same new ID generation applies to response models.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Sep 05 12:48:45 UTC 2025
    - 544.1K bytes
    - Viewed (0)
Back to top