- Sort Score
- Result 10 results
- Languages All
Results 1251 - 1260 of 1,584 for Requests (0.04 sec)
-
src/main/java/jcifs/internal/smb1/com/SmbComSetInformation.java
* @author mbechler */ public class SmbComSetInformation extends ServerMessageBlock { private final int fileAttributes; private final long lastWriteTime; /** * Constructs a set information request to modify file attributes and modification time. * * @param config the configuration to use * @param filename the name of the file to modify * @param attrs the file attributes to set
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3K bytes - Viewed (0) -
docs/sts/client_grants/__init__.py
def parse_grants_response(data): """ Parser for AssumeRoleWithClientGrants response :param data: Response data for AssumeRoleWithClientGrants request :return: dict """ root = STSElement.fromstring( 'AssumeRoleWithClientGrantsResponse', data) result = root.find('AssumeRoleWithClientGrantsResult')
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Apr 23 18:58:53 UTC 2021 - 4.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/ServerMessageBlockTest.java
} } @Nested @DisplayName("Request Properties Tests") class RequestPropertiesTests { @BeforeEach void setup() { testBlock = new TestServerMessageBlock(mockConfig); } @Test @DisplayName("Test default request properties") void testDefaultRequestProperties() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 36.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolver.java
/** */ // Just hide the one method we want behind the RepositorySystem interface. @Deprecated public interface ArtifactResolver { ArtifactResolutionResult resolve(ArtifactResolutionRequest request); // The rest is deprecated // USED BY MAVEN ASSEMBLY PLUGIN 2.2-beta-2 @Deprecated String ROLE = ArtifactResolver.class.getName(); // USED BY SUREFIRE, DEPENDENCY PLUGIN @Deprecated
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionRangeResolverRequest.java
import org.apache.maven.api.annotations.Nullable; import static java.util.Objects.requireNonNull; /** * * @since 4.0.0 */ @Experimental public interface VersionRangeResolverRequest extends Request<Session> { @Nonnull ArtifactCoordinates getArtifactCoordinates(); @Nullable List<RemoteRepository> getRepositories(); @Nonnull static VersionRangeResolverRequest build(
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 5.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionResolverRequest.java
import org.apache.maven.api.annotations.Nullable; import static java.util.Objects.requireNonNull; /** * * @since 4.0.0 */ @Experimental public interface VersionResolverRequest extends Request<Session> { @Nonnull ArtifactCoordinates getArtifactCoordinates(); @Nullable List<RemoteRepository> getRepositories(); @Nonnull
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 5.3K bytes - Viewed (0) -
docs/de/docs/tutorial/header-params.md
# Header-Parameter So wie `Query`-, `Path`-, und `Cookie`-Parameter können Sie auch <abbr title='Header – Kopfzeilen, Header, Header-Felder: Schlüssel-Wert-Metadaten, die vom Client beim Request, und vom Server bei der Response gesendet werden'>Header</abbr>-Parameter definieren. ## `Header` importieren Importieren Sie zuerst `Header`: {* ../../docs_src/header_params/tutorial001_an_py310.py hl[3] *} ## `Header`-Parameter deklarieren
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 3.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/labeltype/AdminLabeltypeAction.java
labelTypeService.store(entity); saveInfo(messages -> messages.addSuccessCrudCreateCrudTable(GLOBAL)); } catch (final Exception e) { logger.warn("Failed to process a request.", e); throwValidationError(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e)), this::asEditHtml); } }).orElse(() -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.5K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcMessageTest.java
// Verify header encoding including ptype verify(mockBuffer, times(3)).enc_ndr_small(0); // minor version, ptype (REQUEST=0), and flags (all are 0) } @Test @DisplayName("encode should handle non-REQUEST ptype correctly") void testEncodeNonRequestPtype() throws NdrException { message.ptype = DcerpcConstants.RPC_PT_RESPONSE; // 2, not 0
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 18.3K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/CertificatePinner.kt
* .build(); * OkHttpClient client = OkHttpClient.Builder() * .certificatePinner(certificatePinner) * .build(); * * Request request = new Request.Builder() * .url("https://" + hostname) * .build(); * client.newCall(request).execute(); * ``` * * As expected, this fails with a certificate pinning exception: * * ```java
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 14.1K bytes - Viewed (0)