- Sort Score
- Result 10 results
- Languages All
Results 2561 - 2570 of 2,604 for annotations (0.12 sec)
-
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
import org.lastaflute.web.response.ActionResponse; import org.lastaflute.web.servlet.filter.RequestLoggingFilter; import org.lastaflute.web.util.LaRequestUtil; import org.lastaflute.web.util.LaResponseUtil; import jakarta.annotation.PostConstruct; import jakarta.servlet.FilterConfig; import jakarta.servlet.ServletContext; import jakarta.servlet.http.HttpServletResponse; public class SpnegoAuthenticator implements SsoAuthenticator {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:46 UTC 2024 - 11.2K bytes - Viewed (0) -
guava/src/com/google/common/reflect/TypeResolver.java
import java.util.Arrays; import java.util.LinkedHashSet; import java.util.Map; import java.util.Map.Entry; import java.util.Set; import java.util.concurrent.atomic.AtomicInteger; import javax.annotation.CheckForNull; /** * An object of this class encapsulates type mappings from type variables. Mappings are established * with {@link #where} and types are resolved using {@link #resolveType}. *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 10 19:45:10 UTC 2022 - 24.2K bytes - Viewed (0) -
docs/de/docs/tutorial/path-params.md
* Editor-Unterstützung: Fehlerprüfungen, Codevervollständigung, usw. * Daten "<abbr title="Den String, der von einer HTTP Anfrage kommt, nach Python-Daten konvertieren">parsen</abbr>" * Datenvalidierung * API-Annotationen und automatische Dokumentation Und Sie müssen sie nur einmal deklarieren.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 10.2K bytes - Viewed (0) -
docs/ko/docs/tutorial/path-params.md
/// ## 요약 **FastAPI**를 이용하면 짧고 직관적인 표준 파이썬 타입 선언을 사용하여 다음을 얻을 수 있습니다: * 편집기 지원: 오류 검사, 자동완성 등 * 데이터 "<abbr title="HTTP 요청에서 전달되는 문자열을 파이썬 데이터로 변환">파싱</abbr>" * 데이터 검증 * API 주석(Annotation)과 자동 문서 단 한번의 선언만으로 위 사항들을 모두 선언할 수 있습니다.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 9.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ElevateWordService.java
import org.dbflute.optional.OptionalEntity; import com.orangesignal.csv.CsvConfig; import com.orangesignal.csv.CsvReader; import com.orangesignal.csv.CsvWriter; import jakarta.annotation.Resource; public class ElevateWordService { private static final Logger logger = LogManager.getLogger(ElevateWordService.class); @Resource protected ElevateWordToLabelBhv elevateWordToLabelBhv;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 15.5K bytes - Viewed (0) -
guava/src/com/google/common/hash/BloomFilterStrategies.java
import com.google.common.primitives.Ints; import com.google.common.primitives.Longs; import java.math.RoundingMode; import java.util.Arrays; import java.util.concurrent.atomic.AtomicLongArray; import javax.annotation.CheckForNull; import org.checkerframework.checker.nullness.qual.Nullable; /** * Collections of strategies of generating the k * log(M) bits required for an element to be mapped
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 10 19:45:10 UTC 2022 - 10.7K bytes - Viewed (0) -
common-protos/k8s.io/api/batch/v1/generated.proto
// homologous to each other. // // `Indexed` means that the Pods of a // Job get an associated completion index from 0 to (.spec.completions - 1), // available in the annotation batch.kubernetes.io/job-completion-index. // The Job is considered complete when there is one successfully completed Pod // for each index. // When value is `Indexed`, .spec.completions must be specified and
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 21.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java
import org.dbflute.optional.OptionalEntity; import com.orangesignal.csv.CsvConfig; import com.orangesignal.csv.CsvReader; import com.orangesignal.csv.CsvWriter; import jakarta.annotation.Resource; public class CrawlingInfoService { private static final Logger logger = LogManager.getLogger(CrawlingInfoService.class); @Resource protected CrawlingInfoParamBhv crawlingInfoParamBhv;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 13.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java
import org.codelibs.nekohtml.parsers.DOMParser; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.w3c.dom.Document; import org.w3c.dom.Node; import org.xml.sax.InputSource; import jakarta.annotation.Resource; /** * HtmlTransformer stores WEB data as HTML content. * * @author shinsuke * */ public class HtmlTransformer extends AbstractTransformer {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Oct 24 12:16:00 UTC 2024 - 19.4K bytes - Viewed (0) -
docs/en/docs/tutorial/dependencies/index.md
## Share `Annotated` dependencies In the examples above, you see that there's a tiny bit of **code duplication**. When you need to use the `common_parameters()` dependency, you have to write the whole parameter with the type annotation and `Depends()`: ```Python commons: Annotated[dict, Depends(common_parameters)] ``` But because we are using `Annotated`, we can store that `Annotated` value in a variable and use it in multiple places:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Oct 28 11:18:17 UTC 2024 - 9.2K bytes - Viewed (0)