Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ScopeID (0.23 sec)

  1. android/guava-tests/test/com/google/common/net/InetAddressesTest.java

        for (String ipString : ipStrings) {
          for (String scopeId : getMachineScopesAndInterfaces()) {
            String withScopeId = ipString + "%" + scopeId;
            assertTrue(
                "InetAddresses.isInetAddress(" + withScopeId + ") should be true but was false",
                InetAddresses.isInetAddress(withScopeId));
            Inet6Address parsed;
            boolean isNumeric = scopeId.matches("\\d+");
            try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ir/func.go

    type Mark struct {
    	// Pos is the position of the token that marks the scope
    	// change.
    	Pos src.XPos
    
    	// Scope identifies the innermost scope to the right of Pos.
    	Scope ScopeID
    }
    
    // A ScopeID represents a lexical scope within a function.
    type ScopeID int32
    
    const (
    	funcDupok      = 1 << iota // duplicate definitions ok
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. pkg/test/framework/testcontext.go

    	scopes.Framework.Debugf("Creating new testContext: %q", id)
    
    	if parentScope == nil {
    		parentScope = s.globalScope
    	}
    
    	scopeID := fmt.Sprintf("[%s]", id)
    	ctx := &testContext{
    		id:         id,
    		test:       test,
    		T:          goTest,
    		suite:      s,
    		scope:      newScope(scopeID, parentScope),
    		workDir:    workDir,
    		FileWriter: yml.NewFileWriter(workDir),
    	}
    
    	if test.topLevel {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top