Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of about 10,000 for _this3 (0.14 sec)

  1. src/main/java/jcifs/util/transport/Transport.java

                if ( log.isDebugEnabled() ) {
                    log.debug("Connecting " + this.name);
                }
    
                this.state = 1;
                this.te = null;
    
                Thread t = new Thread(this, this.name);
                t.setDaemon(true);
                this.thread = t;
    
                synchronized ( this.thread ) {
                    t.start();
                    t.wait(timeout); /* wait for doConnect */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 01 18:12:21 GMT 2020
    - 24.1K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/WatchTest.java

            super.setUp();
            this.executor = Executors.newSingleThreadExecutor();
            this.base = createTestDirectory();
        }
    
    
        @Override
        @After
        public void tearDown () throws Exception {
            if ( this.executor != null ) {
                this.executor.shutdown();
                if ( this.future != null ) {
                    this.future.cancel(true);
                }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.4K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/artifact/handler/DefaultArtifactHandler.java

                final boolean addedToClasspath) {
            this.type = requireNonNull(type);
            this.extension = extension;
            this.classifier = classifier;
            this.directory = directory;
            this.packaging = packaging;
            this.includesDependencies = includesDependencies;
            this.language = language;
            this.addedToClasspath = addedToClasspath;
        }
    
        public String getType() {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb1/com/SmbComReadAndX.java

        public String toString () {
            return new String(
                "SmbComReadAndX[" + super.toString() + ",fid=" + this.fid + ",offset=" + this.offset + ",maxCount=" + this.maxCount + ",minCount="
                        + this.minCount + ",openTimeout=" + this.openTimeout + ",remaining=" + this.remaining + ",offset=" + this.offset + "]");
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/trans2/Trans2FindFirst2Response.java

            int start = bufferIndex;
    
            if ( this.getSubCommand() == SmbComTransaction.TRANS2_FIND_FIRST2 ) {
                this.sid = SMBUtil.readInt2(buffer, bufferIndex);
                bufferIndex += 2;
            }
            this.setNumEntries(SMBUtil.readInt2(buffer, bufferIndex));
            bufferIndex += 2;
            this.isEndOfSearch = ( buffer[ bufferIndex ] & 0x01 ) == 0x01 ? true : false;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Multiset.java

       *     negative
       */
      int count(@CompatibleWith("E") @CheckForNull Object element);
    
      // Bulk Operations
    
      /**
       * Adds a number of occurrences of an element to this multiset. Note that if {@code occurrences ==
       * 1}, this method has the identical effect to {@link #add(Object)}. This method is functionally
       * equivalent (except in the case of overflow) to the call {@code
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Sat Jun 17 14:40:53 GMT 2023
    - 19.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/http/NtlmHttpFilter.java

                }
            }
    
            try {
                this.defaultDomain = p.getProperty("jcifs.smb.client.domain");
                this.domainController = p.getProperty("jcifs.http.domainController");
                if ( this.domainController == null ) {
                    this.domainController = this.defaultDomain;
                    this.loadBalance = Config.getBoolean(p, "jcifs.http.loadBalance", true);
                }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/dcerpc/rpc.java

                _dst.align(4);
                _dst.enc_ndr_short(this.length);
                _dst.enc_ndr_short(this.maximum_length);
                _dst.enc_ndr_referent(this.buffer, 1);
    
                if ( this.buffer != null ) {
                    _dst = _dst.deferred;
                    int _bufferl = this.length / 2;
                    int _buffers = this.maximum_length / 2;
                    _dst.enc_ndr_long(_buffers);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:40:13 GMT 2019
    - 8.8K bytes
    - Viewed (0)
  9. architecture/ambient/ztunnel.md

    The obvious solution to this is to put the list of selected workloads into the policy itself.
    However, this means anytime a workload changes (often), we need to update the policy.
    
    Instead, the opposite was chosen: each workload will list the policies that select it.
    This works out to be more efficient in common cases where policies change much less often than workloads.
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu Apr 25 22:35:16 GMT 2024
    - 16.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/fscc/FileStandardInfo.java

            int start = dstIndex;
            SMBUtil.writeInt8(this.allocationSize, dst, dstIndex);
            dstIndex += 8;
            SMBUtil.writeInt8(this.endOfFile, dst, dstIndex);
            dstIndex += 8;
            SMBUtil.writeInt4(this.numberOfLinks, dst, dstIndex);
            dstIndex += 4;
            dst[ dstIndex++ ] = (byte) ( this.deletePending ? 1 : 0 );
            dst[ dstIndex++ ] = (byte) ( this.directory ? 1 : 0 );
            return dstIndex - start;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.3K bytes
    - Viewed (0)
Back to top