Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for pkt2 (0.09 sec)

  1. src/go/types/object.go

    	// sameId reports whether obj.Id() and Id(pkg, name) are the same.
    	// If foldCase is true, names are considered equal if they are equal with case folding
    	// and their packages are ignored (e.g., pkg1.m, pkg1.M, pkg2.m, and pkg2.M are all equal).
    	sameId(pkg *Package, name string, foldCase bool) bool
    
    	// scopePos returns the start position of the scope of this Object
    	scopePos() token.Pos
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  2. src/crypto/tls/conn.go

    	if c.vers == VersionTLS13 {
    		payloadBytes-- // encrypted ContentType
    	}
    
    	// Allow packet growth in arithmetic progression up to max.
    	pkt := c.packetsSent
    	c.packetsSent++
    	if pkt > 1000 {
    		return maxPlaintext // avoid overflow in multiply below
    	}
    
    	n := payloadBytes * int(pkt+1)
    	if n > maxPlaintext {
    		n = maxPlaintext
    	}
    	return n
    }
    
    func (c *Conn) write(data []byte) (int, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. src/net/http/server.go

    	defer mux.mu.Unlock()
    	// Check for conflict.
    	if err := mux.index.possiblyConflictingPatterns(pat, func(pat2 *pattern) error {
    		if pat.conflictsWith(pat2) {
    			d := describeConflict(pat, pat2)
    			return fmt.Errorf("pattern %q (registered at %s) conflicts with pattern %q (registered at %s):\n%s",
    				pat, pat.loc, pat2, pat2.loc, d)
    		}
    		return nil
    	}); err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. src/cmd/dist/test.go

    		register1(test)
    		return
    	}
    	// TODO(dmitshur,austin): It might be better to unify the execution of 'go test pkg'
    	// invocations for the same variant to be done with a single 'go test pkg1 pkg2 pkg3'
    	// command, just like it's already done in registerStdTest and registerRaceBenchTest.
    	// Those methods accumulate matched packages in stdMatches and benchMatches slices,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    				intrinsics[intrinsicKey{a, pkg, fn}] = b
    			}
    		}
    	}
    	// alias defines pkg.fn = pkg2.fn2 for all architectures in archs for which pkg2.fn2 exists.
    	alias := func(pkg, fn, pkg2, fn2 string, archs ...*sys.Arch) {
    		aliased := false
    		for _, a := range archs {
    			if b, ok := intrinsics[intrinsicKey{a, pkg2, fn2}]; ok {
    				intrinsics[intrinsicKey{a, pkg, fn}] = b
    				aliased = true
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  6. cmd/testdata/decryptObjectInfo.json.zst

    n-S3-Sealed-Key":"IAAfAJFjkv47m6jqwAH4+C801YIZvNZ6ZQvicRrf4==","X-Minio-Internal-Server-Side-Encryption-Seal-Algorithm":"DAREv2-HMAC-SHA256","content-type":"application/octet-stream"}},{"Bucket":"buck1","Name":"go_113/src/cmd/go/testdata/testcover/pkg2/a_test.go","UserDef":{"X-Minio-Internal-Server-Side-Encryption-Iv":"Rynr8dGqK2OAeK09TGoR=","X-Minio-Internal-Server-Side-Encryption-S3-Kms-Key-Id":"my-minio-key","X-Minio-Internal-Server-Side-Encryption-S3-Kms-Sealed-Key":"IAAfAMq/QJI59JqcXLn7uZrH...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Oct 29 16:34:20 UTC 2020
    - 164K bytes
    - Viewed (0)
  7. tensorflow/cc/saved_model/testdata/chunked_saved_model/chunked_model/saved_model.pbtxt

    2?\325QY\204\"\352\340?$\321\331\352\223g\340?\300-#S\345C\220?\332\234\035kt\274\335?\374\257\004\333k\361\352?\021\030\217\257\351\332\341?\251\332\\n\374\211\352?\354\356Q24\213\347?\0211\215\202E\376\342?\300gu\276\220\037\203?\244mt.\331_\314?pkT\235\227e\273?\030o\344\276\233\316\337?F\200\245\017\t@\333?\243\232>\014\275\235\350?\326\004\2003q\240\340?\200\020\003[\242\361\337?~\263\366\322.\024\353?r\245\221*\206r\347?M\352Q\374\255\352\352?\375\222\2628\310p\344?\336\315\001V\305%\352?\...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 21:43:11 UTC 2023
    - 531.2K bytes
    - Viewed (0)
Back to top