Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for ct (0.02 sec)

  1. src/net/http/transfer.go

    		// Content-Length headers if they differ in value.
    		// If there are dups of the value, remove the dups.
    		// See Issue 16490.
    		first := textproto.TrimString(contentLens[0])
    		for _, ct := range contentLens[1:] {
    			if first != textproto.TrimString(ct) {
    				return 0, fmt.Errorf("http: message cannot contain multiple Content-Length headers; got %q", contentLens)
    			}
    		}
    
    		// deduplicate Content-Length
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    Found exactly one project that matches the abbreviated name ':mAL': ':my-awesome-library'.
    No exact task with name ':cT' has been found. Checking for abbreviated names.
    Found exactly one task name, that matches the abbreviated name ':cT': ':compileTest'.
    ----
    
    == Common tasks
    
    The following are task conventions applied by built-in and most major Gradle plugins.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  3. src/os/os_windows_test.go

    	}
    	testDirLinks(t, tests)
    }
    
    func enableCurrentThreadPrivilege(privilegeName string) error {
    	ct, err := windows.GetCurrentThread()
    	if err != nil {
    		return err
    	}
    	var t syscall.Token
    	err = windows.OpenThreadToken(ct, syscall.TOKEN_QUERY|windows.TOKEN_ADJUST_PRIVILEGES, false, &t)
    	if err != nil {
    		return err
    	}
    	defer syscall.CloseHandle(syscall.Handle(t))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  4. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    cr cr.it cr.ua crafting.xyz crafts.museum cranbrook.museum cranky.jp crd.co creation.museum credit creditcard creditunion cremona.it crew.aero cri.br cri.nz cricket crimea.ua crotone.it crown crs cruise cruises cs.in cs.it cs.keliweb.cloud csx.cc ct.it ct.us cu cuiaba.br cuisinella cultural.museum culturalcenter.museum culture.museum cuneo.it cupcake.is curitiba.br curv.dev cust.dev.thingdust.io cust.disrec.thingdust.io cust.prod.thingdust.io cust.retrosnub.co.uk cust.testing.thingdust.io custom.metacentrum.cz...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  5. src/crypto/aes/gcm_amd64.s

    ptxLoadLoop:
    		PSLLDQ $1, B0
    		PINSRB $0, (ptx), B0
    		LEAQ -1(ptx), ptx
    		DECQ ptxLen
    	JNE ptxLoadLoop
    
    	PXOR T0, B0
    	PAND T1, B0
    	MOVOU B0, (ctx)	// I assume there is always space, due to TAG in the end of the CT
    
    	PSHUFB BSWAP, B0
    	PXOR ACC0, B0
    
    	MOVOU T2, ACC0
    	MOVOU T2, ACC1
    	MOVOU (16*15)(pTbl), ACCM
    
    	PSHUFD $78, B0, T0
    	PXOR B0, T0
    	PCLMULQDQ $0x00, B0, ACC0
    	PCLMULQDQ $0x11, B0, ACC1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modfetch/codehost/git.go

    func (r *gitRepo) statLocal(ctx context.Context, version, rev string) (*RevInfo, error) {
    	out, err := Run(ctx, r.dir, "git", "-c", "log.showsignature=false", "log", "--no-decorate", "-n1", "--format=format:%H %ct %D", rev, "--")
    	if err != nil {
    		// Return info with Origin.RepoSum if possible to allow caching of negative lookup.
    		var info *RevInfo
    		if refs, err := r.loadRefs(ctx); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/vcs/vcs.go

    	// uncommitted files and skip tagging revision / committime.
    	var rev string
    	var commitTime time.Time
    	out, err = vcsGit.runOutputVerboseOnly(rootDir, "-c log.showsignature=false log -1 --format=%H:%ct")
    	if err != nil && !uncommitted {
    		return Status{}, err
    	} else if err == nil {
    		rev, commitTime, err = parseRevTime(out)
    		if err != nil {
    			return Status{}, err
    		}
    	}
    
    	return Status{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
Back to top