Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 106 for Universe (0.34 sec)

  1. src/cmd/compile/internal/types2/scope.go

    func NewScope(parent *Scope, pos, end syntax.Pos, comment string) *Scope {
    	s := &Scope{parent, nil, 0, nil, pos, end, comment, false}
    	// don't add children to Universe scope!
    	if parent != nil && parent != Universe {
    		parent.children = append(parent.children, s)
    		s.number = len(parent.children)
    	}
    	return s
    }
    
    // Parent returns the scope's containing (parent) scope.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. src/go/types/scope.go

    func NewScope(parent *Scope, pos, end token.Pos, comment string) *Scope {
    	s := &Scope{parent, nil, 0, nil, pos, end, comment, false}
    	// don't add children to Universe scope!
    	if parent != nil && parent != Universe {
    		parent.children = append(parent.children, s)
    		s.number = len(parent.children)
    	}
    	return s
    }
    
    // Parent returns the scope's containing (parent) scope.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. src/go/types/object.go

    	Pos() token.Pos // position of object identifier in declaration
    	Pkg() *Package  // package to which this object belongs; nil for labels and objects in the Universe scope
    	Name() string   // package local object name
    	Type() Type     // object type
    	Exported() bool // reports whether the name starts with a capital letter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/object.go

    	Pos() syntax.Pos // position of object identifier in declaration
    	Pkg() *Package   // package to which this object belongs; nil for labels and objects in the Universe scope
    	Name() string    // package local object name
    	Type() Type      // object type
    	Exported() bool  // reports whether the name starts with a capital letter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  5. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishPomCustomizationKotlinDslIntegTest.groovy

                                        artifactId.set("new-artifact-id")
                                        version.set("42")
                                        message.set("the answer to life, the universe and everything")
                                    }
                                }
                                mailingLists {
                                    mailingList {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppIncrementalBuildIntegrationTest.groovy

            and:
            allSkipped()
    
            when:
            appHeaderInOtherDir.replace('"world"', '"universe"')
    
            and:
            appObjects.snapshot()
            libObjects.snapshot()
    
            then:
            succeeds installApp
            install.exec().out == "hello universe"
    
            and:
            executedAndNotSkipped appDebug.compile
            skipped libraryDebug.compile
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  7. src/go/internal/gcimporter/ureader.go

    	return r.pkg(), r.String()
    }
    
    // pkgScope returns pkg.Scope().
    // If pkg is nil, it returns types.Universe instead.
    //
    // TODO(mdempsky): Remove after x/tools can depend on Go 1.19.
    func pkgScope(pkg *types.Package) *types.Scope {
    	if pkg != nil {
    		return pkg.Scope()
    	}
    	return types.Universe
    }
    
    // newAliasTypeName returns a new TypeName, with a materialized *types.Alias if supported.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishPomCustomizationIntegTest.groovy

                                        artifactId = "new-artifact-id"
                                        version = "42"
                                        message = "the answer to life, the universe and everything"
                                    }
                                }
                                mailingLists {
                                    mailingList {
                                        name = "Users"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  9. cmd/update.go

    	uaAppend(" ", CommitID)
    	if IsDCOS() {
    		universePkgVersion := env.Get("MARATHON_APP_LABEL_DCOS_PACKAGE_VERSION", "")
    		// On DC/OS environment try to the get universe package version.
    		if universePkgVersion != "" {
    			uaAppend(" universe-", universePkgVersion)
    		}
    	}
    
    	if IsKubernetes() {
    		// In Kubernetes environment, try to fetch the helm package version
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/builtins_test.go

    	for _, call := range builtinCalls {
    		testBuiltinSignature(t, call.name, call.src, call.sig)
    		seen[call.name] = true
    	}
    
    	// make sure we didn't miss one
    	for _, name := range Universe.Names() {
    		if _, ok := Universe.Lookup(name).(*Builtin); ok && !seen[name] {
    			t.Errorf("missing test for %s", name)
    		}
    	}
    	for _, name := range Unsafe.Scope().Names() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 18:06:31 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top