Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 949 for discovered (0.22 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/LegacyWindowsSdkLocatorTest.groovy

            then:
            1 * visitor.node("The specified installation directory '$sdkDir1' does not appear to contain a Windows SDK installation.")
        }
    
        def "fills in meta-data from registry for SDK discovered using the path"() {
            def sdkDir = sdkDir("sdk1")
    
            given:
            operatingSystem.findInPath("rc.exe") >> sdkDir.file("bin/rc.exe")
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/runtime/runtime.go

    			strings.Join(foundCRISockets, ", "))
    	}
    }
    
    // DetectCRISocket uses a list of known CRI sockets to detect one. If more than one or none is discovered, an error is returned.
    func DetectCRISocket() (string, error) {
    	return detectCRISocketImpl(isExistingSocket, defaultKnownCRISockets)
    }
    
    // SandboxImage returns the sandbox image used by the container runtime
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 8.4K 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. maven-core/plugin-manager.txt

    h3. Discovery all Plexus components
    
    Once the ClassRealm is populated with the plugin artifact and its dependency artifacts a discovery operation must be performed on the plugin ClassRealm in order to discover any Plexus components that may be present in any of the artifacts required for the plugins execution.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 22:45:13 UTC 2022
    - 12.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/publishing_gradle_plugins.adoc

    <7> Set a description to be displayed on the portal. It provides useful information to people who want to use your plugin.
    <8> Specifies the categories your plugin covers. It makes the plugin more likely to be discovered by people needing its functionality.
    
    For example, consider the configuration for the https://plugins.gradle.org/plugin/org.ysb33r.gradletest[GradleTest plugin], already published to the {portal}.
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. 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)
Back to top