Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for archInits (0.33 sec)

  1. 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)
  2. 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)
  3. testing/architecture-test/build.gradle.kts

        group = "verification"
        description = "Sort the accepted api changes file alphabetically"
        apiChangesDirectory = acceptedApiChangesDirectory
    }
    
    val ruleStoreDir = layout.projectDirectory.dir("src/changes/archunit-store")
    
    tasks {
        val reorderRuleStore by registering(ReorderArchUnitRulesTask::class) {
            ruleFile = ruleStoreDir.file("stored.rules").asFile
        }
    
        test {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/build.gradle.kts

        testImplementation(testFixtures(project(":core")))
        testImplementation(libs.ant)
        testImplementation(libs.mockitoKotlin)
        testImplementation(libs.jacksonKotlin)
        testImplementation(libs.archunit)
        testImplementation(libs.kotlinCoroutines)
        testImplementation(libs.awaitility)
    
        integTestImplementation(project(":build-option")) {
            because("KotlinSettingsScriptIntegrationTest makes uses of FeatureFlag")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/sys/cpu/cpu_arm64.go

    		{Name: "fcma", Feature: &ARM64.HasFCMA},
    		{Name: "dcpop", Feature: &ARM64.HasDCPOP},
    		{Name: "asimddp", Feature: &ARM64.HasASIMDDP},
    		{Name: "asimdfhm", Feature: &ARM64.HasASIMDFHM},
    	}
    }
    
    func archInit() {
    	switch runtime.GOOS {
    	case "freebsd":
    		readARM64Registers()
    	case "linux", "netbsd", "openbsd":
    		doinit()
    	default:
    		// Many platforms don't seem to allow reading these registers.
    		setMinimalFeatures()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. .idea/misc.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <project version="4">
      <component name="EntryPointsManager">
        <list size="2">
          <item index="0" class="java.lang.String" itemvalue="com.tngtech.archunit.junit.ArchTest" />
          <item index="1" class="java.lang.String" itemvalue="org.gradle.internal.service.Provides" />
        </list>
      </component>
      <component name="ExternalStorageConfigurationManager" enabled="true" />
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 19:23:39 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/main.go

    			usage()
    		}
    	}
    
    	bench.Start("libinit")
    	libinit(ctxt) // creates outfile
    	bench.Start("computeTLSOffset")
    	ctxt.computeTLSOffset()
    	bench.Start("Archinit")
    	thearch.Archinit(ctxt)
    
    	if ctxt.linkShared && !ctxt.IsELF {
    		Exitf("-linkshared can only be used on elf systems")
    	}
    
    	if ctxt.Debugvlog != 0 {
    		onOff := func(b bool) string {
    			if b {
    				return "on"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. subprojects/distributions-dependencies/build.gradle.kts

            api(libs.zinc)                  { version { strictly("1.9.6") }}
    
            // test only
            api(libs.aircompressor)         { version { strictly("0.8") }}
            api(libs.archunit)              { version { strictly(archunitVersion) }}
            api(libs.archunitJunit5)        { version { strictly(archunitVersion) }}
            api(libs.archunitJunit5Api)     { version { strictly(archunitVersion) }}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 19:54:08 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/sys/cpu/cpu.go

    	HasVX     bool // vector facility
    	HasVXE    bool // vector-enhancements facility 1
    	_         CacheLinePad
    }
    
    func init() {
    	archInit()
    	initOptions()
    	processOptions()
    }
    
    // options contains the cpu debug options that can be used in GODEBUG.
    // Options are arch dependent and are added by the arch specific initOptions functions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

        val maven3PluginApi = "org.apache.maven:maven-plugin-api"
        val zinc = "org.scala-sbt:zinc_2.13"
    
        // Test classpath only libraries
        val aircompressor = "io.airlift:aircompressor"
        val archunit = "com.tngtech.archunit:archunit"
        val archunitJunit5 = "com.tngtech.archunit:archunit-junit5"
        val archunitJunit5Api = "com.tngtech.archunit:archunit-junit5-api"
        val awaitility = "org.awaitility:awaitility-kotlin"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top