Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for parameterCount (0.28 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbComTransactionResponse.java

            pad = pad1 = 0;
            int n;
    
            if( parameterCount > 0 ) {
                bufferIndex += pad = parameterOffset - ( bufferIndex - headerStart );
                System.arraycopy( buffer, bufferIndex, txn_buf,
                                bufParameterStart + parameterDisplacement, parameterCount );
                bufferIndex += parameterCount;
            }
            if( dataCount > 0 ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/trans/SmbComTransactionResponse.java

            this.pad = this.pad1 = 0;
            if ( this.parameterCount > 0 ) {
                bufferIndex += this.pad = this.parameterOffset - ( bufferIndex - this.headerStart );
                System.arraycopy(buffer, bufferIndex, this.txn_buf, this.bufParameterStart + this.parameterDisplacement, this.parameterCount);
                bufferIndex += this.parameterCount;
            }
            if ( this.dataCount > 0 ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 9.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/AbstractCallInterceptor.java

            MethodHandle spreader = original.asSpreader(Object[].class, original.type().parameterCount());
            MethodHandle decorated = MethodHandles.insertArguments(INTERCEPTOR, 0, this, spreader, flags, caller.lookupClass().getName());
            return decorated.asCollector(Object[].class, original.type().parameterCount()).asType(original.type());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 14:02:30 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbComNtTransaction.java

                dstIndex += 4;
                writeInt4( maxDataCount, dst, dstIndex );
                dstIndex += 4;
            }
            writeInt4( parameterCount, dst, dstIndex );
            dstIndex += 4;
            writeInt4(( parameterCount == 0 ? 0 : parameterOffset ), dst, dstIndex );
            dstIndex += 4;
            if (command == SMB_COM_NT_TRANSACT_SECONDARY) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtTransaction.java

                dstIndex += 4;
                SMBUtil.writeInt4(this.maxDataCount, dst, dstIndex);
                dstIndex += 4;
            }
            SMBUtil.writeInt4(this.parameterCount, dst, dstIndex);
            dstIndex += 4;
            SMBUtil.writeInt4( ( this.parameterCount == 0 ? 0 : this.parameterOffset ), dst, dstIndex);
            dstIndex += 4;
            if ( this.getCommand() == SMB_COM_NT_TRANSACT_SECONDARY ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 17 13:43:42 UTC 2020
    - 3.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbComNtTransactionResponse.java

            if( bufDataStart == 0 ) {
                bufDataStart = totalParameterCount;
            }
            bufferIndex += 4;
            totalDataCount = readInt4( buffer, bufferIndex );
            bufferIndex += 4;
            parameterCount = readInt4( buffer, bufferIndex );
            bufferIndex += 4;
            parameterOffset = readInt4( buffer, bufferIndex );
            bufferIndex += 4;
            parameterDisplacement = readInt4( buffer, bufferIndex );
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/JavaSerializationEncodingLookup.kt

        private
        fun writeReplaceMethodFrom(candidates: List<Method>) =
            candidates.firstAccessibleMatchingMethodOrNull {
                !Modifier.isStatic(modifiers)
                    && parameterCount == 0
                    && returnType == java.lang.Object::class.java
                    && name == "writeReplace"
            }
    
        private
        fun writeObjectMethodHierarchyFrom(candidates: List<Method>) = candidates
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionResponse.java

                this.bufDataStart = this.totalParameterCount;
            }
            bufferIndex += 4;
            this.totalDataCount = SMBUtil.readInt4(buffer, bufferIndex);
            bufferIndex += 4;
            this.parameterCount = SMBUtil.readInt4(buffer, bufferIndex);
            bufferIndex += 4;
            this.parameterOffset = SMBUtil.readInt4(buffer, bufferIndex);
            bufferIndex += 4;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/test/groovy/org/gradle/tooling/internal/provider/action/BuildActionSerializerTest.groovy

                .findAll { it.propertyType == boolean }
                .findAll { p -> StartParameterInternal.methods.find { m -> m.name == "set" + p.name.capitalize() && m.parameterCount == 1 && m.parameterTypes[0] == Boolean.TYPE } }
                .collect { it.name }
        }
    
        def "serializes BuildModelAction"() {
            def startParameter = new StartParameterInternal()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top