Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 169 for Discovered (0.15 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/FinalizerTaskIntegrationTest.groovy

            }
        }
    
        @Issue("https://github.com/gradle/gradle/issues/21325")
        def "finalizer can have dependencies that are not reachable from first discovered finalized task and reachable from second discovered finalized task"() {
            buildFile '''
                task classes(type: BreakingTask) {
                }
    
                task jar(type: BreakingTask) {
                    dependsOn classes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  2. pkg/controller/garbagecollector/garbagecollector.go

    			logger.V(4).Info("reset restmapper")
    
    			// Perform the monitor resync and wait for controllers to report cache sync.
    			//
    			// NOTE: It's possible that newResources will diverge from the resources
    			// discovered by restMapper during the call to Reset, since they are
    			// distinct discovery clients invalidated at different times. For example,
    			// newResources may contain resources not returned in the restMapper's
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesRulesIntegrationTest.groovy

       Cannot select module with conflict on capability 'cglib:cglib:3.2.5' also provided by [cglib:cglib-nodep:3.2.5($variant)]""")
        }
    
        def "implicit capability conflict is detected if implicit capability is discovered late"() {
            given:
            repository {
                'cglib:cglib:3.2.5'()
                'cglib:cglib-nodep:3.2.5'()
                'org:lib:1.0' {
                    dependsOn 'cglib:cglib:3.2.5'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_fuzz_mutate_crash.txt

    [!fuzz] skip
    
    # Tests that a crash caused by a mutator-discovered input writes the bad input
    # to testdata, and fails+reports correctly. This tests the end-to-end behavior
    # of the mutator finding a crash while fuzzing, adding it as a regression test
    # to the seed corpus in testdata, and failing the next time the test is run.
    
    [short] skip
    env GOCACHE=$WORK/cache
    
    # Running the seed corpus for all of the targets should pass the first
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/configurationcache/ConfigurationCacheFixture.groovy

        }
    
        private void assertHasRecreateReason(HasBuildActions details, HasInvalidationReason invalidationDetails) {
            // Inputs can be discovered in parallel, so require that any one of the changed inputs is reported
    
            def reasons = []
            invalidationDetails.changedFiles.each { file ->
                reasons.add("file '${file.replace('/', File.separator)}'")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  6. pkg/config/analysis/README.md

    ## Writing Analyzers
    
    ### 1. Create the code
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/go.go

    	// Record the directives. We'll process them later after Symbols are created.
    	ctxt.cgodata = append(ctxt.cgodata, cgodata{file, pkg, directives})
    }
    
    // Set symbol attributes or flags based on cgo directives.
    // Any newly discovered HOSTOBJ syms are added to 'hostObjSyms'.
    func setCgoAttr(ctxt *Link, file string, pkg string, directives [][]string, hostObjSyms map[loader.Sym]struct{}) {
    	l := ctxt.loader
    	for _, f := range directives {
    		switch f[0] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/caching/CrossBuildCachingRuleExecutor.java

                    // 1. the cache policy said that the entry is still valid (for example, `--refresh-dependencies` wasn't called)
                    // 2. if the rule is cacheable, we have validated that its discovered inputs are still the same
                    return entry.getResult();
                } else if (LOGGER.isDebugEnabled()) {
                    LOGGER.debug("Invalidating result for rule {} and key {} in cache", rules, key);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  9. maven-core/plugin-manager.txt

    - create a plugin processor
    - directory
    - jar
    - hooks for loading
    
    - I could make an annotation that marked another class as its plugin discoverer, I could just add it to
      the component descriptor and when it's loaded we can add the discoverer, that would be simpler. I could
      also do this with the lister as well
    i'l
    // 1 the metadata -> model plugin/mojo descriptor
    // 2 tools for doing the mapping
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 22:45:13 UTC 2022
    - 12.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesUseCasesIntegrationTest.groovy

            'org.ow2.asm:asm:4.0' | 'asm:asm:3.0'         | true
        }
    
        /**
         * This test illustrates that published modules can declare capabilities, which are then discovered
         * as we visit the graph. But using a module substitution rule, we can fix the problem.
         */
    
        @RequiredFeature(feature = GradleMetadataResolveRunner.GRADLE_METADATA, value = "true")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.9K bytes
    - Viewed (0)
Back to top