Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 119 of 119 for extractors (0.08 sec)

  1. src/main/java/org/codelibs/fess/helper/SearchHelper.java

            });
            return ComponentUtil.getSearchEngineClient()
                    .deleteByQuery(ComponentUtil.getFessConfig().getIndexDocumentUpdateIndex(), queryContext.getQueryBuilder());
        }
    
        /**
         * Extracts and normalizes language preferences from request parameters or browser locale.
         *
         * This method prioritizes explicit language parameters over browser locale settings
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 35.8K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java

            private URI uri;
    
            private String parent;
    
            private String name;
    
            /**
             * Constructs a new FtpInfo from a URL string.
             * This constructor parses the URL and extracts the host, port, parent directory,
             * and file name components.
             *
             * @param s The URL string to parse
             * @param c The character encoding (not currently used)
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 39.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            }
            buf.append(segment);
            return buf.toString();
        }
    
        /**
         * Gets the site path for display purposes.
         * Extracts and formats the site path from document URL.
         *
         * @param docMap the document data map
         * @return the formatted site path
         */
        public Object getSitePath(final Map<String, Object> docMap) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.4K bytes
    - Viewed (0)
  4. cmd/object-api-utils.go

    	newMeta := make(map[string]string, len(metadata))
    	for k, v := range metadata {
    		if slices.Contains(keyNames, k) {
    			continue
    		}
    		newMeta[k] = v
    	}
    	return newMeta
    }
    
    // Extracts etag value from the metadata.
    func extractETag(metadata map[string]string) string {
    	etag, ok := metadata["etag"]
    	if !ok {
    		// md5Sum tag is kept for backward compatibility.
    		etag = metadata["md5Sum"]
    	}
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Jun 25 15:08:54 UTC 2025
    - 37.3K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	EXTRACTPS $0, X2, (BX)                  // 660f3a171300
    	EXTRACTPS $1, X11, (BX)                 // 66440f3a171b01
    	EXTRACTPS $2, X2, (R11)                 // 66410f3a171302
    	EXTRACTPS $3, X11, (R11)                // 66450f3a171b03
    	EXTRACTPS $3, X2, DX                    // 660f3a17d203
    	EXTRACTPS $2, X11, DX                   // 66440f3a17da02
    	EXTRACTPS $1, X2, R11                   // 66410f3a17d301
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Fri Oct 08 21:38:44 UTC 2021
    - 581.9K bytes
    - Viewed (1)
  6. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                            logger.debug("entryDn: {}", entryDn);
                        }
                        consumer.accept(entryDn);
                    }
                }
            }
        }
    
        /**
         * Extracts the role name from an LDAP entry DN.
         *
         * @param entryDn the LDAP entry DN
         * @return the extracted role name, or null if not found
         */
        protected String getSearchRoleName(final String entryDn) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 82K bytes
    - Viewed (0)
  7. src/cmd/cgo/doc.go

    	_cgo_be59f0f25121_Cfunc_puts(void *v)
    	{
    		struct {
    			char* p0;
    			int r;
    			char __pad12[4];
    		} __attribute__((__packed__, __gcc_struct__)) *a = v;
    		a->r = puts((void*)a->p0);
    	}
    
    It extracts the arguments from the pointer to _Cfunc_puts's argument
    frame, invokes the system C function (in this case, puts), stores the
    result in the frame, and returns.
    
    Linking
    
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Dec 11 23:57:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  8. RELEASE.md

    *   Delegate application failure leaves interpreter in valid state.
    *   Add check for correct memory alignment to
        `MemoryAllocation::MemoryAllocation()`.
    *   Extracts `NNAPIDelegateKernel` from nnapi_delegate.cc
    *   Added support for `FusedBatchNormV3` in converter.
    *   A ragged to dense op for directly calculating tensors.
    *   Fix accidental quadratic graph construction cost in graph-mode
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Mon Aug 18 20:54:38 UTC 2025
    - 740K bytes
    - Viewed (2)
  9. lib/fips140/v1.0.0.zip

    "crypto/internal/fips140/hmac" ) func Extract[H fips140.Hash](h func() H, secret, salt []byte) []byte { if len(secret) < 112/8 { fips140.RecordNonApproved() } if salt == nil { salt = make([]byte, h().Size()) } extractor := hmac.New(h, salt) hmac.MarkAsUsedInKDF(extractor) extractor.Write(secret) return extractor.Sum(nil) } func Expand[H fips140.Hash](h func() H, pseudorandomKey []byte, info string, keyLen int) []byte { out := make([]byte, 0, keyLen) expander := hmac.New(h, pseudorandomKey) hmac.MarkAsUsedInKDF(expander)...
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jan 29 15:10:35 UTC 2025
    - 635K bytes
    - Viewed (0)
Back to top