Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 264 for replaced (0.14 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/PathSource.java

            return new PathSource(path.resolve(relative));
        }
    
        @Override
        public ModelSource resolve(ModelLocator locator, String relative) {
            String norm = relative.replace('\\', File.separatorChar).replace('/', File.separatorChar);
            Path path = getPath().getParent().resolve(norm);
            Path relatedPom = locator.locateExistingPom(path);
            if (relatedPom != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FilteredFileCollection.java

            this.collection = collection;
            this.filterSpec = filterSpec;
        }
    
        @Override
        public FileCollectionInternal replace(FileCollectionInternal original, Supplier<FileCollectionInternal> supplier) {
            AbstractFileCollection newCollection = (AbstractFileCollection) collection.replace(original, supplier);
            if (newCollection == collection) {
                return this;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 08:16:53 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/WithPluginValidation.groovy

                            projectPath = ':'
                        }
                        [projectPath, pluginId]
                    }
                pluginsWithProjectPath.each { projectPath, id ->
                    def dottedId = id.replace('_', '.')
                    boolean pluginValidationIsExpectedToPass = passingPluginsPredicate(dottedId)
                    if (pluginValidationIsExpectedToPass) {
                        onPlugin(dottedId, projectPath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:13:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. manifests/charts/istio-operator/Chart.yaml

    apiVersion: v2
    name: istio-operator
    # This version is never actually shipped. istio/release-builder will replace it at build-time
    # with the appropriate version
    version: 1.0.0
    appVersion: 1.0.0
    description: Helm chart for deploying Istio operator
    keywords:
      - istio
      - operator
    sources:
      - https://github.com/istio/istio/tree/master/operator
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 18:29:34 UTC 2024
    - 404 bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildSrcProblemReportingIntegrationTest.groovy

            problems.assertFailureHasProblems(failure) {
                withProblem("Build file 'buildSrc/build.gradle': line 11: invocation of 'Task.project' at execution time is unsupported.".replace('/', File.separator))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. manifests/charts/istio-cni/Chart.yaml

    apiVersion: v2
    name: cni
    # This version is never actually shipped. istio/release-builder will replace it at build-time
    # with the appropriate version
    version: 1.0.0
    appVersion: 1.0.0
    description: Helm chart for istio-cni components
    keywords:
      - istio-cni
      - istio
    sources:
      - https://github.com/istio/istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 18:29:34 UTC 2024
    - 369 bytes
    - Viewed (0)
  7. manifests/charts/default/Chart.yaml

    apiVersion: v2
    name: istio-default
    # This version is never actually shipped. istio/release-builder will replace it at build-time
    # with the appropriate version
    version: 1.0.0
    appVersion: 1.0.0
    description: Helm chart for istio default revision components.
    keywords:
      - istio
    sources:
      - https://github.com/istio/istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 18:29:34 UTC 2024
    - 379 bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/Chart.yaml

    apiVersion: v2
    name: istiod
    # This version is never actually shipped. istio/release-builder will replace it at build-time
    # with the appropriate version
    version: 1.0.0
    appVersion: 1.0.0
    description: Helm chart for istio control plane
    keywords:
      - istio
      - istiod
      - istio-discovery
    sources:
      - https://github.com/istio/istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 18:29:34 UTC 2024
    - 388 bytes
    - Viewed (0)
  9. manifests/charts/base/Chart.yaml

    apiVersion: v2
    name: base
    # This version is never actually shipped. istio/release-builder will replace it at build-time
    # with the appropriate version
    version: 1.0.0
    appVersion: 1.0.0
    description: Helm chart for deploying Istio cluster resources and CRDs
    keywords:
      - istio
    sources:
      - https://github.com/istio/istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 18:29:34 UTC 2024
    - 378 bytes
    - Viewed (0)
  10. platforms/core-runtime/daemon-protocol/src/testFixtures/groovy/org/gradle/tooling/internal/provider/AbstractClassGraphSpec.groovy

         */
        List<File> isolatedClasses(Class<?>... classes) {
            return classes.collect {
                def name = it.name.replace('.', '/') + '.class'
                def classPathRoot = tmpDir.file(it.name)
                def classFile = classPathRoot.file(name)
                def resource = it.classLoader.getResource(name)
                classFile.parentFile.mkdirs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top