Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 2,390 for patching (0.29 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

            assertSuggestsReviewingAlgorithm()
            assertSuggestsViewingDocs("No matching variant errors are explained in more detail at https://docs.gradle.org/${GradleVersion.current().version}/userguide/variant_model.html#sub:variant-no-match.")
        }
    
        @ToBeFixedForConfigurationCache
        def "demonstrate no matching graph variants selection failure for externalDep"() {
            noMatchingGraphVariantsForExternalDep.prepare()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/DomainObjectSet.java

        @Override
        <S extends T> DomainObjectSet<S> withType(Class<S> type);
    
        /**
         * {@inheritDoc}
         */
        @Override
        DomainObjectSet<T> matching(Spec<? super T> spec);
    
        /**
         * {@inheritDoc}
         */
        @Override
        DomainObjectSet<T> matching(Closure spec);
    
        /**
         * {@inheritDoc}
         */
        @Override
        Set<T> findAll(Closure spec);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 01 21:44:06 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  3. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/DefaultOsXJavaHomeCommandTest.groovy

            ])
            result.size() == 1
        }
    
        def "can parse output with no installations"() {
            given:
            def output = """
    Unable to find any JVMs matching version "(null)".
    Matching Java Virtual Machines (0):
    
    Default Java Virtual Machines (0):
    
    No Java runtime present, try --request to install.
    """
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. pkg/registry/core/configmap/storage/storage_test.go

    	test.TestWatch(
    		validNewConfigMap(),
    		// matching labels
    		[]labels.Set{
    			{"label-1": "value-1"},
    			{"label-2": "value-2"},
    		},
    		// not matching labels
    		[]labels.Set{
    			{"foo": "bar"},
    		},
    		// matching fields
    		[]fields.Set{
    			{"metadata.namespace": "default"},
    			{"metadata.name": "foo"},
    		},
    		// not matching fields
    		[]fields.Set{
    			{"metadata.name": "bar"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 12 20:55:35 UTC 2019
    - 4.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/plugin.go

    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apiserver/pkg/admission"
    	"k8s.io/apiserver/pkg/admission/initializer"
    	"k8s.io/apiserver/pkg/admission/plugin/policy/matching"
    	"k8s.io/apiserver/pkg/authorization/authorizer"
    	"k8s.io/client-go/dynamic"
    	"k8s.io/client-go/informers"
    	"k8s.io/client-go/kubernetes"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 19:11:10 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/java/toolchain-filters/tests/matchingVendorWithoutCC.out

       > Failed to calculate the value of task ':compileJava' property 'javaCompiler'.
          > Cannot find a Java installation on your machine matching this tasks requirements: {languageVersion=11, vendor=matching('customString'), implementation=vendor-specific} for %OS% on %ARCH%.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 21 03:08:51 UTC 2024
    - 513 bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DomainObjectCollectionExtensions.kt

    /**
     * Returns a collection containing the objects in this collection of the given type. The
     * returned collection is live, so that when matching objects are later added to this
     * collection, they are also visible in the filtered collection.
     *
     * @param S The type of objects to find.
     * @return The matching objects. Returns an empty collection if there are no such objects
     * in this collection.
     * @see [DomainObjectCollection.withType]
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testcshared/testdata/libgo5/libgo5.go

    	"syscall"
    	"time"
    )
    
    // The channel used to read SIGIO signals.
    var sigioChan chan os.Signal
    
    // CatchSIGIO starts catching SIGIO signals.
    //
    //export CatchSIGIO
    func CatchSIGIO() {
    	sigioChan = make(chan os.Signal, 1)
    	signal.Notify(sigioChan, syscall.SIGIO)
    }
    
    // ResetSIGIO stops catching SIGIO signals.
    //
    //export ResetSIGIO
    func ResetSIGIO() {
    	signal.Reset(syscall.SIGIO)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 986 bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/impl/WatchingVirtualFileSystem.java

                        }
                        FileSystemWatchingStatistics statisticsSinceLastBuild;
                        if (watchRegistry == null) {
                            if (couldDetectUnsupportedFileSystems) {
                                context.setStatus("Starting file system watching");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 16:22:15 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_debugging.adoc

    [[finding_problems]]
    == Finding problems with task output caching
    
    Below we describe a step-by-step process that should help shake out any problems with caching in your build.
    
    === Ensure incremental build works
    
    First, make sure your build does the right thing without the cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 15K bytes
    - Viewed (0)
Back to top