- Sort Score
- Result 10 results
- Languages All
Results 441 - 450 of 989 for readers (0.06 sec)
-
tests/test_tutorial/test_advanced_middleware/test_tutorial001.py
- assert response.status_code == 200, response.text
- client = TestClient(app)
- response = client.get("/", follow_redirects=False)
- assert response.status_code == 307, response.text
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Nov 13 14:26:09 UTC 2022 - 474 bytes - Viewed (0) -
samples/compare/src/test/kotlin/okhttp3/compare/ApacheHttpClientTest.kt
- }
- val recorded = server.takeRequest()
- assertThat(recorded.headers["Accept"]).isEqualTo("text/plain")
- assertThat(recorded.headers["Accept-Encoding"]).isEqualTo("gzip, x-gzip, deflate")
- assertThat(recorded.headers["Connection"]).isEqualTo("keep-alive")
- assertThat(recorded.headers["User-Agent"]!!).startsWith("Apache-HttpClient/")
- }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 2.1K bytes - Viewed (0) -
compat/maven-settings/src/site/apt/index.apt
- The following are generated from this model:
- * {{{./apidocs/index.html}Java sources}} with Reader and Writers for the Xpp3 XML parser, <<<ToAPiV3()>>> and <<<ToApiV4()>>> transformers, and <<<v4>>> package
- for Merger and v4 Reader and Writers for the Xpp3 XML parser,
- * A {{{./settings.html}Descriptor Reference}}
- * An {{{https://maven.apache.org/xsd/settings-1.2.0.xsd}XSD}}
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2K bytes - Viewed (0) -
docs_src/security/tutorial004_py310.py
- async def get_current_user(token: str = Depends(oauth2_scheme)):
- credentials_exception = HTTPException(
- status_code=status.HTTP_401_UNAUTHORIZED,
- detail="Could not validate credentials",
- headers={"WWW-Authenticate": "Bearer"},
- )
- try:
- payload = jwt.decode(token, SECRET_KEY, algorithms=[ALGORITHM])
- username: str = payload.get("sub")
- if username is None:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon May 20 17:37:28 UTC 2024 - 4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java
- }));
- }
- public void importCsv(final Reader reader) {
- @SuppressWarnings("resource")
- final CsvReader csvReader = new CsvReader(reader, new CsvConfig());
- final DateFormat formatter = new SimpleDateFormat(CoreLibConstants.DATE_FORMAT_ISO_8601_EXTEND);
- try {
- List<String> list;
- csvReader.readValues(); // ignore header
- while ((list = csvReader.readValues()) != null) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 13.4K bytes - Viewed (0) -
internal/config/lambda/event/event.go
- type Identity struct {
- Type string `json:"type"`
- PrincipalID string `json:"principalId"`
- AccessKeyID string `json:"accessKeyId"`
- }
- // UserRequest user request headers
- type UserRequest struct {
- URL string `json:"url"`
- Headers http.Header `json:"headers"`
- }
- // GetObjectContext provides the necessary details to perform
- // download of the object, and return back the processed response
- // to the server.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Mar 07 16:12:41 UTC 2023 - 2.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/EmlExtractor.java
- final ExtractData data = new ExtractData(content != null ? content : StringUtil.EMPTY);
- final Enumeration<Header> headers = message.getAllHeaders();
- while (headers.hasMoreElements()) {
- final Header header = headers.nextElement();
- data.putValue(header.getName(), header.getValue());
- }
- putValue(data, "Content-ID", message.getContentID());
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 10.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ElevateWordService.java
- }
- public void importCsv(final Reader reader) {
- final PermissionHelper permissionHelper = ComponentUtil.getPermissionHelper();
- final CsvConfig cfg = new CsvConfig(',', '"', '"');
- cfg.setEscapeDisabled(false);
- cfg.setQuoteDisabled(false);
- @SuppressWarnings("resource")
- final CsvReader csvReader = new CsvReader(reader, cfg);
- try {
- List<String> list;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 15.5K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java
- }
- public interface ReaderSupplier {
- Reader open() throws IOException;
- }
- /**
- * @deprecated use {@link #build(ReaderSupplier)}
- */
- @Deprecated
- public PluginDescriptor build(Reader reader) throws PlexusConfigurationException {
- return build(reader, null);
- }
- /**
- * @deprecated use {@link #build(ReaderSupplier, String)}
- */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 17.6K bytes - Viewed (0) -
docs_src/security/tutorial005_an_py310.py
- else:
- authenticate_value = "Bearer"
- credentials_exception = HTTPException(
- status_code=status.HTTP_401_UNAUTHORIZED,
- detail="Could not validate credentials",
- headers={"WWW-Authenticate": authenticate_value},
- )
- try:
- payload = jwt.decode(token, SECRET_KEY, algorithms=[ALGORITHM])
- username: str = payload.get("sub")
- if username is None:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon May 20 17:37:28 UTC 2024 - 5.2K bytes - Viewed (0)