Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of about 10,000 for _this6 (0.21 sec)

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

            this.nativeOs = p.getProperty("jcifs.smb.client.nativeOs", System.getProperty("os.name"));
            this.nativeLanMan = p.getProperty("jcifs.smb.client.nativeLanMan", "jCIFS");
            this.vcNumber = 1;
    
            this.dfsDisabled = Config.getBoolean(p, "jcifs.smb.client.dfs.disabled", false);
            this.dfsTTL = Config.getLong(p, "jcifs.smb.client.dfs.ttl", 300);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. docs/en/docs/js/termynal.js

            this.originalLineDelay = this.lineDelay = options.lineDelay
                || parseFloat(this.container.getAttribute(`${this.pfx}-lineDelay`)) || 1500;
            this.progressLength = options.progressLength
                || parseFloat(this.container.getAttribute(`${this.pfx}-progressLength`)) || 40;
            this.progressChar = options.progressChar
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/DcerpcMessage.java

                this.alloc_hint = this.length - alloc_hint_index;
                buf.enc_ndr_long(this.alloc_hint);
            }
    
            buf.setIndex(start);
            encode_header(buf);
            buf.setIndex(start + this.length);
        }
    
    
        @Override
        public void decode ( NdrBuffer buf ) throws NdrException {
            decode_header(buf);
    
            if ( this.ptype != 12 && this.ptype != 2 && this.ptype != 3 && this.ptype != 13 )
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5K bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/compilerFacility/compilation/classKinds.ir.txt

            $this: VALUE_PARAMETER name:<this> type:kotlin.Any
          FUN name:run visibility:public modality:OPEN <> ($this:<root>.Generic<T of <root>.Generic>) returnType:kotlin.Unit
            overridden:
              public abstract fun run (): kotlin.Unit declared in <root>.Intf
            $this: VALUE_PARAMETER name:<this> type:<root>.Generic<T of <root>.Generic>
            BLOCK_BODY
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 04 09:35:38 UTC 2024
    - 25K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DefaultConnectionParameters.java

            this.projectDir = projectDir;
            this.gradleUserHomeDir = gradleUserHomeDir;
            this.embedded = embedded;
            this.daemonMaxIdleTimeValue = daemonMaxIdleTimeValue;
            this.daemonMaxIdleTimeUnits = daemonMaxIdleTimeUnits;
            this.daemonBaseDir = daemonBaseDir;
            this.verboseLogging = verboseLogging;
            this.searchUpwards = searchUpwards;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/dcerpc/ndr/NdrBuffer.java

            this.length = 0;
            this.deferred = this;
        }
    
    
        public int getIndex () {
            return this.index;
        }
    
    
        public void setIndex ( int index ) {
            this.index = index;
        }
    
    
        public int getCapacity () {
            return this.buf.length - this.start;
        }
    
    
        public int getTailSpace () {
            return this.buf.length - this.index;
        }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.6K bytes
    - Viewed (0)
  7. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/MinimalGroovyCompileOptions.java

            this.failOnError = compileOptions.isFailOnError();
            this.verbose = compileOptions.isVerbose();
            this.listFiles = compileOptions.isListFiles();
            this.encoding = compileOptions.getEncoding();
            this.fork = compileOptions.isFork();
            this.keepStubs = compileOptions.isKeepStubs();
            this.fileExtensions = ImmutableList.copyOf(compileOptions.getFileExtensions());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/http/NtlmHttpURLConnection.java

                }
                this.setRequestProperty(key, value.toString());
            }
    
            this.setAllowUserInteraction(this.connection.getAllowUserInteraction());
            this.setDoInput(this.connection.getDoInput());
            this.setDoOutput(this.connection.getDoOutput());
            this.setIfModifiedSince(this.connection.getIfModifiedSince());
            this.setUseCaches(this.connection.getUseCaches());
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 25.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/fscc/FileBasicInfo.java

         * @param attributes
         */
        public FileBasicInfo ( long create, long lastAccess, long lastWrite, long change, int attributes ) {
            this.createTime = create;
            this.lastAccessTime = lastAccess;
            this.lastWriteTime = lastWrite;
            this.changeTime = change;
            this.attributes = attributes;
    
        }
    
    
        /**
         * {@inheritDoc}
         *
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbFileHandleImpl.java

                long initialSize ) {
            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: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.6K bytes
    - Viewed (0)
Back to top