Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 62 for ct (0.03 sec)

  1. 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)
  2. src/net/http/serve_test.go

    		t.Error(err)
    	}
    	if len(res.TransferEncoding) > 0 {
    		t.Errorf("expected no TransferEncoding; got %v", res.TransferEncoding)
    	}
    	if ct := res.Header.Get("Content-Type"); ct != "text/html; charset=utf-8" {
    		t.Errorf("Content-Type: %q; want text/html; charset=utf-8", ct)
    	}
    	if v := res.ContentLength; v != 10 {
    		t.Errorf("Content-Length: %d; want 10", v)
    	}
    	body, err := io.ReadAll(res.Body)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K 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. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    "webkit"},baidu:{prefix:"webkit"},kaios:{prefix:"moz"}}});var hm=v(()=>{l()});var le=v((t4,ct)=>{l();var{list:Vo}=ge();ct.exports.error=function(i){let e=new Error(i);throw e.autoprefixer=!0,e};ct.exports.uniq=function(i){return[...new Set(i)]};ct.exports.removeNote=function(i){return i.includes(" ")?i.split(" ")[0]:i};ct.exports.escapeRegexp=function(i){return i.replace(/[$()*+-.?[\\\]^{|}]/g,"\\$&")};ct.exports.regexp=function(i,e=!0){return e&&(i=this.escapeRegexp(i)),new RegExp(`(^|[\\s,(])(...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K 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/reflect/all_test.go

    	// This should not panic.
    	_ = dt.Interface().(struct{ D1 })
    }
    
    func TestChanOf(t *testing.T) {
    	// check construction and use of type not in binary
    	type T string
    	ct := ChanOf(BothDir, TypeOf(T("")))
    	v := MakeChan(ct, 2)
    	runtime.GC()
    	v.Send(ValueOf(T("hello")))
    	runtime.GC()
    	v.Send(ValueOf(T("world")))
    	runtime.GC()
    
    	sv1, _ := v.Recv()
    	sv2, _ := v.Recv()
    	s1 := sv1.String()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  8. 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)
  9. go.sum

    github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU=
    github.com/juju/ratelimit v1.0.2 h1:sRxmtRiajbvrcLQT7S+JbqU0ntsb9W2yhSdNN8tWfaI=
    github.com/juju/ratelimit v1.0.2/go.mod h1:qapgC/Gy+xNh9UxzV13HGGl/6UXNN+ct+vwSgWNm/qk=
    github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w=
    github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8=
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 85.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.java

    ?roeg?ug??i!.&pohsdaerpsym,topsgolb,vog??tilop?v&bba?om???j!.&fo,gro?oc?ten???k!.&c&a?s??e&m?n??ibom?o&c!.topsgolb,?fni?g??ro??i&b?l?n???l&a&dmrif?s!rof???b&a?i&b?dua???c&aro?ric??dnik?g!oog??i&bom?ms??l&asal?erauqa??ppa?uhcs?yts!efil???m!.&4&32i,p&ct,v,??66c,ailisarb,b&dnevar,g-raegelif,?ca?duolcsd,e&d-raegelif,i&-raegelif,lpad:.tsohlacol,,?pcm,?g&ro?s-raegelif,?hctilg,kcatsegde,noitatsksid,o&bmoy,c?t&nigol,poh,??p&i&on,snart.etis,?j-raegelif,ohbew,?r&aegelif,idcm,ofsnd,?s&dym,ndd,ti?umhol,?t&e...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 21 21:04:43 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top