Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 3,230 for para1 (0.05 sec)

  1. src/main/java/jcifs/internal/smb1/com/SmbComWriteAndX.java

    
        /**
         * 
         * @param config
         */
        public SmbComWriteAndX ( Configuration config ) {
            super(config, SMB_COM_WRITE_ANDX, null);
        }
    
    
        /**
         * 
         * @param config
         * @param fid
         * @param offset
         * @param remaining
         * @param b
         * @param off
         * @param len
         * @param andx
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ScriptHandlerScope.kt

         *
         * @param group the group of the module to be added as a dependency.
         * @param name the name of the module to be added as a dependency.
         * @param version the optional version of the module to be added as a dependency.
         * @param configuration the optional configuration of the module to be added as a dependency.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  3. maven-plugin-api/src/main/java/org/apache/maven/plugin/MojoExecutionException.java

         * these messages are used to improve the message written at the end of Maven build.
         *
         * @param source
         * @param shortMessage
         * @param longMessage
         */
        public MojoExecutionException(Object source, String shortMessage, String longMessage) {
            super(shortMessage);
            this.source = source;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. test/escape_unsafe.go

    // reflect.Value.UnsafeAddr from uintptr to Pointer.
    
    // BAD: should be "leaking param: p to result ~r0 level=0$"
    func valuePointer(p *int) unsafe.Pointer { // ERROR "leaking param: p$"
    	return unsafe.Pointer(reflect.ValueOf(p).Pointer())
    }
    
    // BAD: should be "leaking param: p to result ~r0 level=0$"
    func valueUnsafeAddr(p *int) unsafe.Pointer { // ERROR "leaking param: p$"
    	return unsafe.Pointer(reflect.ValueOf(p).Elem().UnsafeAddr())
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 17:25:59 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ExtensionContainerExtensions.kt

        getByName<T>(property.name)
    
    
    /**
     * Adds a new extension to this container.
     *
     * @param T the public type of the added extension
     * @param name the name of the extension
     * @param extension the extension instance
     *
     * @throws IllegalArgumentException When an extension with the given name already exists.
     *
     * @see [ExtensionContainer.add]
     * @since 5.0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelResolverException.java

         *
         * @param message The detail message, may be {@code null}.
         * @param groupId The group id of the unresolvable model, may be {@code null}.
         * @param artifactId The artifact id of the unresolvable model, may be {@code null}.
         * @param version The version of the unresolvable model, may be {@code null}.
         * @param cause The cause, may be {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/exception/EmptyArgumentException.java

        }
    
        /**
         * {@link EmptyArgumentException}を作成します。
         *
         * @param argName
         *            引数の名前
         * @param messageCode
         *            メッセージコード
         * @param args
         *            引数の配列
         * @param cause
         *            原因となった例外
         */
        public EmptyArgumentException(final String argName, final String messageCode, final Object[] args, final Throwable cause) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/Smb3KeyDerivation.java

        private static final byte[] DECLABEL_311 = toCBytes("SMB2S2CCipherKey");
    
    
        /**
         * 
         */
        private Smb3KeyDerivation () {}
    
    
        /**
         * 
         * @param dialect
         * @param sessionKey
         * @param preauthIntegrity
         * @return derived signing key
         */
        public static byte[] deriveSigningKey ( int dialect, byte[] sessionKey, byte[] preauthIntegrity ) {
            return derive(
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.7K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/project/CrossProjectModelAccess.java

        /**
         * Locates the given project relative to some project.
         *
         * @param referrer The project from which the return value will be used.
         * @param path absolute path
         */
        @Nullable
        ProjectInternal findProject(ProjectInternal referrer, ProjectInternal relativeTo, String path);
    
        /**
         * @param referrer The project from which the return value will be used.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 04:11:36 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/main/java/org/gradle/language/BinaryCollection.java

         *
         * <p>Querying the return value will fail when there is not exactly one matching binary.
         *
         * @param type type to match
         * @param spec specification to satisfy. The spec is applied to each binary prior to configuration.
         * @param <S> type of the binary to return
         * @return a binary from the collection in a finalized state
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top