Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 309 for bean2 (0.04 sec)

  1. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/ProjectSchemaAccessorsIntegrationTest.kt

                println("nested: " + typeOf(nested))
                nested { println("nested{} " + typeOf(this)) }
    
                println("beans: " + typeOf(beans))
                beans { println("beans{} " + typeOf(beans)) }
    
                // ensure API usage
                println(beans.create("bar").name)
                beans.create("baz") { println(name) }
                """
            )
    
            assertThat(
                build("help", "-q").output,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  2. dbflute_fess/dfprop/littleAdjustmentMap.dfprop

        #     Table names on SQL executed by condition-bean or behavior
        #     are forcedly treated as upper case. (except outside-SQL)
        #
        #; isTableSqlNameUpperCase = false
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o isColumnSqlNameUpperCase: (NotRequired - Default false)
        #   [true]
        #     Column names on SQL executed by condition-bean or behavior
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jul 25 06:04:16 UTC 2015
    - 8.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/dependencyLocking-lockModeSelection/kotlin/gradle/dependency-locks/compileClasspath.lockfile

    # This is a Gradle generated file for dependency locking.
    # Manual edits can break the build and are not advised.
    # This file is expected to be part of source control.
    org.springframework:spring-beans:5.0.5.RELEASE
    org.springframework:spring-core:5.0.5.RELEASE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 306 bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-problems-base/src/main/kotlin/org/gradle/internal/configuration/problems/PropertyProblem.kt

                    append("system property ")
                    quoted(trace.name)
                    append(" set at ")
                }
    
                is Bean -> {
                    quoted(trace.type.name)
                    append(" bean found in ")
                }
    
                is Task -> {
                    append("task ")
                    quoted(trace.path)
                    append(" of type ")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 21:59:50 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/dependencyLocking-lockModeSelection/groovy/build.gradle

    }
    // end::lock-mode[]
    
    configurations {
        compileClasspath {
            resolutionStrategy.activateDependencyLocking()
        }
    }
    
    dependencies {
        implementation 'org.springframework:spring-beans:[5.0,6.0)'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 343 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/dependencyLocking-unlockingSingleConfiguration/kotlin/build.gradle.kts

    configurations.compileClasspath {
        resolutionStrategy.deactivateDependencyLocking()
    }
    // end::locking-one[]
    
    // tag::locking-deps[]
    dependencies {
        implementation("org.springframework:spring-beans:[5.0,6.0)")
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 321 bytes
    - Viewed (0)
  7. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/jna/UnsupportedEnvironment.java

                } catch (NumberFormatException e) {
                    LOGGER.debug("Native-platform process: failed to parse PID from Runtime MX bean name: " + runtimeMXBeanName);
                }
            } else {
                LOGGER.debug("Native-platform process: failed to parse PID from Runtime MX bean name");
            }
            return pid;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/dependencyLocking-lockingSingleFilePerProject/groovy/gradle.lockfile

    # This is a Gradle generated file for dependency locking.
    # Manual edits can break the build and are not advised.
    # This file is expected to be part of source control.
    org.springframework:spring-beans:5.0.5.RELEASE=compileClasspath, runtimeClasspath
    org.springframework:spring-core:5.0.5.RELEASE=compileClasspath, runtimeClasspath
    org.springframework:spring-jcl:5.0.5.RELEASE=compileClasspath, runtimeClasspath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 437 bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/beans/impl/ParameterizedClassDescImpl.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.beans.impl;
    
    import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull;
    
    import org.codelibs.core.beans.ParameterizedClassDesc;
    
    /**
     * {@link ParameterizedClassDesc}の実装クラスです。
     *
     * @author koichik
     */
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BomSupportPluginsSmokeTest.groovy

            def springAopDeps = {
                module("org.springframework:spring-beans:${springVersion}")
                module("org.springframework:spring-core:${springVersion}")
            }
            def springContextDeps = {
                module("org.springframework:spring-aop:${springVersion}", springAopDeps).byReason(reason3)
                module("org.springframework:spring-beans:${springVersion}", springBeansDeps).byReason(reason3)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top