Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for _this6 (0.14 sec)

  1. 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 + "]");
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.6K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/eclipse/DefaultEclipseProject.java

            this.name = name;
            this.path = path;
            this.description = description;
            this.projectDirectory = projectDirectory;
            this.tasks = Collections.emptyList();
            this.children = Lists.newArrayList(children);
            this.classpath = Collections.emptyList();
            this.sourceDirectories = Collections.emptyList();
            this.projectDependencies = Collections.emptyList();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. src/main/java/jcifs/internal/smb1/com/SmbComOpenAndXResponse.java

                "SmbComOpenAndXResponse[" + super.toString() + ",fid=" + this.fid + ",fileAttributes=" + this.fileAttributes + ",lastWriteTime="
                        + this.lastWriteTime + ",dataSize=" + this.fileDataSize + ",grantedAccess=" + this.grantedAccess + ",fileType=" + this.fileType
                        + ",deviceState=" + this.deviceState + ",action=" + this.action + ",serverFid=" + this.serverFid + "]");
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.2K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/JvmTestExecutionSpec.java

            this.testFramework = testFramework;
            this.classpath = classpath;
            this.modulePath = modulePath;
            this.candidateClassFiles = candidateClassFiles;
            this.scanForTestClasses = scanForTestClasses;
            this.testClassesDirs = testClassesDirs;
            this.path = path;
            this.identityPath = identityPath;
            this.forkEvery = forkEvery;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/fscc/FileFsFullSizeInformation.java

            return FS_FULL_SIZE_INFO;
        }
    
    
        @Override
        public long getCapacity () {
            return this.alloc * this.sectPerAlloc * this.bytesPerSect;
        }
    
    
        @Override
        public long getFree () {
            return this.free * this.sectPerAlloc * this.bytesPerSect;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Decodable#decode(byte[], int, int)
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.7K bytes
    - Viewed (0)
  9. 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;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.3K bytes
    - Viewed (0)
  10. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultTypeValidationData.java

        private final String typeName;
    
        public DefaultTypeValidationData(String pluginId, String propertyName, String parentPropertyName, String typeName) {
            this.pluginId = pluginId;
            this.propertyName = propertyName;
            this.parentPropertyName = parentPropertyName;
            this.typeName = typeName;
        }
    
        @Override
        public String getPluginId() {
            return pluginId;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top