Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 48 for archInits (0.26 sec)

  1. testing/architecture-test/src/test/java/org/gradle/architecture/test/BuildOperationsApiTest.java

     * limitations under the License.
     */
    
    package org.gradle.architecture.test;
    
    import com.tngtech.archunit.junit.AnalyzeClasses;
    import com.tngtech.archunit.junit.ArchTest;
    import com.tngtech.archunit.lang.ArchRule;
    import org.gradle.api.NonNullApi;
    
    import static com.tngtech.archunit.lang.syntax.ArchRuleDefinition.classes;
    import static org.gradle.architecture.test.ArchUnitFixture.beAnnotatedOrInPackageAnnotatedWith;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. testing/architecture-test/src/test/java/org/gradle/architecture/library/freeze/LineNumberIgnoringViolationStore.java

     * limitations under the License.
     */
    
    package org.gradle.architecture.library.freeze;
    
    import com.tngtech.archunit.lang.ArchRule;
    import com.tngtech.archunit.library.freeze.TextFileBasedViolationStore;
    import com.tngtech.archunit.library.freeze.ViolationStore;
    
    import java.util.List;
    import java.util.Properties;
    
    import static java.util.stream.Collectors.toList;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/s390x/obj.go

    	theArch := ld.Arch{
    		Funcalign:  funcAlign,
    		Maxalign:   maxAlign,
    		Minalign:   minAlign,
    		Dwarfregsp: dwarfRegSP,
    		Dwarfreglr: dwarfRegLR,
    
    		Adddynrel:        adddynrel,
    		Archinit:         archinit,
    		Archreloc:        archreloc,
    		Archrelocvariant: archrelocvariant,
    		Gentext:          gentext,
    		Machoreloc1:      machoreloc1,
    
    		ELF: ld.ELFArch{
    			Linuxdynld:     "/lib64/ld64.so.1",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:32:19 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. src/cmd/link/internal/wasm/obj.go

    func Init() (*sys.Arch, ld.Arch) {
    	theArch := ld.Arch{
    		Funcalign: 16,
    		Maxalign:  32,
    		Minalign:  1,
    
    		Archinit:      archinit,
    		AssignAddress: assignAddress,
    		Asmb:          asmb,
    		Asmb2:         asmb2,
    		Gentext:       gentext,
    	}
    
    	return sys.ArchWasm, theArch
    }
    
    func archinit(ctxt *ld.Link) {
    	if *ld.FlagRound == -1 {
    		*ld.FlagRound = 4096
    	}
    	if *ld.FlagTextAddr == -1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 18 15:14:38 UTC 2020
    - 646 bytes
    - Viewed (0)
  5. testing/architecture-test/src/test/java/org/gradle/architecture/test/FreezeInstructionsPrintingArchRule.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.architecture.test;
    
    import com.tngtech.archunit.core.domain.JavaClasses;
    import com.tngtech.archunit.lang.ArchRule;
    import com.tngtech.archunit.lang.EvaluationResult;
    
    public class FreezeInstructionsPrintingArchRule implements ArchRule {
        private final ArchRule delegate;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. src/cmd/link/internal/x86/obj.go

    		Dwarfregsp: dwarfRegSP,
    		Dwarfreglr: dwarfRegLR,
    		// 0xCC is INT $3 - breakpoint instruction
    		CodePad: []byte{0xCC},
    
    		Plan9Magic: uint32(4*11*11 + 7),
    
    		Adddynrel:        adddynrel,
    		Archinit:         archinit,
    		Archreloc:        archreloc,
    		Archrelocvariant: archrelocvariant,
    		Gentext:          gentext,
    		Machoreloc1:      machoreloc1,
    		PEreloc1:         pereloc1,
    
    		ELF: ld.ELFArch{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:32:19 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. src/cmd/link/internal/arm/obj.go

    		Dwarfregsp: dwarfRegSP,
    		Dwarfreglr: dwarfRegLR,
    		TrampLimit: 0x1c00000, // 24-bit signed offset * 4, leave room for PLT etc.
    
    		Plan9Magic: 0x647,
    
    		Adddynrel:        adddynrel,
    		Archinit:         archinit,
    		Archreloc:        archreloc,
    		Archrelocvariant: archrelocvariant,
    		Extreloc:         extreloc,
    		Trampoline:       trampoline,
    		Gentext:          gentext,
    		Machoreloc1:      machoreloc1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:32:19 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. testing/internal-architecture-testing/build.gradle.kts

    plugins {
        id("gradlebuild.internal.java")
    }
    
    description = "Collection of test fixtures and tests for architecture testing Gradle code"
    
    dependencies {
        api(platform(project(":distributions-dependencies")))
        api(libs.archunit)
        api(libs.archunitJunit5Api)
        api(libs.archunitJunit5) {
            because("This is what we use to write our architecture tests")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 379 bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/sys/cpu/cpu_zos.go

    // Copyright 2020 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 cpu
    
    func archInit() {
    	doinit()
    	Initialized = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 02 15:41:00 UTC 2020
    - 223 bytes
    - Viewed (0)
  10. src/cmd/link/internal/mips/obj.go

    	}
    
    	theArch := ld.Arch{
    		Funcalign:  FuncAlign,
    		Maxalign:   MaxAlign,
    		Minalign:   MinAlign,
    		Dwarfregsp: DWARFREGSP,
    		Dwarfreglr: DWARFREGLR,
    
    		Adddynrel:        adddynrel,
    		Archinit:         archinit,
    		Archreloc:        archreloc,
    		Archrelocvariant: archrelocvariant,
    		Extreloc:         extreloc,
    		Gentext:          gentext,
    		Machoreloc1:      machoreloc1,
    
    		ELF: ld.ELFArch{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top