Search Options

Results per page
Sort
Preferred Languages
Advance

Results 751 - 760 of 7,528 for thais (0.16 sec)

  1. src/main/java/jcifs/config/DelegatingConfiguration.java

            return this.delegate.isForceExtendedSecurity();
        }
    
        @Override
        public boolean isUseLease() {
            return this.delegate.isUseLease();
        }
    
        @Override
        public int getLeaseTimeout() {
            return this.delegate.getLeaseTimeout();
        }
    
        @Override
        public int getMaxLeases() {
            return this.delegate.getMaxLeases();
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/config/PropertyConfiguration.java

            if (value != null) {
                this.defaultUserName = value;
            }
    
            value = props.getProperty("jcifs.smb.client.password");
            if (value != null) {
                this.defaultPassword = value;
            }
    
            value = props.getProperty("jcifs.smb.client.domain");
            if (value != null) {
                this.defaultDomain = value;
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:49:49 UTC 2025
    - 13.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFileHandleImpl.java

            this.cfg = cfg;
            this.fileId = fid;
            this.initialSize = initialSize;
            this.fid = 0;
            this.unc = unc;
            this.flags = flags;
            this.access = access;
            this.attrs = attrs;
            this.options = options;
            this.tree = tree.acquire();
            this.tree_num = tree.getTreeId();
    
            if (cfg.isTraceResourceUsage()) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 9.4K bytes
    - Viewed (1)
  4. src/main/java/jcifs/dcerpc/DcerpcBinding.java

                return this.endpoint;
            }
            if (this.options != null) {
                return this.options.get(key);
            }
            return null;
        }
    
        @Override
        public String toString() {
            StringBuilder ret = new StringBuilder().append(this.proto).append(":").append(this.server).append("[").append(this.endpoint);
            if (this.options != null) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/com/SmbComReadAndX.java

        @Override
        public String toString() {
            return ("SmbComReadAndX[" + super.toString() + ",fid=" + this.fid + ",offset=" + this.offset + ",maxCount=" + this.maxCount
                    + ",minCount=" + this.minCount + ",openTimeout=" + this.openTimeout + ",remaining=" + this.remaining + ",offset="
                    + this.offset + "]");
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.10.md

    * Use "k8s.gcr.io" for container images rather than "gcr.io/google_containers".  This is just a redirect, for now, so should not impact anyone materially.   ([#54174](https://github.com/kubernetes/kubernetes/pull/54174), [@thockin](https://github.com/thockin))
        * Documentation and tools should all convert to the new name. Users should take note of this in case they see this new name in the system.
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/RangeSet.java

       *
       * @throws UnsupportedOperationException if this range set does not support the {@code remove}
       *     operation
       */
      void remove(Range<C> range);
    
      /**
       * Removes all ranges from this {@code RangeSet} (optional operation). After this operation,
       * {@code this.contains(c)} will return false for all {@code c}.
       *
       * <p>This is equivalent to {@code remove(Range.all())}.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

                Arrays.fill(this.password, '\uAAAA');
                Arrays.fill(this.password, '\u5555');
                Arrays.fill(this.password, '\0');
                this.password = null;
            }
            // Also remove from secure key manager if we have a session
            if (this.sessionId != null) {
                keyManager.removeSessionKey(this.sessionId);
                this.sessionId = null;
            }
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 30.3K bytes
    - Viewed (0)
  9. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RealCall.kt

        }
    
        val exchangeFinder = this.exchangeFinder!!
        val connection = exchangeFinder.find()
        val codec = connection.newCodec(client, chain)
        val result = Exchange(this, eventListener, exchangeFinder, codec)
        this.interceptorScopedExchange = result
        this.exchange = result
        withLock {
          this.requestBodyOpen = true
          this.responseBodyOpen = true
        }
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 11:30:11 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/com/SmbComOpenAndXResponse.java

            return ("SmbComOpenAndXResponse[" + super.toString() + ",fid=" + this.fid + ",fileAttributes=" + this.fileAttributes
                    + ",lastWriteTime=" + this.lastWriteTime + ",dataSize=" + this.fileDataSize + ",grantedAccess=" + this.grantedAccess
                    + ",fileType=" + this.fileType + ",deviceState=" + this.deviceState + ",action=" + this.action + ",serverFid="
                    + this.serverFid + "]");
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.8K bytes
    - Viewed (0)
Back to top