Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,011 for vers (0.13 sec)

  1. src/image/gif/reader.go

    	err := readFull(d.r, d.tmp[:13])
    	if err != nil {
    		return fmt.Errorf("gif: reading header: %v", err)
    	}
    	d.vers = string(d.tmp[:6])
    	if d.vers != "GIF87a" && d.vers != "GIF89a" {
    		return fmt.Errorf("gif: can't recognize format %q", d.vers)
    	}
    	d.width = int(d.tmp[6]) + int(d.tmp[7])<<8
    	d.height = int(d.tmp[8]) + int(d.tmp[9])<<8
    	if fields := d.tmp[10]; fields&fColorTable != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. src/runtime/runtime_test.go

    		_, ok := GoroutineProfile(p)
    		return ok
    	}))
    }
    
    func TestVersion(t *testing.T) {
    	// Test that version does not contain \r or \n.
    	vers := Version()
    	if strings.Contains(vers, "\r") || strings.Contains(vers, "\n") {
    		t.Fatalf("cr/nl in version: %q", vers)
    	}
    }
    
    func TestTimediv(t *testing.T) {
    	for _, tc := range []struct {
    		num int64
    		div int32
    		ret int32
    		rem int32
    	}{
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. cmd/xl-storage-format-v2.go

    		for _, vers := range versions {
    			if len(vers) == 0 {
    				consistent = false
    				continue
    			}
    			ver := vers[0]
    			if len(tops) == 0 {
    				consistent = true
    				topSig = ver.header
    			} else {
    				consistent = consistent && ver.header == topSig
    			}
    			tops = append(tops, vers[0])
    		}
    
    		// Check if done...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/query.go

    }
    
    // IsRevisionQuery returns true if vers is a version query that may refer to
    // a particular version or revision in a repository like "v1.0.0", "master",
    // or "0123abcd". IsRevisionQuery returns false if vers is a query that
    // chooses from among available versions like "latest" or ">v1.0.0".
    func IsRevisionQuery(path, vers string) bool {
    	if vers == "latest" ||
    		vers == "upgrade" ||
    		vers == "patch" ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/zip/zip.go

    	defer func() {
    		if err != nil {
    			err = &zipError{verb: "create zip", err: err}
    		}
    	}()
    
    	// Check that the version is canonical, the module path is well-formed, and
    	// the major version suffix matches the major version.
    	if vers := module.CanonicalVersion(m.Version); vers != m.Version {
    		return fmt.Errorf("version %q is not canonical (should be %q)", m.Version, vers)
    	}
    	if err := module.Check(m.Path, m.Version); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 31K bytes
    - Viewed (0)
  6. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/publisher/ValidatingMavenPublisherTest.groovy

            "group"             | "artifact"             | "vers/ion"  | "version cannot contain '/'"
            "group"             | "artifact"             | "vers\\ion"  | "version cannot contain '\\'"
            "group"             | "artifact"             | "version\t" | "version cannot contain ISO control character '\\u0009'"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/init.go

    				Err: &module.InvalidVersionError{
    					Version: vers,
    					Err:     fmt.Errorf("malformed module path %q", path),
    				},
    			}
    		}
    		if vers != "" && module.CanonicalVersion(vers) == vers {
    			if err := module.CheckPathMajor(vers, pathMajor); err != nil {
    				return "", module.VersionError(module.Version{Path: path, Version: vers}, err)
    			}
    			return vers, nil
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  8. docs/fr/docs/deployment/versions.md

    Avec **FastAPI** c'est très facile (merci à Starlette), consultez la documentation : [Testing](../tutorial/testing.md){.internal-link target=_blank}
    
    Après avoir effectué des tests, vous pouvez mettre à jour la version **FastAPI** vers une version plus récente, et vous assurer que tout votre code fonctionne correctement en exécutant vos tests.
    
    Si tout fonctionne, ou après avoir fait les changements nécessaires, et que tous vos tests passent, vous pouvez
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Oct 31 17:39:54 UTC 2022
    - 4K bytes
    - Viewed (0)
  9. docs/fr/docs/index.md

    * <abbr title="aussi connu sous le nom de : serialization, parsing, marshalling">Une conversion</abbr> des données d'entrée : venant du réseau et allant vers les données et types de Python, permettant de lire :
        * le <abbr title="JavaScript Object Notation">JSON</abbr>.
        * <abbr title="en anglais : path parameters">les paramètres du chemin</abbr>.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 22K bytes
    - Viewed (0)
  10. src/crypto/tls/common.go

    		if _, err := selectSignatureScheme(vers, c, chi.SignatureSchemes); err != nil {
    			return supportsRSAFallback(err)
    		}
    	}
    
    	// In TLS 1.3 we are done because supported_groups is only relevant to the
    	// ECDHE computation, point format negotiation is removed, cipher suites are
    	// only relevant to the AEAD choice, and static RSA does not exist.
    	if vers == VersionTLS13 {
    		return nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
Back to top