Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of about 10,000 for _this6 (0.12 sec)

  1. src/main/java/jcifs/dcerpc/DcerpcBinding.java

            this.options.put(key, val);
        }
    
    
        Object getOption ( String key ) {
            if ( key.equals("endpoint") )
                return this.endpoint;
            if ( this.options != null )
                return this.options.get(key);
            return null;
        }
    
    
        @Override
        public String toString () {
            String ret = this.proto + ":" + this.server + "[" + this.endpoint;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionResponse.java

            buffer[ bufferIndex++ ] = (byte) 0x00; // Reserved
    
            this.totalParameterCount = SMBUtil.readInt4(buffer, bufferIndex);
            if ( this.bufDataStart == 0 ) {
                this.bufDataStart = this.totalParameterCount;
            }
            bufferIndex += 4;
            this.totalDataCount = SMBUtil.readInt4(buffer, bufferIndex);
            bufferIndex += 4;
            this.parameterCount = SMBUtil.readInt4(buffer, bufferIndex);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/suggest/entity/ElevateWord.java

                final List<String> tags, final List<String> roles) {
            this.elevateWord = elevateWord;
            this.boost = boost;
            this.readings = readings;
            this.fields = fields;
            if (tags == null) {
                this.tags = Collections.emptyList();
            } else {
                this.tags = tags;
            }
            if (roles == null) {
                this.roles = Collections.emptyList();
            } else {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ErrorsOnStdoutScrapingExecutionFailure.java

            delegate.assertHasFileName(filename);
            return this;
        }
    
        @Override
        public ExecutionFailure assertHasFailures(int count) {
            delegate.assertHasFailures(count);
            return this;
        }
    
        @Override
        public ExecutionFailure assertHasCause(String description) {
            delegate.assertHasCause(description);
            return this;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:21:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFile.java

        }
    
        public TestFile createDir() {
            if (mkdirs()) {
                return this;
            }
            if (isDirectory()) {
                return this;
            }
            throw new AssertionError("Problems creating dir: " + this
                + ". Diagnostics: exists=" + this.exists() + ", isFile=" + this.isFile() + ", isDirectory=" + this.isDirectory());
        }
    
        public TestFile createDir(Object path) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:31:52 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  6. platforms/software/publish/src/main/java/org/gradle/api/tasks/Upload.java

         */
        @Internal
        @Nullable
        @Deprecated
        public RepositoryHandler getRepositories() {
            return null;
        }
    
        /**
         * Do not use this method, it will always return {@code null}.
         * @deprecated This class is scheduled for removal in a future version, this method <strong>should not be used</strong>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 22:15:44 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/com/LockingAndXRange.java

                SMBUtil.writeInt4(this.lengthInBytes >> 32, dst, dstIndex + 12);
                SMBUtil.writeInt4(this.lengthInBytes & 0xFFFFFFFF, dst, dstIndex + 16);
                return 20;
            }
            SMBUtil.writeInt2(this.pid, dst, dstIndex);
            SMBUtil.writeInt4(this.byteOffset, dst, dstIndex + 2);
            SMBUtil.writeInt4(this.lengthInBytes, dst, dstIndex + 6);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.5K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/http2/MockHttp2Peer.kt

          check(type == -1)
          this.type = Http2.TYPE_DATA
          this.inFinished = inFinished
          this.streamId = streamId
          this.data = source.readByteString(length.toLong()).toByteArray()
        }
    
        override fun rstStream(
          streamId: Int,
          errorCode: ErrorCode,
        ) {
          check(type == -1)
          this.type = Http2.TYPE_RST_STREAM
          this.streamId = streamId
          this.errorCode = errorCode
        }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndX.java

                        + this.rootDirectoryFid + ",desiredAccess=0x" + Hexdump.toHexString(this.desiredAccess, 4) + ",allocationSize="
                        + this.allocationSize + ",extFileAttributes=0x" + Hexdump.toHexString(this.extFileAttributes, 4) + ",shareAccess=0x"
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.2K bytes
    - Viewed (0)
  10. 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: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top