Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 485 for i$ (0.04 sec)

  1. src/reflect/type.go

    		i = 0
    		for i < len(tag) && tag[i] > ' ' && tag[i] != ':' && tag[i] != '"' && tag[i] != 0x7f {
    			i++
    		}
    		if i == 0 || i+1 >= len(tag) || tag[i] != ':' || tag[i+1] != '"' {
    			break
    		}
    		name := string(tag[:i])
    		tag = tag[i+1:]
    
    		// Scan quoted string to find value.
    		i = 1
    		for i < len(tag) && tag[i] != '"' {
    			if tag[i] == '\\' {
    				i++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  2. fess-crawler/src/test/resources/ajax/js/jquery-2.1.1.min.js

    .filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return vb(i>1&&sb(m),i>1&&qb(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(R,"$1"),c,e>i&&wb(a.slice(i,e)),f>e&&wb(a=a.slice(e)),f>e&&qb(a))}m.push(c)}return sb(m)}function xb(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,m,o,p=0,q="0",r=f&&[],s=[],t=j,u=f||e&&d.find.TAG("*",k),v=w+=null==t?1:Math.random()||.1,x=u.length;for(k&&(j=g!==n&&g);q!==x&&null!=(l=u[q]);...
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 82.3K bytes
    - Viewed (0)
  3. src/bufio/bufio_test.go

    }
    
    func TestReader(t *testing.T) {
    	var texts [31]string
    	str := ""
    	all := ""
    	for i := 0; i < len(texts)-1; i++ {
    		texts[i] = str + "\n"
    		all += texts[i]
    		str += string(rune(i%26 + 'a'))
    	}
    	texts[len(texts)-1] = all
    
    	for h := 0; h < len(texts); h++ {
    		text := texts[h]
    		for i := 0; i < len(readMakers); i++ {
    			for j := 0; j < len(bufreaders); j++ {
    				for k := 0; k < len(bufsizes); k++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  4. cmd/erasure-object.go

    		modTime = UTCNow()
    	}
    
    	for i, w := range writers {
    		if w == nil {
    			onlineDisks[i] = nil
    			continue
    		}
    		if len(inlineBuffers) > 0 && inlineBuffers[i] != nil {
    			partsMetadata[i].Data = inlineBuffers[i].Bytes()
    		} else {
    			partsMetadata[i].Data = nil
    		}
    		// No need to add checksum to part. We already have it on the object.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  5. pkg/ctrlz/assets/static/js/jquery-3.2.1.slim.min.js

    b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=ta(function(a){return a===b},h,!0),l=ta(function(a){return I(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];i<f;i++)if(c=d.relative[a[i].type])m=[ta(ua(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;e<f;e++)if(d.relative[a[e].type])break;return xa(i>1&&ua(m),i>1&&sa(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(P,"$1"),c,i<e&&ya(a...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 68K bytes
    - Viewed (0)
  6. src/runtime/mbitmap.go

    		bits1 := bits - bits0
    		dst[i+0] = dst[i+0]&(^uintptr(0)>>bits0) | (src << j)
    		dst[i+1] = dst[i+1]&^((1<<bits1)-1) | (src >> bits0)
    	} else {
    		// One write.
    		dst[i] = (dst[i] &^ (((1 << bits) - 1) << j)) | (src << j)
    	}
    
    	const doubleCheck = false
    	if doubleCheck {
    		srcRead := span.heapBitsSmallForAddr(x)
    		if srcRead != src {
    			print("runtime: x=", hex(x), " i=", i, " j=", j, " bits=", bits, "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  7. pkg/apis/admissionregistration/validation/validation.go

    	if len(resources) == 0 {
    		allErrors = append(allErrors, field.Required(fldPath, ""))
    	}
    	for i, resource := range resources {
    		if resource == "" {
    			allErrors = append(allErrors, field.Required(fldPath.Index(i), ""))
    		}
    		if strings.Contains(resource, "/") {
    			allErrors = append(allErrors, field.Invalid(fldPath.Index(i), resource, "must not specify subresources"))
    		}
    	}
    	if len(resources) > 1 && hasWildcard(resources) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  8. src/regexp/testdata/testregex.c

    						error(&preg, cret);
    					}
    				}
    				else
    				{
    					expected = got = 0;
    					for (i = 1; i < elementsof(codes); i++)
    					{
    						if (streq(ans, codes[i].name))
    							expected = i;
    						if (cret==codes[i].code)
    							got = i;
    					}
    					if (!expected)
    					{
    						if (test & (TEST_ACTUAL|TEST_BASELINE|TEST_FAIL|TEST_PASS|TEST_QUERY|TEST_SUMMARY|TEST_VERIFY))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/regalloc.go

    			args = append(args[:0], make([]*Value, len(v.Args))...)
    			for i, a := range v.Args {
    				if !s.values[a.ID].needReg {
    					args[i] = a
    				}
    			}
    			for _, i := range regspec.inputs {
    				mask := i.regs
    				if countRegs(mask) == 1 && mask&s.values[v.Args[i.idx].ID].regs != 0 {
    					args[i.idx] = s.allocValToReg(v.Args[i.idx], mask, true, v.Pos)
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/cache/cache_test.go

    	var podsWithPVC []*v1.Pod
    	for i := 0; i < 8; i++ {
    		pod := st.MakePod().Name(fmt.Sprintf("p-pvc-%v", i)).Namespace("test-ns").UID(fmt.Sprintf("puid-pvc-%v", i)).
    			PVC(fmt.Sprintf("test-pvc%v", i%4)).Node(fmt.Sprintf("test-node%v", i%2)).Obj()
    		podsWithPVC = append(podsWithPVC, pod)
    	}
    
    	var cache *cacheImpl
    	var snapshot *Snapshot
    	type operation = func(t *testing.T)
    
    	addNode := func(i int) operation {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
Back to top