Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 1,957 for Versions (0.14 sec)

  1. tensorflow/cc/tools/freeze_saved_model.cc

                          GraphDef* frozen_graph_def) {
      GraphDef graph_def = saved_model_bundle.meta_graph_def.graph_def();
      // Copy versions and library as-is from original graph.
      *frozen_graph_def->mutable_versions() = graph_def.versions();
      *frozen_graph_def->mutable_library() = graph_def.library();
      // If the graph is empty there is nothing left to do.
      if (graph_def.node_size() == 0) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. LICENSE

    Program specifies that a certain numbered version of the GNU Affero General
    Public License "or any later version" applies to it, you have the
    option of following the terms and conditions either of that numbered
    version or of any later version published by the Free Software
    Foundation.  If the Program does not specify a version number of the
    GNU Affero General Public License, you may choose any version ever published
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 33.7K bytes
    - Viewed (0)
  3. istioctl/pkg/precheck/precheck.go

    			continue
    		}
    		if !betaKinds.Contains(r.Spec.Names.Kind) {
    			continue
    		}
    
    		versions := extractCRDVersions(&r)
    		has := "none"
    		if len(versions) > 0 {
    			has = strings.Join(sets.SortedList(versions), ",")
    		}
    		if !versions.Contains(gvk.KubernetesGateway.Version) {
    			origin := legacykube.Origin{
    				Type: gvk.CustomResourceDefinition,
    				FullName: resource.FullName{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 02:57:30 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/cache.go

    func GoModFile(ctx context.Context, path, version string) (string, error) {
    	if !gover.ModIsValid(path, version) {
    		return "", fmt.Errorf("invalid version %q", version)
    	}
    	if _, err := GoMod(ctx, path, version); err != nil {
    		return "", err
    	}
    	// GoMod should have populated the disk cache for us.
    	file, err := CachePath(ctx, module.Version{Path: path, Version: version}, "mod")
    	if err != nil {
    		return "", err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    ==== Changes in dependency version sorting
    
    In the context of dependency version sorting, a `-SNAPSHOT` version is now considered to be right before a final release but after any `-RC` version.
    More special version suffixes are also taken into account.
    This brings the Gradle algorithm closer to the Maven one for well-known version suffixes.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/PublishedRichVersionConstraintsIntegrationTest.groovy

            then:
            failure.assertHasCause("""Cannot find a version of 'org:foo' that satisfies the version constraints:
       Dependency path ':test:unspecified' --> 'org:foo:1.1'
       Dependency path ':test:unspecified' --> 'org:bar:1.0' (runtime) --> 'org:foo:{require 1.0; reject 1.1}'""")
        }
    
        void "honors multiple rejections #rejects using dynamic versions using dependency notation #rejects"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/TextUtil.java

        }
    
        /**
         * Checks if a String is whitespace, empty ("") or null.
         * <p>
         * This function was copied from Apache Commons-Lang to restore TAPI compatibility
         * with Java 6 on old Gradle versions because StringUtils require SQLException which
         * is absent from Java 6.
         */
        public static boolean isBlank(String str) {
            int strLen;
            if (str == null || (strLen = str.length()) == 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    .. ORACLE
    .. SAP
    .. TENCENT
    .. everything else
    . higher major versions take precedence over lower ones
    . higher minor versions take precedence over lower ones
    . installation paths take precedence according to their lexicographic ordering (last resort criteria for deterministically deciding
    between installations of the same type, from the same vendor and with the same version)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  9. cluster/images/etcd/migrate/integration_test.go

    				}
    			})
    
    			// Check that version.txt contains the correct end version.
    			parallel(servers, func(server *EtcdMigrateServer) {
    				dataDir, err := OpenOrCreateDataDirectory(server.cfg.dataDirectory)
    				v, err := dataDir.versionFile.Read()
    				if err != nil {
    					t.Fatalf("Failed to read version.txt file: %v", err)
    				}
    				if !v.Equals(end) {
    					t.Errorf("Expected version.txt to contain %s but got %s", end, v)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 07:33:23 UTC 2022
    - 11.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/codehost/codehost.go

    // We can safely ignore tags that are not look like pseudo-versions,
    // because ../coderepo.go's (*codeRepo).Versions ignores them too.
    // We can also ignore non-semver tags, but we have to include semver
    // tags with extra suffixes, because the pseudo-version base finder uses them.
    func isOriginTag(tag string) bool {
    	// modfetch.(*codeRepo).Versions uses Canonical == tag,
    	// but pseudo-version calculation has a weaker condition that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top