Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 283 for Universe (0.23 sec)

  1. android/guava/src/com/google/common/collect/ArrayTable.java

    /**
     * Fixed-size {@link Table} implementation backed by a two-dimensional array.
     *
     * <p><b>Warning:</b> {@code ArrayTable} is rarely the {@link Table} implementation you want. First,
     * it requires that the complete universe of rows and columns be specified at construction time.
     * Second, it is always backed by an array large enough to hold a value for every possible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ArrayTable.java

    /**
     * Fixed-size {@link Table} implementation backed by a two-dimensional array.
     *
     * <p><b>Warning:</b> {@code ArrayTable} is rarely the {@link Table} implementation you want. First,
     * it requires that the complete universe of rows and columns be specified at construction time.
     * Second, it is always backed by an array large enough to hold a value for every possible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/check.go

    // nopos indicates an unknown position
    var nopos syntax.Pos
    
    // debugging/development support
    const debug = false // leave on during development
    
    // _aliasAny changes the behavior of [Scope.Lookup] for "any" in the
    // [Universe] scope.
    //
    // This is necessary because while Alias creation is controlled by
    // [Config.EnableAlias], the representation of "any" is a global. In
    // [Scope.Lookup], we select this global representation based on the result of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  4. src/go/types/check.go

    // This GODEBUG flag will be removed in the near future (tentatively Go 1.24).
    var gotypesalias = godebug.New("gotypesalias")
    
    // _aliasAny changes the behavior of [Scope.Lookup] for "any" in the
    // [Universe] scope.
    //
    // This is necessary because while Alias creation is controlled by
    // [Config._EnableAlias], based on the gotypealias variable, the representation
    // of "any" is a global. In [Scope.Lookup], we select this global
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. api/go1.5.txt

    pkg go/types, type TypeAndValue struct, Value constant.Value
    pkg go/types, type TypeName struct
    pkg go/types, type Var struct
    pkg go/types, var Typ []*Basic
    pkg go/types, var Universe *Scope
    pkg go/types, var Unsafe *Package
    pkg html/template, method (*Template) Option(...string) *Template
    pkg image, const YCbCrSubsampleRatio410 = 5
    pkg image, const YCbCrSubsampleRatio410 YCbCrSubsampleRatio
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 30 21:14:09 UTC 2015
    - 46.6K bytes
    - Viewed (0)
  6. src/go/printer/testdata/parser.go

    			ident.Obj = obj
    			return
    		}
    	}
    	// all local scopes are known, so any unresolved identifier
    	// must be found either in the file scope, package scope
    	// (perhaps in another file), or universe scope --- collect
    	// them so that they can be resolved later
    	ident.Obj = unresolved
    	p.unresolved = append(p.unresolved, ident)
    }
    
    // ----------------------------------------------------------------------------
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  7. doc/go1.17_spec.html

    Block = "{" StatementList "}" .
    StatementList = { Statement ";" } .
    </pre>
    
    <p>
    In addition to explicit blocks in the source code, there are implicit blocks:
    </p>
    
    <ol>
    	<li>The <i>universe block</i> encompasses all Go source text.</li>
    
    	<li>Each <a href="#Packages">package</a> has a <i>package block</i> containing all
    	    Go source text for that package.</li>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/api_test.go

    func TestScopeLookupParent(t *testing.T) {
    	imports := make(testImporter)
    	conf := Config{
    		Importer:    imports,
    		EnableAlias: true, // must match default Universe.Lookup behavior
    	}
    	var info Info
    	makePkg := func(path, src string) {
    		var err error
    		imports[path], err = conf.Check(path, []*syntax.File{mustParse(src)}, &info)
    		if err != nil {
    			t.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  9. src/go/types/api_test.go

    func TestAnyHijacking_Lookup(t *testing.T) {
    	for _, enableAlias := range []bool{false, true} {
    		t.Run(fmt.Sprintf("EnableAlias=%t", enableAlias), func(t *testing.T) {
    			setGotypesalias(t, enableAlias)
    			a := Universe.Lookup("any")
    			if _, gotAlias := a.Type().(*Alias); gotAlias != enableAlias {
    				t.Errorf(`Lookup("x").Type() is %T: got Alias: %t, want %t`, a.Type(), gotAlias, enableAlias)
    			}
    		})
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  10. doc/go_spec.html

    Block = "{" StatementList "}" .
    StatementList = { Statement ";" } .
    </pre>
    
    <p>
    In addition to explicit blocks in the source code, there are implicit blocks:
    </p>
    
    <ol>
    	<li>The <i>universe block</i> encompasses all Go source text.</li>
    
    	<li>Each <a href="#Packages">package</a> has a <i>package block</i> containing all
    	    Go source text for that package.</li>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
Back to top