Search Options

Results per page
Sort
Preferred Languages
Advance

Results 421 - 430 of 653 for contracts (3.92 sec)

  1. src/main/java/jcifs/internal/smb1/trans/TransTransactNamedPipe.java

        private static final Logger log = LoggerFactory.getLogger(TransTransactNamedPipe.class);
    
        private final byte[] pipeData;
        private final int pipeFid, pipeDataOff, pipeDataLen;
    
        /**
         * Constructs a transaction request for a named pipe operation.
         *
         * @param config the configuration to use
         * @param fid the file ID of the named pipe
         * @param data the data buffer to send
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/RequestBody.kt

      @Throws(IOException::class)
      abstract fun writeTo(sink: BufferedSink)
    
      /**
       * A duplex request body is special in how it is **transmitted** on the network and
       * in the **API contract** between OkHttp and the application.
       *
       * This method returns false unless it is overridden by a subclass.
       *
       * ### Duplex Transmission
       *
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Jun 04 17:43:43 UTC 2025
    - 9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/session/Smb2SessionSetupResponse.java

         */
        public static final int SMB2_SESSION_FLAG_ENCRYPT_DATA = 0x4;
    
        private int sessionFlags;
        private byte[] blob;
    
        /**
         * Constructs a SMB2 session setup response with the specified configuration
         *
         * @param config
         *            the configuration to use for this response
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.8K bytes
    - Viewed (1)
  4. src/main/java/org/codelibs/fess/util/ErrorToWarnRewritePolicy.java

    public class ErrorToWarnRewritePolicy implements RewritePolicy {
    
        /** Array of logger name prefixes to apply the ERROR to WARN conversion */
        private final String[] loggerNames;
    
        /**
         * Constructs a new ErrorToWarnRewritePolicy with the specified logger names.
         *
         * @param loggerNames array of logger name prefixes to convert ERROR to WARN
         */
        public ErrorToWarnRewritePolicy(final String[] loggerNames) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/com/SmbComSeek.java

     * It allows seeking to different positions within an open file.
     *
     * @author mbechler
     */
    public class SmbComSeek extends ServerMessageBlock {
    
        /**
         * Constructs a seek command.
         *
         * @param config the configuration
         * @param fid the file identifier
         */
        public SmbComSeek(final Configuration config, final int fid) {
            super(config, SMB_COM_SEEK);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  6. docs/pt/docs/tutorial/metadata.md

    | `terms_of_service` | `str` | Uma URL para os Termos de Serviço da API. Se fornecido, deve ser uma URL. |
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackTest.java

            // Test commit (should not throw exception)
            callback.commit();
        }
    
        public void test_multiple_implementations() {
            // Test with different implementations to ensure interface contract
            IndexUpdateCallback callback1 = createMockCallback(10, 500);
            IndexUpdateCallback callback2 = createMockCallback(20, 1000);
    
            assertEquals(10L, callback1.getDocumentSize());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/trans2/Trans2FindFirst2Response.java

        private int sid;
        private boolean isEndOfSearch;
        private int eaErrorOffset;
        private int lastNameOffset;
        private String lastName;
        private int resumeKey;
    
        /**
         * Constructs a Trans2FindFirst2Response.
         *
         * @param config the configuration to use
         */
        public Trans2FindFirst2Response(final Configuration config) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/info/Smb2QueryInfoResponse.java

         */
        public static final int OVERHEAD = Smb2Constants.SMB2_HEADER_LENGTH + 8;
    
        private final byte expectInfoType;
        private final byte expectInfoClass;
        private Decodable info;
    
        /**
         * Constructs a SMB2 query info response with the specified configuration and expected information types
         *
         * @param config
         *            the configuration to use for this response
         * @param expectInfoType
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/arch/loong64.go

    var loong64LasxArngExtMap = map[string]int16{
    	"B32": loong64.ARNG_32B,
    	"H16": loong64.ARNG_16H,
    	"W8":  loong64.ARNG_8W,
    	"V4":  loong64.ARNG_4V,
    	"Q2":  loong64.ARNG_2Q,
    }
    
    // Loong64RegisterExtension constructs an Loong64 register with extension or arrangement.
    func Loong64RegisterExtension(a *obj.Addr, ext string, reg, num int16, isAmount, isIndex bool) error {
    	var ok bool
    	var arng_type int16
    	var simd_type int16
    
    	switch {
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue Aug 05 17:31:25 UTC 2025
    - 3.8K bytes
    - Viewed (0)
Back to top