Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 855 for contigo (0.18 sec)

  1. src/main/java/jcifs/smb/MultiChannelManager.java

         *
         * @param config the configuration
         */
        public MultiChannelManager(Configuration config) {
            this.config = config;
            this.maxChannels = getMaxChannelsFromConfig(config);
            this.loadBalancingStrategy = getLoadBalancingStrategyFromConfig(config);
            this.healthCheckInterval = getHealthCheckIntervalFromConfig(config);
    
            // Create thread pools
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  2. docs/es/docs/tutorial/path-operation-configuration.md

    ///
    
    ## Código de Estado del Response
    
    Puedes definir el `status_code` (HTTP) que se utilizará en el response de tu *path operation*.
    
    Puedes pasar directamente el código `int`, como `404`.
    
    Pero si no recuerdas para qué es cada código numérico, puedes usar las constantes atajo en `status`:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/config/exentity/RequestHeader.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.opensearch.config.exentity;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.fess.app.service.WebConfigService;
    import org.codelibs.fess.opensearch.config.bsentity.BsRequestHeader;
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * @author FreeGen
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb1/com/SmbComWriteAndXResponse.java

        private long count;
    
        /**
         * Constructs a write response for SMB1 protocol.
         *
         * @param config the configuration for this SMB session
         */
        public SmbComWriteAndXResponse(final Configuration config) {
            super(config);
        }
    
        /**
         * Gets the number of bytes written.
         *
         * @return the count of bytes written
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtCancel.java

     */
    public class SmbComNtCancel extends ServerMessageBlock {
    
        /**
         * Constructs an NT cancel command.
         *
         * @param config the configuration
         * @param mid the message ID to cancel
         */
        protected SmbComNtCancel(final Configuration config, final int mid) {
            super(config, SMB_COM_NT_CANCEL);
            setMid(mid);
        }
    
        /**
         * {@inheritDoc}
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/tree/Smb2TreeDisconnectRequest.java

        /**
         * Creates a new SMB2 tree disconnect request to close a tree connection.
         *
         * @param config the CIFS configuration
         */
        public Smb2TreeDisconnectRequest(final Configuration config) {
            super(config, SMB2_TREE_DISCONNECT);
        }
    
        @Override
        protected Smb2TreeDisconnectResponse createResponse(final CIFSContext tc,
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/com/SmbComFindClose2.java

        private final int sid;
    
        /**
         * Creates a new SMB1 find close request to close a search handle.
         *
         * @param config the CIFS configuration
         * @param sid the search identifier to close
         */
        public SmbComFindClose2(final Configuration config, final int sid) {
            super(config, SMB_COM_FIND_CLOSE2);
            this.sid = sid;
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  8. cmd/bootstrap-peer-server.go

    type ServerSystemConfig struct {
    	NEndpoints int
    	CmdLines   []string
    	MinioEnv   map[string]string
    	Checksum   string
    }
    
    // Diff - returns error on first difference found in two configs.
    func (s1 *ServerSystemConfig) Diff(s2 *ServerSystemConfig) error {
    	if s1.Checksum != s2.Checksum {
    		return fmt.Errorf("Expected MinIO binary checksum: %s, seen: %s", s1.Checksum, s2.Checksum)
    	}
    
    	ns1 := s1.NEndpoints
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Oct 01 22:13:18 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. docs/pt/docs/tutorial/path-operation-configuration.md

    ///
    
    ## Código de Status da Resposta
    
    Você pode definir o `status_code` (HTTP) para ser usado na resposta da sua *operação de rota*.
    
    Você pode passar diretamente o código `int`, como `404`.
    
    Mas se você não se lembrar o que cada código numérico significa, pode usar as constantes de atalho em `status`:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/ElevateWordToLabelDbm.java

            return "org.codelibs.fess.opensearch.config.exentity.ElevateWordToLabel";
        }
    
        @Override
        public String getConditionBeanTypeName() {
            return "org.codelibs.fess.opensearch.config.cbean.ElevateWordToLabelCB";
        }
    
        @Override
        public String getBehaviorTypeName() {
            return "org.codelibs.fess.opensearch.config.exbhv.ElevateWordToLabelBhv";
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8K bytes
    - Viewed (0)
Back to top