Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for asmMain (0.22 sec)

  1. src/cmd/link/internal/ld/testdata/stackcheck/main.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    func main() { asmMain() }
    
    func asmMain()
    
    func startSelf()
    
    func startChain()
    func chain0()
    func chain1()
    func chain2()
    func chainEnd()
    
    func startRec()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 19 15:59:26 UTC 2022
    - 345 bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/testdata/stackcheck/main.s

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #define NOSPLIT 7
    #define NOFRAME 512
    
    TEXT ·asmMain(SB),0,$0-0
    	CALL ·startSelf(SB)
    	CALL ·startChain(SB)
    	CALL ·startRec(SB)
    	RET
    
    // Test reporting of basic over-the-limit
    TEXT ·startSelf(SB),NOSPLIT,$1000-0
    	RET
    
    // Test reporting of multiple over-the-limit chains
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 22 21:35:26 UTC 2023
    - 950 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/cover_import_main_loop.txt

    -- go.mod --
    module importmain
    
    go 1.16
    -- ismain/main.go --
    package main
    
    import _ "importmain/test"
    
    func main() {}
    -- test/test.go --
    package test
    -- test/test_test.go --
    package test_test
    
    import "testing"
    import _ "importmain/ismain"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 532 bytes
    - Viewed (0)
  4. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/internal/DefaultJavaFeatureSpec.java

            }
    
            if (capabilities.isEmpty()) {
                capabilities.add(new ProjectDerivedCapability(project, name));
            }
    
            if (SourceSet.isMain(sourceSet)) {
                DeprecationLogger.deprecateBehaviour(String.format("The '%s' feature was created using the main source set.", name))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 02 01:52:06 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/DefaultBinaryNamingScheme.java

                return this;
            }
            return withVariantDimension(value.getName());
        }
    
        @Override
        public BinaryNamingScheme withRole(String role, boolean isMain) {
            return new DefaultBinaryNamingScheme(parentName, binaryName, binaryType, role, isMain, dimensions);
        }
    
        @Override
        public BinaryNamingScheme withBinaryType(@Nullable String type) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. src/cmd/internal/codesign/codesign.go

    // textOff and textSize is the file offset and size of the text segment.
    // isMain is true if this is a main executable.
    // id is the identifier used for signing (a field in CodeDirectory blob, which
    // has no significance in ad-hoc signing).
    func Sign(out []byte, data io.Reader, id string, codeSize, textOff, textSize int64, isMain bool) {
    	nhashes := (codeSize + pageSize - 1) / pageSize
    	idOff := int64(codeDirectorySize)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 14:23:19 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/BinaryNamingScheme.java

        /**
         * Creates a copy of this scheme, replacing the role. The 'role' refers to the role that the binary plays within its component.
         */
        BinaryNamingScheme withRole(String role, boolean isMain);
    
        /**
         * Creates a copy of this scheme, replacing the binary type.
         */
        BinaryNamingScheme withBinaryType(String type);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top