Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of about 10,000 for _this6 (0.12 sec)

  1. src/main/java/jcifs/netbios/NodeStatusResponse.java

                    this.queryAddress.isBeingDeleted = isBeingDeleted;
                    this.queryAddress.isInConflict = isInConflict;
                    this.queryAddress.isActive = isActive;
                    this.queryAddress.isPermanent = isPermanent;
                    this.queryAddress.macAddress = this.macAddress;
                    this.queryAddress.isDataFromNodeStatus = true;
                    addrFound = true;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndXResponse.java

            int start = bufferIndex;
    
            if ( this.isExtendedSecurity() ) {
                System.arraycopy(buffer, bufferIndex, this.blob, 0, this.blob.length);
                bufferIndex += this.blob.length;
            }
    
            this.nativeOs = readString(buffer, bufferIndex);
            bufferIndex += stringWireLength(this.nativeOs, bufferIndex);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.1K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/MinimalJavaCompileOptions.java

            this.debugOptions = compileOptions.getDebugOptions();
            this.debug = compileOptions.isDebug();
            this.deprecation = compileOptions.isDeprecation();
            this.failOnError = compileOptions.isFailOnError();
            this.listFiles = compileOptions.isListFiles();
            this.verbose = compileOptions.isVerbose();
            this.warnings = compileOptions.isWarnings();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingRequest.java

            this.processPlugins = processPlugins;
            return this;
        }
    
        public ProjectBuildingRequest setResolveDependencies(boolean resolveDependencies) {
            this.resolveDependencies = resolveDependencies;
            return this;
        }
    
        public boolean isResolveDependencies() {
            return resolveDependencies;
        }
    
        /**
         * @since 3.2.2
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/com/SmbComLockingAndX.java

            int start = dstIndex;
    
            SMBUtil.writeInt2(this.fid, dst, dstIndex);
            dstIndex += 2;
    
            dst[ dstIndex ] = this.typeOfLock;
            dst[ dstIndex + 1 ] = this.newOpLockLevel;
            dstIndex += 2;
    
            SMBUtil.writeInt4(this.timeout, dst, dstIndex);
            dstIndex += 4;
    
            SMBUtil.writeInt2(this.unlocks != null ? this.unlocks.length : 0, dst, dstIndex);
            dstIndex += 2;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/netbios/UniAddress.java

            }
    
            this.calledName = ( (InetAddress) this.addr ).getHostName();
            if ( isDotQuadIP(this.calledName) ) {
                this.calledName = NbtAddress.SMBSERVER_NAME;
            }
            else {
                int i = this.calledName.indexOf('.');
                if ( i > 1 && i < 15 ) {
                    this.calledName = this.calledName.substring(0, i).toUpperCase();
                }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top