Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 304 for vers (0.04 sec)

  1. src/go/build/constraint/vers.go

    Jes Cok <******@****.***> 1695442540 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 14:19:00 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. src/debug/dwarf/typeunit.go

    			b.error("type unit length overflow")
    			return b.err
    		}
    		hdroff := b.off
    		vers := int(b.uint16())
    		if vers != 4 {
    			b.error("unsupported DWARF version " + strconv.Itoa(vers))
    			return b.err
    		}
    		var ao uint64
    		if !dwarf64 {
    			ao = uint64(b.uint32())
    		} else {
    			ao = b.uint64()
    		}
    		atable, err := d.parseAbbrev(ao, vers)
    		if err != nil {
    			return err
    		}
    		asize := b.uint8()
    		sig := b.uint64()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/addmod.go

    			exitCode = 1
    			continue
    		}
    		path, vers, dir := f[0], f[1], f[2]
    		mod, err := os.ReadFile(filepath.Join(gopath, "pkg/mod/cache/download", path, "@v", vers+".mod"))
    		if err != nil {
    			log.Printf("%s: %v", arg, err)
    			exitCode = 1
    			continue
    		}
    		info, err := os.ReadFile(filepath.Join(gopath, "pkg/mod/cache/download", path, "@v", vers+".info"))
    		if err != nil {
    			log.Printf("%s: %v", arg, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 30 19:41:54 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/list.go

    			needFullGraph = true
    			if !HasModRoot() {
    				base.Fatalf("go: cannot match %q: %v", arg, ErrNoModRoot)
    			}
    			continue
    		}
    		if path, vers, found := strings.Cut(arg, "@"); found {
    			if vers == "upgrade" || vers == "patch" {
    				if _, ok := rs.rootSelected(path); !ok || rs.pruning == unpruned {
    					needFullGraph = true
    					if !HasModRoot() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 22:43:50 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  5. cmd/mrf.go

    			if u.scanMode != 0 {
    				scan = u.scanMode
    			}
    			if u.object == "" {
    				healBucket(u.bucket, scan)
    			} else {
    				if len(u.versions) > 0 {
    					vers := len(u.versions) / 16
    					if vers > 0 {
    						for i := 0; i < vers; i++ {
    							healObject(u.bucket, u.object, uuid.UUID(u.versions[16*i:]).String(), scan)
    						}
    					}
    				} else {
    					healObject(u.bucket, u.object, u.versionID, scan)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. src/syscall/dir_plan9.go

    	ErrBadName   = errors.New("bad character in file name")
    )
    
    // A Qid represents a 9P server's unique identification for a file.
    type Qid struct {
    	Path uint64 // the file server's unique identification for the file
    	Vers uint32 // version number for given Path
    	Type uint8  // the type of the file (syscall.QTDIR for example)
    }
    
    // A Dir contains the metadata for a file.
    type Dir struct {
    	// system-modified data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:32:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/sumdb/test.go

    // and fetch new records as needed by calling gosum.
    func NewTestServer(signer string, gosum func(path, vers string) ([]byte, error)) *TestServer {
    	return &TestServer{signer: signer, gosum: gosum}
    }
    
    // A TestServer is an in-memory implementation of [ServerOps] for testing.
    type TestServer struct {
    	signer string
    	gosum  func(path, vers string) ([]byte, error)
    
    	mu      sync.Mutex
    	hashes  testHashes
    	records [][]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/mod/sumdb/server.go

    		path, err := module.UnescapePath(escPath)
    		if err != nil {
    			reportError(w, err)
    			return
    		}
    		vers, err := module.UnescapeVersion(escVers)
    		if err != nil {
    			reportError(w, err)
    			return
    		}
    		id, err := s.ops.Lookup(ctx, module.Version{Path: path, Version: vers})
    		if err != nil {
    			reportError(w, err)
    			return
    		}
    		records, err := s.ops.ReadRecords(ctx, id, 1)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. docs/fr/docs/tutorial/body.md

    # Corps de la requête
    
    Quand vous avez besoin d'envoyer de la donnée depuis un client (comme un navigateur) vers votre API, vous l'envoyez en tant que **corps de requête**.
    
    Le corps d'une **requête** est de la donnée envoyée par le client à votre API. Le corps d'une **réponse** est la donnée envoyée par votre API au client.
    
    Votre API aura presque toujours à envoyer un corps de **réponse**. Mais un client n'a pas toujours à envoyer un corps de **requête**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/rule.go

    			return true
    		}
    	}
    	return false
    }
    
    func matchesResourcePolicyRule(ri *request.RequestInfo, policyRule flowcontrol.ResourcePolicyRule) bool {
    	if !matchPolicyRuleVerb(policyRule.Verbs, ri.Verb) {
    		return false
    	}
    	if !matchPolicyRuleResource(policyRule.Resources, ri.Resource, ri.Subresource) {
    		return false
    	}
    	if !matchPolicyRuleAPIGroup(policyRule.APIGroups, ri.APIGroup) {
    		return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top