Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 95 for Are (0.49 sec)

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

    		if y == nil {
    			return false
    		}
    
    		// Two function types are identical if they have the same number of
    		// parameters and result values, corresponding parameter and result types
    		// are identical, and either both functions are variadic or neither is.
    		// Parameter and result names are not required to match, and type
    		// parameters are considered identical modulo renaming.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/unify.go

    // type parameter and its core type.
    // If two types are not structurally equivalent, they cannot be Go
    // identical types. On the other hand, if they are structurally
    // equivalent, they may be Go identical or at least assignable, or
    // they may be in the type set of a constraint.
    // Whether they indeed are identical or assignable is determined
    // upon instantiation and function argument passing.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/help/helpdoc.go

    		Valid options are ,lse and ,crypto.
    		Note that some extensions are enabled by default starting from a certain GOARM64 version;
    		for example, lse is enabled by default starting from v8.1.
    	GO386
    		For GOARCH=386, how to implement floating point instructions.
    		Valid values are sse2 (default), softfloat.
    	GOAMD64
    		For GOARCH=amd64, the microarchitecture level for which to compile.
    		Valid values are v1 (default), v2, v3, v4.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. src/cmd/cgo/doc.go

    unmodified environments. Flags obtained from environment variables
    are not subject to the security limitations described above.
    
    All the cgo CPPFLAGS and CFLAGS directives in a package are concatenated and
    used to compile C files in that package. All the CPPFLAGS and CXXFLAGS
    directives in a package are concatenated and used to compile C++ files in that
    package. All the CPPFLAGS and FFLAGS directives in a package are concatenated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/clean/clean.go

    cache for fuzz testing. The fuzzing engine caches files that expand
    code coverage, so removing them may make fuzzing less effective until
    new inputs are found that provide the same coverage. These files are
    distinct from those stored in testdata directory; clean does not remove
    those files.
    
    For more about build flags, see 'go help build'.
    
    For more about specifying packages, see 'go help packages'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/edit.go

    //     needed to satisfy (1) and (2).
    //
    // Generally, the module versions in mustSelect are due to the module or a
    // package within the module matching an explicit command line argument to 'go
    // get', and the versions in tryUpgrade are transitive dependencies that are
    // either being upgraded by 'go get -u' or being added to satisfy some
    // otherwise-missing package import.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/pgo_inl_test.go

    	}
    	return out
    }
    
    // testPGOIntendedInlining tests that specific functions are inlined.
    func testPGOIntendedInlining(t *testing.T, dir string, profFile string) {
    	testenv.MustHaveGoRun(t)
    	t.Parallel()
    
    	const pkg = "example.com/pgo/inline"
    
    	want := []string{
    		"(*BS).NS",
    	}
    
    	// The functions which are not expected to be inlined are as follows.
    	wantNot := []string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/named.go

    // corresponding object, and that object's type is the (possibly generic) Named
    // type. Declared Named types are identical if and only if their pointers are
    // identical. On the other hand, multiple instantiated Named types may be
    // identical even though their pointers are not identical. One has to use
    // Identical to compare them. For instantiated named types, their obj is a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/api.go

    type Importer interface {
    	// Import returns the imported package for the given import path.
    	// The semantics is like for ImporterFrom.ImportFrom except that
    	// dir and mode are ignored (since they are not present).
    	Import(path string) (*Package, error)
    }
    
    // ImportMode is reserved for future use.
    type ImportMode int
    
    // An ImporterFrom resolves import paths to packages; it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/schedule.go

    		// Compute score. Larger numbers are scheduled closer to the end of the block.
    		for _, v := range b.Values {
    			switch {
    			case v.Op.isLoweredGetClosurePtr():
    				// We also score GetLoweredClosurePtr as early as possible to ensure that the
    				// context register is not stomped. GetLoweredClosurePtr should only appear
    				// in the entry block where there are no phi functions, so there is no
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top