Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 283 for Universe (0.32 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/errorsas/errorsas.go

    		}
    		if err := checkAsTarget(pass, call.Args[1]); err != nil {
    			pass.ReportRangef(call, "%v", err)
    		}
    	})
    	return nil, nil
    }
    
    var errorType = types.Universe.Lookup("error").Type()
    
    // checkAsTarget reports an error if the second argument to errors.As is invalid.
    func checkAsTarget(pass *analysis.Pass, e ast.Expr) error {
    	t := pass.TypesInfo.Types[e].Type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:52:54 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/cmd/compile/internal/rangefunc/rewrite.go

    	// For first loop in function, allocate syntax for any, bool, int, true, and false.
    	if r.any == nil {
    		r.any = types2.Universe.Lookup("any")
    		r.bool = types2.Universe.Lookup("bool")
    		r.int = types2.Universe.Lookup("int")
    		r.true = types2.Universe.Lookup("true")
    		r.false = types2.Universe.Lookup("false")
    		r.rewritten = make(map[*syntax.ForStmt]syntax.Stmt)
    	}
    	if r.checkFuncMisuse() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
Back to top