Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 3,230 for para1 (0.23 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DependenciesExtensions.kt

    
    /**
     * Add a dependency.
     *
     * @param dependencyNotation dependency to add
     * @see DependencyFactory.create
     * @since 8.6
     */
    operator fun DependencyCollector.invoke(dependencyNotation: CharSequence) = add(dependencyNotation)
    
    
    /**
     * Add a dependency.
     *
     * @param dependencyNotation dependency to add
     * @param configuration an action to configure the dependency
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 12 18:51:29 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/ProcessEnvironment.java

         * Removes the given environment variable, if possible.
         *
         * @param name The name of the environment variable.
         * @return true if removed, false if not possible.
         */
        EnvironmentModificationResult maybeRemoveEnvironmentVariable(String name);
    
        /**
         * Sets the given environment variable.
         *
         * @param name The name
         * @param value The value. Can be null, which removes the environment variable.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/descriptor/DeploymentDescriptor.java

         *
         * @param module
         *            The module to add.
         * @param type
         *            The type of the module, such as "ejb", "java", etc.
         * @return this.
         */
        DeploymentDescriptor module(EarModule module, String type);
    
        /**
         * Add a module to the deployment descriptor.
         *
         * @param path
         *            The path of the module to add.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 19 22:06:51 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/misc/Tuple3.java

        protected T3 value3;
    
        /**
         * 3つの値の組を作成して返します。
         *
         * @param <T1>
         *            1番目の値の型
         * @param <T2>
         *            2番目の値の型
         * @param <T3>
         *            3番目の値の型
         * @param value1
         *            1番目の値
         * @param value2
         *            2番目の値
         * @param value3
         *            3番目の値
         * @return 3つの値の組
         */
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/io/PropertiesUtil.java

        /**
         * 指定のエンコーディングでファイルを書き出して{@link Properties}をストアします(例外処理はラップします)。
         *
         * @param props
         *            プロパティセット。{@literal null}であってはいけません
         * @param file
         *            ファイル。{@literal null}であってはいけません
         * @param encoding
         *            エンコーディング。{@literal null}や空文字列であってはいけません
         * @param comments
         *            コメント
         */
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/convert/DateConversionUtil.java

         * オブジェクトを{@link Date}に変換します。
         *
         * @param src
         *            変換元のオブジェクト
         * @return 変換された{@link Date}
         */
        public static Date toDate(final Object src) {
            return toDate(src, null, LocaleUtil.getDefault());
        }
    
        /**
         * オブジェクトを{@link Date}に変換します。
         *
         * @param src
         *            変換元のオブジェクト
         * @param pattern
         *            パターン文字列
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/beans/BeanDesc.java

        /**
         * 新しいインスタンスを作成します。
         *
         * @param <T>
         *            Beanクラスの型
         * @param args
         *            コンストラクタに渡す引数の並び
         * @return 新しいインスタンス
         */
        <T> T newInstance(Object... args);
    
        /**
         * 引数の型に応じた{@link ConstructorDesc}を返します。
         *
         * @param paramTypes
         *            コンストラクタに渡す引数型の並び
         * @return 引数の型に応じた{@link ConstructorDesc}
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/process/JavaForkOptions.java

        /**
         * Sets the system properties to use for the process.
         *
         * @param properties The system properties. Must not be null.
         */
        void setSystemProperties(Map<String, ?> properties);
    
        /**
         * Adds some system properties to use for the process.
         *
         * @param properties The system properties. Must not be null.
         * @return this
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  9. test/escape_reflect.go

    func interface4(x *int) any { // ERROR "leaking param: x$"
    	v := reflect.ValueOf(x)
    	return v.Interface()
    }
    
    func addr(x *int) reflect.Value { // ERROR "leaking param: x to result ~r0 level=0"
    	v := reflect.ValueOf(x).Elem()
    	return v.Addr()
    }
    
    // functions returning pointer as uintptr have to escape.
    func uintptr1(x *int) uintptr { // ERROR "leaking param: x$"
    	v := reflect.ValueOf(x)
    	return v.Pointer()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/SMBSigningDigest.java

         * The first 8 bytes of this are placed in the signature field.
         *
         * @param data
         *            The data.
         * @param offset
         *            The starting offset at which the SMB header begins.
         * @param length
         *            The length of the SMB data starting at offset.
         * @param request
         *            request message
         * @param response
         *            response message
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 2.2K bytes
    - Viewed (0)
Back to top