Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 53 for o2k2 (0.17 sec)

  1. src/cmd/link/internal/loadpe/ldpe.go

    		}
    
    		if sect == nil {
    			return nil, nil
    		}
    
    		// Check for COMDAT symbol.
    		if sz, ok1 := state.comdats[uint16(pesym.SectionNumber-1)]; ok1 {
    			if psz, ok2 := comdatDefinitions[l.SymName(s)]; ok2 {
    				if sz == psz {
    					//  OK to discard, we've seen an instance
    					// already.
    					continue
    				}
    			}
    		}
    		if l.OuterSym(s) != 0 {
    			if l.AttrDuplicateOK(s) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessorTest.groovy

            1 * processor.started({ it.name == 'ok' && it.className == ATestNGClassWithManyMethods.name }, { it.parentId == 2 })
            1 * processor.started({ it.name == 'ok2' && it.className == ATestNGClassWithManyMethods.name }, { it.parentId == 2 })
            0 * processor.started(_, _)
        }
    
        void "executes no tests if none of the included test methods match"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 18 12:30:10 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/types.go

    		}
    		return false
    	}
    
    	// If ip isn't 0.0.0.0, only check IP and 0.0.0.0's (protocol, port) pair
    	for _, key := range []string{DefaultBindAllHostIP, ip} {
    		if m, ok := h[key]; ok {
    			if _, ok2 := m[*pp]; ok2 {
    				return true
    			}
    		}
    	}
    
    	return false
    }
    
    // sanitize the parameters
    func (h HostPortInfo) sanitize(ip, protocol *string) {
    	if len(*ip) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  4. src/html/template/escape.go

    	// Propagate context over the body.
    	c1, ok := e.escapeTemplateBody(c, t)
    	if !ok {
    		// Look for a fixed point by assuming c1 as the output context.
    		if c2, ok2 := e.escapeTemplateBody(c1, t); ok2 {
    			c1, ok = c2, true
    		}
    		// Use c1 as the error context if neither assumption worked.
    	}
    	if !ok && c1.state != stateError {
    		return context{
    			state: stateError,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  5. internal/config/config.go

    	// Lookup Env var.
    	value = env.Get(envVar, "")
    	if value != "" {
    		cs = ValueSourceEnv
    		return
    	}
    
    	// Lookup config store.
    	if subSysStore, ok := c[subSys]; ok {
    		if kvs, ok2 := subSysStore[target]; ok2 {
    			var ok3 bool
    			value, ok3 = kvs.Lookup(cfgParam)
    			if ok3 {
    				cs = ValueSourceCfg
    				return
    			}
    		}
    	}
    
    	// Return the default value.
    	value = defValue
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  6. src/math/big/int_test.go

    		x, ok1 := new(Int).SetString(test.x, 0)
    		y, ok2 := new(Int).SetString(test.y, 0)
    
    		var ok3, ok4 bool
    		var out, m *Int
    
    		if len(test.out) == 0 {
    			out, ok3 = nil, true
    		} else {
    			out, ok3 = new(Int).SetString(test.out, 0)
    		}
    
    		if len(test.m) == 0 {
    			m, ok4 = nil, true
    		} else {
    			m, ok4 = new(Int).SetString(test.m, 0)
    		}
    
    		if !ok1 || !ok2 || !ok3 || !ok4 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/parser.go

    	if !ok {
    		// text has a suffix :xxx but xxx is not a number
    		p.errorAt(p.posAt(tline, tcol+i), "invalid line number: "+text[i:])
    		return
    	}
    
    	var line, col uint
    	i2, n2, ok2 := trailingDigits(text[:i-1])
    	if ok2 {
    		//line filename:line:col
    		i, i2 = i2, i
    		line, col = n2, n
    		if col == 0 || col > PosMax {
    			p.errorAt(p.posAt(tline, tcol+i2), "invalid column number: "+text[i2:])
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  8. src/net/http/request.go

    func parseRequestLine(line string) (method, requestURI, proto string, ok bool) {
    	method, rest, ok1 := strings.Cut(line, " ")
    	requestURI, proto, ok2 := strings.Cut(rest, " ")
    	if !ok1 || !ok2 {
    		return "", "", "", false
    	}
    	return method, requestURI, proto, true
    }
    
    var textprotoReaderPool sync.Pool
    
    func newTextprotoReader(br *bufio.Reader) *textproto.Reader {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  9. cmd/iam-store.go

    			subFromToken, ok := v.(string)
    			if ok {
    				subClaimValue = subFromToken
    			}
    		}
    
    		roleArn := openid.DummyRoleARN.String()
    		s, ok := claims[roleArnClaim]
    		val, ok2 := s.(string)
    		if ok && ok2 {
    			roleArn = val
    		}
    		v, ok := res[cred.ParentUser]
    		if ok {
    			res[cred.ParentUser] = ParentUserInfo{
    				subClaimValue: subClaimValue,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  10. internal/s3select/csv/testdata/testdata.zip

    South,3804,911,251,1,Manhattan,025100 invalid-badbarequote.csv header1,header2,header3 ok1,ok2,ok3 a "word","b" invalid-baddoubleq.csv header1,header2,header3 ok1,ok2,ok3 a""b,c invalid-badextraq.csv header1,header2,header3 ok1,ok2,ok3 "a word",b" invalid-badstartline.csv header1,header2,header3 ok1,ok2,ok3 a,"b c"d,e invalid-badstartline2.csv header1,header2,header3 ok1,ok2,ok3 a,b "d e invalid-badtrailingq.csv header1,header2,header3 ok1,ok2,ok3 "a word",b" invalid-crlfquoted.csv header1,header2,header3 ok1,ok2,ok3...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 111.6K bytes
    - Viewed (0)
Back to top