Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 178 for kubeversion (0.13 sec)

  1. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/management/internal/DefaultPluginResolveDetails.java

                targetPluginRequest,
                targetPluginRequest.getAlternativeCoordinates().orElse(null)
            );
        }
    
        @Override
        public void useVersion(String version) {
            targetPluginRequest = new DefaultPluginRequest(
                targetPluginRequest.getId(),
                targetPluginRequest.isApply(),
                targetPluginRequest.getOrigin(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:30:55 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. cluster/gce/windows/node-helper.sh

      metadata+="${NODE_EXTRA_METADATA}"
      echo "${metadata}"
    }
    
    function get-windows-node-instance-metadata {
      local metadata=""
      metadata+="k8s-version=${KUBE_VERSION:-v1.13.2},"
      # Prevent the GCE Windows agent from managing IP addresses, since kube-proxy
      # and these cluster setup scripts should take care of everything. See
      # https://github.com/kubernetes/kubernetes/issues/75561.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 03 10:20:06 UTC 2019
    - 2.6K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/plugin/management/PluginResolveDetails.java

         */
        void useModule(Object notation);
    
        /**
         * Sets the version of the plugin to use.
         *
         * @param version version to use
         */
        void useVersion(@Nullable String version);
    
        /**
         * The target plugin request to use.
         */
        PluginRequest getTarget();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 31 12:25:03 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  4. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPublication.java

     *             email = "******@****.***"
     *           }
     *         }
     *         scm {
     *           connection = "scm:svn:http://subversion.example.com/svn/project/trunk/"
     *           developerConnection = "scm:svn:https://subversion.example.com/svn/project/trunk/"
     *           url = "http://subversion.example.com/svn/project/trunk/"
     *         }
     *       }
     *     }
     *   }
     * }
     * </pre>
     *
     * @since 1.4
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  5. hack/lib/version.sh

          DASHES_IN_VERSION=$(echo "${KUBE_GIT_VERSION}" | sed "s/[^-]//g")
          if [[ "${DASHES_IN_VERSION}" == "---" ]] ; then
            # shellcheck disable=SC2001
            # We have distance to subversion (v1.1.0-subversion-1-gCommitHash)
            KUBE_GIT_VERSION=$(echo "${KUBE_GIT_VERSION}" | sed "s/-\([0-9]\{1,\}\)-g\([0-9a-f]\{14\}\)$/.\1\+\2/")
          elif [[ "${DASHES_IN_VERSION}" == "--" ]] ; then
            # shellcheck disable=SC2001
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:09 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/ResolvingSnapshotFromPluginRepositorySpec.groovy

              }
            """
    
            and:
            useCustomRepository("""
                resolutionStrategy.eachPlugin {
                    if(requested.id.name == 'plugin') {
                        useVersion('1.0-SNAPSHOT')
                    }
                }
            """)
    
            when:
            succeeds("pluginTask")
    
            then:
            output.contains("I'm here")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:20:28 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/management/internal/DefaultPluginResolutionStrategy.java

            if (details.getRequested().getVersion() == null) {
                String version = pluginVersions.get(details.getRequested().getId());
                if (version != null) {
                    details.useVersion(version);
                }
            }
            resolutionRules.execute(details);
            return details.getTarget();
        }
    
        @Override
        public void setDefaultPluginVersion(PluginId id, String version) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsAndResolutionStrategiesIntegrationTest.groovy

                configurations.conf.resolutionStrategy {
                    eachDependency { DependencyResolveDetails details ->
                        if (details.requested.group == 'org') {
                            details.useVersion '1.0'
                        }
                    }
                }
            """
    
            when:
            run 'checkDeps'
    
            then:
            resolve.expectGraph {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/codehost/svn.go

    		Time:    t.UTC(),
    		Version: rev,
    	}
    	return info, nil
    }
    
    func svnReadZip(ctx context.Context, dst io.Writer, workDir, rev, subdir, remote string) (err error) {
    	// The subversion CLI doesn't provide a command to write the repository
    	// directly to an archive, so we need to export it to the local filesystem
    	// instead. Unfortunately, the local filesystem might apply arbitrary
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 02:47:12 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/consistency/ProjectLocalDependencyResolutionConsistencyIntegrationTest.groovy

                    conf.shouldResolveConsistentlyWith(other)
    
                    conf.resolutionStrategy.eachDependency { details ->
                        if (details.requested.name == 'foo') {
                            details.useVersion '1.2'
                        }
                    }
                }
    
                dependencies {
                    conf 'org:foo:1.1'
                    other 'org:foo:1.0'
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.7K bytes
    - Viewed (0)
Back to top