- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 406 for okcurl (0.07 sec)
-
Dockerfile.release.old_cpu
chmod +x /go/bin/mc RUN if [ "$TARGETARCH" = "amd64" ]; then \ curl -L -s -q https://github.com/moparisthebest/static-curl/releases/latest/download/curl-${TARGETARCH} -o /go/bin/curl; \ chmod +x /go/bin/curl; \ fi # Verify binary signature using public key "RWTx5Zr1tiHQLwG9keckT0c45M3AGeHD6IvimQHpyRywVWGbP1aVSGavRUN"
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Apr 09 14:28:39 UTC 2025 - 3.1K bytes - Viewed (0) -
guava/pom.xml
javax.crypto.*;resolution:=optional, sun.misc.*;resolution:=optional </Import-Package> <Bundle-DocURL>https://github.com/google/guava/</Bundle-DocURL> </instructions> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <executions> <execution>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jun 06 21:05:32 UTC 2025 - 9.4K bytes - Viewed (0) -
README.md
```java import org.codelibs.curl.Curl; Curl.post("https://api.example.com/items") .body("{\"name\":\"item1\"}") .header("Content-Type", "application/json") .execute( response -> System.out.println("Async status: " + response.getHttpStatusCode()), error -> error.printStackTrace()); ``` ## API Overview
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Sat Jul 05 01:11:14 UTC 2025 - 2.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/ChecksumFailedException.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.repository.legacy; import org.apache.maven.wagon.TransferFailedException; /** * Occurs when a download checksum fails. * */ @Deprecated public class ChecksumFailedException extends TransferFailedException { public ChecksumFailedException(String s) { super(s); }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.2K bytes - Viewed (0) -
src/main/java/jcifs/http/NetworkExplorer.java
* @param req the HTTP servlet request * @param resp the HTTP servlet response * @param file the SMB file to download * @throws IOException if an I/O error occurs */ protected void doFile(final HttpServletRequest req, final HttpServletResponse resp, final SmbFile file) throws IOException { final byte[] buf = new byte[8192]; @SuppressWarnings("resource")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/DefaultQueryBuilder.java
} /** * Creates a Lucene Query from this query builder. * * @param context the query shard context * @return the Lucene Query * @throws IOException if an I/O error occurs */ @Override public Query toQuery(final QueryShardContext context) throws IOException { return queryBuilder.toQuery(context); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmContext.java
* @param msg2 the Type 2 message received from the server * @return the Type 3 message to send to the server * @throws GeneralSecurityException if a cryptographic error occurs * @throws CIFSException if a CIFS protocol error occurs */ protected Type3Message createType3Message(final Type2Message msg2) throws GeneralSecurityException, CIFSException { if (this.auth instanceof NtlmNtHashAuthenticator) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 17.3K bytes - Viewed (0) -
src/test/java/jcifs/SIDTest.java
assertThrows(ClassCastException.class, () -> sid.unwrap(String.class)); } /** * Test the resolve method. * * @throws IOException if an I/O error occurs */ @Test void testResolve() throws IOException { CIFSContext mockContext = mock(CIFSContext.class); SidResolver mockResolver = mock(SidResolver.class);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/cache/MavenExecutionException.java
* under the License. */ package org.apache.maven.api.cache; import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.services.MavenException; /** * Exception thrown when an error occurs during Maven execution. * This exception wraps the original cause of the execution failure. * * @since 4.0.0 */ @Experimental public class MavenExecutionException extends MavenException { /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 1.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionRangeResolver.java
* * @param session the session to use * @param artifactCoordinates t * @return the version range resolution result * @throws VersionResolverException if an errors occurs */ @Nonnull default VersionRangeResolverResult resolve( @Nonnull Session session, @Nonnull ArtifactCoordinates artifactCoordinates) throws VersionResolverException {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Sep 12 06:19:14 UTC 2024 - 3.7K bytes - Viewed (0)