- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 448 for rprotocol (0.05 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/WagonManager.java
import org.apache.maven.wagon.repository.Repository; /** * WagonManager */ @Deprecated public interface WagonManager { @Deprecated Wagon getWagon(String protocol) throws UnsupportedProtocolException; @Deprecated Wagon getWagon(Repository repository) throws UnsupportedProtocolException, WagonConfigurationException; // // Retriever //
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/test/net/protocol/xxx3/Handler.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.test.net.protocol.xxx3; import java.io.IOException; import java.net.URL; import java.net.URLConnection; import java.net.URLStreamHandler; public class Handler extends URLStreamHandler {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 1007 bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http/HttpStatusCodes.kt
// From https://github.com/apache/httpcomponents-core/blob/master/httpcore5/src/main/java/org/apache/hc/core5/http/HttpStatus.java /** `100 Continue` (HTTP/1.1 - RFC 7231) */ const val HTTP_CONTINUE = 100 /** `101 Switching Protocols` (HTTP/1.1 - RFC 9110) */ const val HTTP_SWITCHING_PROTOCOLS = 101 /** `102 Processing` (WebDAV - RFC 2518) */ const val HTTP_PROCESSING = 102 /** `103 Early Hints (Early Hints - RFC 8297)` */
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 28 14:39:28 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/info/Smb2QueryInfoResponse.java
* file, or security information from the server. * * @author mbechler * */ public class Smb2QueryInfoResponse extends ServerMessageBlock2Response { /** * Protocol overhead size for SMB2 query info response */ public static final int OVERHEAD = Smb2Constants.SMB2_HEADER_LENGTH + 8; private final byte expectInfoType; private final byte expectInfoClass;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/compression/CompressionService.java
*/ package jcifs.smb.compression; import jcifs.CIFSException; /** * Interface for SMB3 compression services. * * Provides compression and decompression functionality for SMB3 protocol * data transfers with support for multiple compression algorithms. */ public interface CompressionService { /** * Compression algorithm constants matching SMB3 specification. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbUnsupportedOperationException.java
*/ package jcifs.smb; /** * Exception thrown when an unsupported SMB operation is attempted. * Indicates that the requested operation is not supported by the SMB server or protocol version. * * @author mbechler * */ public class SmbUnsupportedOperationException extends SmbException { /** * */ private static final long serialVersionUID = -5576981906065713710L;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/DosFileFilter.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.smb1; /** * DOS-style file filter implementation for SMB1 protocol. * Filters files based on wildcard patterns and DOS file attributes. */ public class DosFileFilter implements SmbFileFilter { /** * The wildcard pattern for filtering file names. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.5K bytes - Viewed (0) -
docs/sts/client_grants/__init__.py
""" METHOD = 'assume-role-client-grants' CANONICAL_NAME = 'AssumeRoleClientGrants' def __init__(self, cid, csec, idp_ep='http://localhost:8080/auth/realms/minio/protocol/openid-connect/token', sts_ep='http://localhost:9000'): self.cid = cid self.csec = csec self.idp_ep = idp_ep self.sts_ep = sts_ep
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Apr 23 18:58:53 UTC 2021 - 4.6K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/WagonA.java
* under the License. */ package org.apache.maven.repository.legacy; import javax.inject.Named; import javax.inject.Singleton; /** * Wagon for testing, for protocol <code>a</code> * */ @Named("a") @Singleton public class WagonA extends WagonMock { public String[] getSupportedProtocols() { return new String[] {"a"}; }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.1K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/WagonC.java
* under the License. */ package org.apache.maven.repository.legacy; import javax.inject.Named; import javax.inject.Singleton; /** * Wagon for testing, for protocol <code>c</code> * */ @Named("c") @Singleton public class WagonC extends WagonMock { public String[] getSupportedProtocols() { return new String[] {"c"}; }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.1K bytes - Viewed (0)