Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of about 10,000 for _this6 (0.56 sec)

  1. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationDescriptor.java

            BuildOperationMetadata metadata,
            int totalProgress
        ) {
            this.id = id;
            this.parentId = parentId;
            this.name = name;
            this.displayName = displayName;
            this.progressDisplayName = progressDisplayName;
            this.details = details;
            this.metadata = metadata;
            this.totalProgress = totalProgress;
        }
    
        @Nullable
        public OperationIdentifier getId() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtTransaction.java

            dstIndex += 4;
            if ( this.getCommand() == SMB_COM_NT_TRANSACT_SECONDARY ) {
                SMBUtil.writeInt4(this.parameterDisplacement, dst, dstIndex);
                dstIndex += 4;
            }
            SMBUtil.writeInt4(this.dataCount, dst, dstIndex);
            dstIndex += 4;
            SMBUtil.writeInt4( ( this.dataCount == 0 ? 0 : this.dataOffset ), dst, dstIndex);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 17 13:43:42 UTC 2020
    - 3.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/nego/PreauthIntegrityNegotiateContext.java

            int start = dstIndex;
    
            SMBUtil.writeInt2(this.hashAlgos != null ? this.hashAlgos.length : 0, dst, dstIndex);
            SMBUtil.writeInt2(this.salt != null ? this.salt.length : 0, dst, dstIndex + 2);
            dstIndex += 4;
    
            if ( this.hashAlgos != null ) {
                for ( int hashAlgo : this.hashAlgos ) {
                    SMBUtil.writeInt2(hashAlgo, dst, dstIndex);
                    dstIndex += 2;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.8K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/types/KtTypeRenderer.kt

                is KaFunctionalType -> functionalTypeRenderer.renderType(this, type, this@KaTypeRenderer, printer)
                is KaUsualClassType -> usualClassTypeRenderer.renderType(this, type, this@KaTypeRenderer, printer)
                is KaDefinitelyNotNullType -> definitelyNotNullTypeRenderer.renderType(this, type, this@KaTypeRenderer, printer)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/io/Smb2ReadRequest.java

            super(config, SMB2_READ);
            this.fileId = fileId;
            this.outputBuffer = outputBuffer;
            this.outputBufferOffset = outputBufferOffset;
        }
    
    
        @Override
        protected Smb2ReadResponse createResponse ( CIFSContext tc, ServerMessageBlock2Request<Smb2ReadResponse> req ) {
            return new Smb2ReadResponse(tc.getConfig(), this.outputBuffer, this.outputBufferOffset);
        }
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultResolutionStrategy.java

            this.cachePolicy = cachePolicy;
            this.dependencySubstitutions = dependencySubstitutions;
            this.globalDependencySubstitutionRules = globalDependencySubstitutionRules;
            this.moduleIdentifierFactory = moduleIdentifierFactory;
            this.componentSelectionRules = new DefaultComponentSelectionRules(moduleIdentifierFactory);
            this.vcsResolver = vcsResolver;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/file/FileTreeElement.java

         * @return The file. Never returns null.
         */
        File getFile();
    
        /**
         * Returns true if this element is a directory, or false if this element is a regular file.
         *
         * @return true if this element is a directory.
         */
        boolean isDirectory();
    
        /**
         * Returns the last modified time of this file at the time of file traversal.
         *
         * @return The last modified time.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 13:43:13 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/process/internal/DefaultExecHandleBuilder.java

            super.executable(executable);
            return this;
        }
    
        @Override
        public DefaultExecHandleBuilder commandLine(Object... arguments) {
            argumentsSpec.commandLine(arguments);
            return this;
        }
    
        @Override
        public DefaultExecHandleBuilder commandLine(Iterable<?> args) {
            argumentsSpec.commandLine(args);
            return this;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 06 16:16:31 UTC 2020
    - 4.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java

                final long queryTime, final boolean partialResults, final FacetResponse facetResponse) {
            this.documentList = documentList;
            this.allRecordCount = allRecordCount;
            this.allRecordCountRelation = allRecordCountRelation;
            this.queryTime = queryTime;
            this.partialResults = partialResults;
            this.facetResponse = facetResponse;
        }
    
        public List<Map<String, Object>> getDocumentList() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/com/SmbComReadAndXResponse.java

            super(config);
            this.data = b;
            this.offset = off;
        }
    
    
        void setParam ( byte[] b, int off ) {
            this.data = b;
            this.offset = off;
        }
    
    
        /**
         * 
         * @return the read data
         */
        public final byte[] getData () {
            return this.data;
        }
    
    
        /**
         * @return the offset
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.4K bytes
    - Viewed (0)
Back to top