Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 885 for delegates (0.15 sec)

  1. maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java

            List<ClassRealmManagerDelegate> delegates = new ArrayList<>(this.delegates);
    
            if (!delegates.isEmpty()) {
                ClassRealmRequest request =
                        new DefaultClassRealmRequest(type, parent, parentImports, foreignImports, constituents);
    
                for (ClassRealmManagerDelegate delegate : delegates) {
                    try {
                        delegate.setupRealm(classRealm, request);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:53:42 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  2. testing/architecture-test/src/changes/archunit-store/public-api-not-extends-internal-types.txt

    Class <org.gradle.kotlin.dsl.DependencyHandlerScope> extends/implements org.gradle.kotlin.dsl.support.delegates.DependencyHandlerDelegate that is Gradle Internal API in (DependencyHandlerScope.kt:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. okhttp-urlconnection/src/main/kotlin/okhttp3/JavaNetCookieJar.kt

    /**
     * A cookie jar that delegates to a [java.net.CookieHandler].
     *
     * This implementation delegates everything to [okhttp3.java.net.cookiejar.JavaNetCookieJar], which
     * conforms to the package-naming limitations of JPMS.
     *
     * Callers should prefer to use [okhttp3.java.net.cookiejar.JavaNetCookieJar] directly.
     */
    class JavaNetCookieJar private constructor(
      delegate: okhttp3.java.net.cookiejar.JavaNetCookieJar,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr4_settings_file.adoc

    ----
    includeBuild("some-build")                         // Delegates to Settings.includeBuild()
    reportsDir = findProject("/myInternalProject")     // Delegates to Settings.findProject()
    ----
    =====
    [.multi-language-sample]
    =====
    [source, groovy]
    ----
    includeBuild('some-build')                         // Delegates to Settings.includeBuild()
    reportsDir = findProject('/myInternalProject')     // Delegates to Settings.findProject()
    ----
    =====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/configuration/BuildOperationScriptPluginTest.groovy

        def buildOperationScriptPlugin = new BuildOperationScriptPlugin(decoratedScriptPlugin, buildOperationRunner, userCodeApplicationContext)
        def target = "Test Target"
    
        def "delegates to decorated script plugin via build operation"() {
            when:
            buildOperationScriptPlugin.apply(target)
    
            then:
            2 * scriptSource.getResource() >> scriptSourceResource
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/AbstractSkipEmptyWorkStepTest.groovy

            then:
            1 * delegate.execute(work, {
                it.inputProperties as Map == ["known": knownSnapshot]
                it.inputFileProperties as Map == ["known-file": knownFileFingerprint]
            }) >> delegateResult
            1 * workInputListeners.broadcastFileSystemInputsOf(work, allFileInputs)
            0 * _
    
            result == delegateResult
        }
    
        def "delegates when work has sources"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:30 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java

            }
    
            LifecycleMappingDelegate delegate;
            if (Arrays.binarySearch(DefaultLifecycles.STANDARD_LIFECYCLES, lifecycle.getId()) >= 0) {
                delegate = standardDelegate;
            } else {
                delegate = delegates.get(lifecycle.getId());
                if (delegate == null) {
                    delegate = standardDelegate;
                }
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ShortCircuitEmptyConfigurationResolverSpec.groovy

            1 * lockingState.lockedDependencies >> [DefaultModuleComponentIdentifier.newId(DefaultModuleIdentifier.newId('org', 'foo'), '1.0')]
            1 * delegate.resolveGraph(resolveContext) >> delegateResults
            results == delegateResults
        }
    
        def "delegates to backing service to resolve build dependencies when there are one or more dependencies"() {
            given:
            ResolverResults delegateResults = Mock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-application/src/test/groovy/org/gradle/api/plugins/ApplicationPluginTest.groovy

        }
    
        void "mainClassName in project delegates to mainClassName in startScripts task"() {
            when:
            plugin.apply(project);
            project.mainClassName = "Acme"
    
            then:
            def startScripts = project.tasks[ApplicationPlugin.TASK_START_SCRIPTS_NAME]
            startScripts.mainClassName == "Acme"
        }
    
        void "applicationDefaultJvmArgs in project delegates to jvmArgs in run task"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingServerSocketFactory.kt

    /**
     * A [ServerSocketFactory] that delegates calls. Sockets can be configured after creation by
     * overriding [.configureServerSocket].
     */
    open class DelegatingServerSocketFactory(private val delegate: ServerSocketFactory) : ServerSocketFactory() {
      @Throws(IOException::class)
      override fun createServerSocket(): ServerSocket {
        val serverSocket = delegate.createServerSocket()
        return configureServerSocket(serverSocket)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top