Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,957 for Versions (0.11 sec)

  1. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/AbstractKotlinIntegrationTest.kt

            withBuildScriptIn(baseDir, scriptWithKotlinDslPlugin())
    
        protected
        fun scriptWithKotlinDslPlugin(version: String? = null): String =
            """
                plugins {
                    `kotlin-dsl`${if (version == null) "" else " version \"$version\""}
                }
    
                $repositoriesBlock
            """
    
        private
        fun testGradleInstallation() =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 16:44:39 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/list/list.go

            Path       string        // module path
            Query      string        // version query corresponding to this version
            Version    string        // module version
            Versions   []string      // available module versions
            Replace    *Module       // replaced by this module
            Time       *time.Time    // time version was created
            Update     *Module       // available update (with -u)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  3. docs/debugging/xl-meta/main.go

    	}
    	if x.metaVer > xlMetaVersion {
    		return x, buf, fmt.Errorf("decodeXLHeaders: Unknown xl meta version %d", x.metaVer)
    	}
    	x.versions, buf, err = msgp.ReadIntBytes(buf)
    	if err != nil {
    		return x, buf, err
    	}
    	if x.versions < 0 {
    		return x, buf, fmt.Errorf("decodeXLHeaders: Negative version count %d", x.versions)
    	}
    	return x, buf, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  4. src/cmd/internal/moddeps/moddeps_test.go

    			for r, mods := range versions {
    				desc := new(strings.Builder)
    				desc.WriteString(r.Required.Version)
    				if r.Replacement.Path != "" {
    					fmt.Fprintf(desc, " => %s", r.Replacement.Path)
    					if r.Replacement.Version != "" {
    						fmt.Fprintf(desc, " %s", r.Replacement.Version)
    					}
    				}
    
    				for _, m := range mods {
    					t.Logf("%s\trequires %v", m.Path, desc)
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. tools/bug-report/pkg/bugreport/bugreport.go

    	defer logRuntime(time.Now(), "Done getting control plane revisions/versions")
    
    	text := ""
    	text += fmt.Sprintf("CLI version:\n%s\n\n", version.Info.LongForm())
    
    	revisions := getIstioRevisions(resources)
    	istioVersions, proxyVersions := getIstioVersions(ctx, istioNamespace, revisions)
    	text += "The following Istio control plane revisions/versions were found in the cluster:\n"
    	for rev, ver := range istioVersions {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  6. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidPluginsSmokeTest.groovy

     * https://developer.android.com/studio/releases/gradle-plugin.html
     * https://androidstudio.googleblog.com/
     *
     * To run your tests against all AGP versions from agp-versions.properties, use higher version of java by setting -PtestJavaVersion=<version>
     * See {@link org.gradle.integtests.fixtures.versions.AndroidGradlePluginVersions#assumeCurrentJavaVersionIsSupportedBy() assumeCurrentJavaVersionIsSupportedBy} for more details
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. istioctl/pkg/injector/injector-list.go

    	needsRestart int
    }
    
    func Cmd(cliContext cli.Context) *cobra.Command {
    	cmd := &cobra.Command{
    		Use:     "injector",
    		Short:   "List sidecar injector and sidecar versions",
    		Long:    `List sidecar injector and sidecar versions`,
    		Example: `  istioctl experimental injector list`,
    		Args: func(cmd *cobra.Command, args []string) error {
    			if len(args) != 0 {
    				return fmt.Errorf("unknown subcommand %q", args[0])
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 04 03:08:06 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/VersionTest.java

                    versions.add(newVersion(UUID.randomUUID().toString()));
                }
                try {
                    Collections.sort(versions);
                } catch (Exception e) {
                    e.printStackTrace(System.err);
                    System.err.println("The UUIDs used");
                    System.err.println(versions.stream().map(Version::toString).collect(Collectors.joining("\n")));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  9. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishHttpIntegTest.groovy

        private static String publicationBuildWithoutCredentials(String version, String group, URI uri) {
            return publicationBuild(version, group, uri, "maven", '')
        }
    
        private static String publicationBuildWithCredentialsProvider(String version, String group, URI uri, Class<? extends Credentials> credentialsType = PasswordCredentials.class) {
            return publicationBuild(version, group, uri, "maven", "credentials(${credentialsType.simpleName})")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/PalantirConsistentVersionsPluginSmokeTest.groovy

                 // They are doing some weird stuff in an afterEvaluate
                 // See: https://github.com/palantir/gradle-consistent-versions/blob/28a604723c936f5c93c6591e144c4a1731d570ad/src/main/java/com/palantir/gradle/versions/VersionsLockPlugin.java#L277
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top