Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 949 for discovered (0.14 sec)

  1. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/reflect/JavaMethodTest.groovy

            then:
            NoSuchMethodException e = thrown()
            e.message == /Could not find method unknown() on JavaMethodTestSubjectSubclass./
        }
    
        def "default methods are discovered"() {
            expect:
            JavaMethod.of(JavaMethodTestSubjectSubclass, String, "defaultMethod").invoke(new JavaMethodTestSubjectSubclass()) == "parent-interface"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/internal/project/taskfactory/TaskPropertyNamingIntegrationTest.groovy

            output.contains 'Output: outputFiles$2 [output2.txt]'
        }
    
        @ToBeFixedForConfigurationCache(because = "task references another task")
        def "nested properties are discovered"() {
            buildFile << classesForNestedProperties()
            buildFile << """
                task test(type: TaskWithNestedObjectProperty) {
                    input = "someString"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 21 19:38:50 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultRealizableTaskCollectionTest.groovy

            collection.visitDependencies(Stub(TaskDependencyResolveContext))
    
            then:
            registry.state("tasks.redundant") == ModelNode.State.Discovered
        }
    
        def "realize is idempotent"() {
            given:
            ModelRegistryHelper registry = new ModelRegistryHelper()
            ModelPath path = ModelPath.path("tasks")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 22 12:57:17 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/api/services/model/RootLocator.java

     * One notable exception is the computation of the early {@code session.rootDirectory}
     * property which happens very early.  The implementation used in this case
     * will be discovered using the JDK service mechanism.
     *
     * The default implementation will look for a {@code .mvn} child directory
     * or a {@code pom.xml} containing the {@code root="true"} attribute.
     */
    public interface RootLocator {
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/classpath/InstrumentedGroovyCallsTracker.java

        @Nullable
        String findCallerForCurrentCallIfNotIntercepted(String callableName, CallKind kind);
    
        /**
         * Matches the current thread's innermost instrumented call as intercepted, after which it cannot be discovered with
         * {@link InstrumentedGroovyCallsTracker#findCallerForCurrentCallIfNotIntercepted}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:57:59 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. pilot/pkg/xds/eds.go

    package xds
    
    import (
    	"fmt"
    
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    	"istio.io/istio/pilot/pkg/xds/endpoints"
    	"istio.io/istio/pkg/config/schema/kind"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // SvcUpdate is a callback from service discovery when service info changes.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/tasks/AbstractNativeCompileTask.java

        }
    
        /**
         * Returns the header directories to be used for compilation.
         */
        @Internal("The paths for include directories are tracked via the includePaths property, the contents are tracked via discovered inputs")
        public ConfigurableFileCollection getIncludes() {
            return includes;
        }
    
        /**
         * Add directories where the compiler should search for header files.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/README.adoc

    a regular build script.
    
    [.multi-language-text.lang-kotlin]
    In order for precompiled script plugins to be discovered, the `buildSrc` project needs to apply the `kotlin-dsl` plugin
    in its `build.gradle.kts` file:
    
    
    [.multi-language-text.lang-groovy]
    In order for precompiled script plugins to be discovered, the `buildSrc` project needs to apply the `groovy-gradle-plugin` plugin
    in its `build.gradle` file:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  9. test/fixedbugs/bug491.go

    // run
    
    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test order of calls to builtin functions.
    // Discovered during CL 144530045 review.
    
    package main
    
    func main() {
    	// append
    	{
    		x := make([]int, 0)
    		f := func() int { x = make([]int, 2); return 2 }
    		a, b, c := append(x, 1), f(), append(x, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/incubating/build-organization/publishing-convention-plugins/README.adoc

    a regular build script.
    
    [.multi-language-text.lang-kotlin]
    In order for precompiled script plugins to be discovered, the `convention-plugins` project needs to apply the `kotlin-dsl` plugin
    in its `build.gradle.kts` file:
    
    [.multi-language-text.lang-groovy]
    In order for precompiled script plugins to be discovered, the `convention-plugins` project needs to apply the `groovy-gradle-plugin` plugin
    in its `build.gradle` file:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.2K bytes
    - Viewed (0)
Back to top