Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of about 10,000 for _this6 (0.14 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/file/FileCollection.java

        /**
         * Returns true if this collection is empty. Generally, calling this method is more efficient than calling {@code
         * getFiles().isEmpty()}.
         *
         * @return true if this collection is empty, false otherwise.
         */
        boolean isEmpty();
    
        /**
         * Converts this collection to a {@link FileTree}, if not already. For each file in this collection, the resulting file
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 05 15:51:59 UTC 2021
    - 8.3K bytes
    - Viewed (0)
  2. guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

       * (or equivalently, if this queue changed as a result of the call).
       *
       * @param o element to be removed from this queue, if present
       * @return {@code true} if this queue changed as a result of the call
       */
      @CanIgnoreReturnValue
      @Override
      public boolean remove(@Nullable Object o) {
        if (o == null) return false;
        final E[] items = this.items;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/TestDependency.groovy

            if (s.length == 3) {
                this.group = s[0]
                this.name = s[1]
                this.version = s[2]
            } else if (s.length == 2) {
                if (StringUtils.isNumeric(s[1])) {
                    this.group = "org"
                    this.name = s[0]
                    this.version = s[1]
                } else {
                    this.group = s[0]
                    this.name = s[1]
                    this.version = "1"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbSessionImpl.java

            this.transportContext = tf;
            this.targetDomain = targetDomain;
            this.targetHost = targetHost;
            this.transport = transport.acquire();
            this.trees = new ArrayList<>();
            this.credentials = tf.getCredentials().unwrap(CredentialsInternal.class).clone();
        }
    
    
        /**
         * @return the configuration used by this session
         */
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  5. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultProblemBuilder.java

            this.id = problem.getDefinition().getId();
            this.contextualLabel = problem.getContextualLabel();
            this.solutions = new ArrayList<String>(problem.getSolutions());
            this.severity = problem.getDefinition().getSeverity();
    
            locations.addAll(problem.getLocations());
    
            this.details = problem.getDetails();
            this.docLink = problem.getDefinition().getDocumentationLink();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 08:30:15 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbTreeConnection.java

        public Configuration getConfig () {
            return this.ctx.getConfig();
        }
    
    
        private synchronized SmbTreeImpl getTree () {
            SmbTreeImpl t = this.tree;
            if ( t != null ) {
                return t.acquire(false);
            }
            else if ( this.delegate != null ) {
                this.tree = this.delegate.getTree();
                return this.tree;
            }
            return t;
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 31K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/MavenInvocationSpec.groovy

            this.installation = installation
            this.mavenVersion = installation.version
            this.mavenHome = installation.home
            this.workingDirectory = workingDirectory
            this.tasksToRun = tasksToRun
            this.jvmArguments = jvmOpts
            this.mavenOpts = mavenOpts
            this.args = args
        }
    
        @Override
        boolean isExpectFailure() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java

                this.parameterCount = Math.min(this.totalParameterCount - this.parameterDisplacement, available);
                available -= this.parameterCount;
    
                this.dataOffset = this.parameterOffset + this.parameterCount;
                this.pad2 = this.pad(this.dataOffset);
                this.dataOffset += this.pad2;
    
                this.dataDisplacement += this.dataCount;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 17 13:43:42 UTC 2020
    - 13.2K bytes
    - Viewed (0)
  9. 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;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb2/info/Smb2QueryInfoRequest.java

            return new Smb2QueryInfoResponse(tc.getConfig(), this.infoType, this.fileInfoClass);
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.CommonServerMessageBlockRequest#size()
         */
        @Override
        public int size () {
            int size = Smb2Constants.SMB2_HEADER_LENGTH + 40;
            if ( this.inputBuffer != null ) {
                size += this.inputBuffer.size();
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 10:41:31 UTC 2021
    - 5.6K bytes
    - Viewed (0)
Back to top