Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for referred (0.04 sec)

  1. README.md

    SequencedCollection<String> sequenced = CollectionsUtil.newLinkedHashSet();
    String first = CollectionsUtil.getFirst(sequenced);
    String last = CollectionsUtil.getLast(sequenced);
    SequencedCollection<String> reversed = CollectionsUtil.reversed(sequenced);
    
    // Specialized collections
    LruHashMap<String, Object> lruCache = new LruHashMap<>(100); // LRU cache with max 100 entries
    CaseInsensitiveMap<String> configMap = new CaseInsensitiveMap<>();
    ```
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sun Aug 31 02:56:02 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/config/BaseConfiguration.java

         * Maximum number of SMB3 channels to establish per session
         */
        protected int maxChannels;
        /**
         * Channel binding policy: -1=not set, 0=disabled, 1=preferred, 2=required
         */
        protected int channelBindingPolicy = -1; // -1=not set, 0=disabled, 1=preferred, 2=required
        /**
         * Load balancing strategy for distributing operations across channels
         */
        protected String loadBalancingStrategy;
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  3. docs/en/data/sponsors.yml

      - url: https://www.stainlessapi.com/?utm_source=fastapi&utm_medium=referral
        title: Stainless | Generate best-in-class SDKs
        img: https://fastapi.tiangolo.com/img/sponsors/stainless.png
      - url: https://www.permit.io/blog/implement-authorization-in-fastapi?utm_source=github&utm_medium=referral&utm_campaign=fastapi
        title: Fine-Grained Authorization for FastAPI
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 15:19:49 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/Configuration.java

         */
        int getMaxChannels();
    
        /**
         * Channel binding policy
         *
         * Property {@code jcifs.smb.client.channelBindingPolicy} (String, default "preferred")
         * Values: "disabled", "preferred", "required"
         *
         * @return channel binding policy
         */
        int getChannelBindingPolicy();
    
        /**
         * Load balancing strategy for multi-channel
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  5. docs/vi/docs/deployment/cloud.md

    Bạn có thể thử các dịch vụ của họ và làm theo hướng dẫn của họ:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 15:19:49 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbTreeImpl.java

         */
        public boolean isInDomainDfs() {
            return this.inDomainDfs;
        }
    
        /**
         * @param referral
         */
        public void setTreeReferral(final DfsReferralData referral) {
            this.treeReferral = referral;
        }
    
        /**
         * @return the treeReferral
         */
        public DfsReferralData getTreeReferral() {
            return this.treeReferral;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 30K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateRequest.java

            SMBUtil.writeInt2(this.dialects.length, dst, dstIndex + 2);
            dstIndex += 4;
    
            SMBUtil.writeInt2(this.securityMode, dst, dstIndex);
            SMBUtil.writeInt2(0, dst, dstIndex + 2); // Reserved
            dstIndex += 4;
    
            SMBUtil.writeInt4(this.capabilities, dst, dstIndex);
            dstIndex += 4;
    
            System.arraycopy(this.clientGuid, 0, dst, dstIndex, 16);
            dstIndex += 16;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  8. docs/es/docs/deployment/cloud.md

    Podrías querer probar sus servicios y seguir sus guías:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 15:19:49 UTC 2025
    - 962 bytes
    - Viewed (0)
  9. docs/en/docs/deployment/cloud.md

    You might want to try their services and follow their guides:
    
    * <a href="https://docs.render.com/deploy-fastapi?utm_source=deploydoc&utm_medium=referral&utm_campaign=fastapi" class="external-link" target="_blank">Render</a>
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 15:19:49 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb2/io/Smb2ReadResponseTest.java

            SMBUtil.writeInt2(9, buffer, bufferIndex);
            // Write error context and error data
            buffer[bufferIndex + 2] = 1; // Error context count
            buffer[bufferIndex + 3] = 0; // Reserved
            SMBUtil.writeInt4(0, buffer, bufferIndex + 4); // ByteCount (0 for error)
    
            // Create a custom test response that tracks if readErrorResponse was called
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 22.1K bytes
    - Viewed (0)
Back to top