Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,008 for locations (0.12 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDynamicRevisionRemoteResolveIntegrationTest.groovy

            fails "checkDeps"
            failure.assertHasCause("""Could not find any version that matches group:projectA:2.+.
    Versions that do not match:
      - 3.0
      - 1.2
      - 1.1
    Searched in the following locations:
      - ${dirListRepo1.uri}
    Required by:
    """)
    
            when:
            useRepository repo2
            repo2.module("group", "projectA", "3.0").publish()
            repo2.module("group", "projectA", "4.4").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 41.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDynamicRevisionResolveIntegrationTest.groovy

            then:
            failureHasCause '''Could not find any version that matches org.test:projectA:latest.milestone.
    Versions that do not match: 1.3
    Searched in the following locations:
    '''
    
            when:
            resetExpectations()
            repository {
                'org.test:projectA:1.0' {
                    withModule {
                        withStatus 'milestone'
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  3. cluster/common.sh

        "${KUBE_ROOT}/kubernetes/server/${tarball}"    
        "${KUBE_ROOT}/_output/release-tars/${tarball}"
      )
      location=$( (ls -t "${locations[@]}" 2>/dev/null || true) | head -1 )
    
      if [[ ! -f "${location}" ]]; then
        echo "!!! Cannot find ${tarball}" >&2
        exit 1
      fi
      echo "${location}"
    }
    
    # Verify and find the various tar files that we are going to use on the server.
    #
    # Assumed vars:
    #   KUBE_ROOT
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 17 15:36:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/symbolizer/symbolizer.go

    		return f
    	}
    
    	missingBinaries := false
    	mappingLocs := map[*profile.Mapping][]*profile.Location{}
    	for _, l := range prof.Location {
    		mappingLocs[l.Mapping] = append(mappingLocs[l.Mapping], l)
    	}
    	for midx, m := range prof.Mapping {
    		locs := mappingLocs[m]
    		if len(locs) == 0 {
    			// The mapping is dangling and has no locations pointing to it.
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/storage/storage_factory.go

    	// etcdLocation contains the list of "special" locations that are used for particular GroupResources
    	// These are merged on top of the StorageConfig when requesting the storage.Interface for a given GroupResource
    	etcdLocation []string
    	// etcdPrefix is the base location for a GroupResource.
    	etcdPrefix string
    	// etcdResourcePrefix is the location to use to store a particular type under the `etcdPrefix` location
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 13:35:58 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    	"hide": helpText(
    		"Skips nodes matching regexp",
    		"Discard nodes that match this location.",
    		"Other nodes from samples that include this location will be shown.",
    		"Matching includes the function name, filename or object name."),
    	"show": helpText(
    		"Only show nodes matching regexp",
    		"If set, only show nodes that match this location.",
    		"Matching includes the function name, filename or object name."),
    	"show_from": helpText(
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/AvailableToolChains.java

                }
            });
        }
    
        static private List<ToolChainCandidate> findVisualCpps() {
            // Search in the standard installation locations
            final List<? extends VisualStudioInstall> searchResults = VisualStudioLocatorTestFixture.getVisualStudioLocator().locateAllComponents();
    
            List<ToolChainCandidate> toolChains = new ArrayList<>();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppLibraryPluginTest.groovy

            e.cause instanceof IllegalStateException
            e.cause.message == "The value for property 'linkage' is final and cannot be changed any further."
        }
    
        def "output locations are calculated using base name defined on extension"() {
            when:
            project.pluginManager.apply(CppLibraryPlugin)
            project.library.baseName = "test_lib"
            project.evaluate()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/groovy_plugin.adoc

    Just like the Java plugin, the Groovy plugin allows you to configure custom locations for Groovy production and test source files.
    
    .Custom Groovy source layout
    ====
    include::sample[dir="snippets/groovy/customizedLayout/kotlin",files="build.gradle.kts[tags=custom-source-locations]"]
    include::sample[dir="snippets/groovy/customizedLayout/groovy",files="build.gradle[tags=custom-source-locations]"]
    ====
    
    [[sec:groovy_dependency_management]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  10. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/JavaToolchainQueryServiceTest.groovy

                    def vendor = getVendor.apply(javaInstallationLocation.location.name)
                    newMetadata(javaInstallationLocation, languageVersion, vendor)
                }
            }
        }
    
        def newMetadata(InstallationLocation javaHome, String languageVersion, String vendor = "") {
            def location = javaHome.location
            if (location.name.contains("broken")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top