Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 99 for processDir (0.17 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/CachedCodePathComponentMetadataProcessorTest.groovy

                    Specs.satisfyAll()
                )
            )
    
            when: "a processor runs on this metadata through the caching code path"
            def processor = processorWithCacheThatNeverHits()
            def result = processor.processMetadata(metadata.asImmutable())
    
            then: "the result should have the variant added by the rule"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompilerIntegrationSpec.groovy

            !javaClassFile("Bar.class").exists()
        }
    
        def "can use annotation processor"() {
            given:
            buildFile << """
                dependencies {
                    compileOnly project(":processor")
                    annotationProcessor project(":processor")
                }
            """
            settingsFile << "include 'processor'"
            writeAnnotationProcessorProject()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 01 01:34:12 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  3. platforms/jvm/java-compiler-plugin/src/main/java/org/gradle/internal/compiler/java/IncrementalCompileTask.java

    import org.gradle.internal.compiler.java.listeners.constants.ConstantDependentsConsumer;
    import org.gradle.internal.compiler.java.listeners.constants.ConstantsCollector;
    
    import javax.annotation.processing.Processor;
    import javax.tools.JavaCompiler;
    import java.io.File;
    import java.util.Locale;
    import java.util.Map;
    import java.util.Optional;
    import java.util.Set;
    import java.util.function.BiConsumer;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/runner/AnalysisStepRunner.kt

            val postProcessingFeatures = step.features.filterIsInstance<InterpretationStepFeature.ResolutionResultPostprocessing>()
            val resultHandlers = stepContext.supportedResolutionResultHandlers.filter { processor -> postProcessingFeatures.any(processor::shouldHandleFeature) }
            val resolution = resultHandlers.fold(initialResolution) { acc, it -> it.processResolutionResult(acc) }
    
            val document = languageModel.toDocument()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:40 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. testing/internal-testing/build.gradle.kts

    }
    
    description = "Collection of test fixtures for both unit tests and integration tests, internal use only"
    
    sourceSets {
        main {
            // Incremental Groovy joint-compilation doesn't work with the Error Prone annotation processor
            errorprone.enabled = false
        }
    }
    
    dependencies {
        api(project(":base-services"))
        api(project(":concurrent"))
        api(project(":hashing"))
        api(project(":stdlib-java-extensions"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/instrumentation-declarations/build.gradle.kts

        compileOnly(project(":internal-instrumentation-api"))
        compileOnly(libs.asm)
        compileOnly(libs.asmUtil)
        compileOnly(libs.asmTree)
        annotationProcessor(project(":internal-instrumentation-processor"))
        annotationProcessor(platform(project(":distributions-dependencies")))
    }
    
    tasks.named<JavaCompile>("compileJava") {
        // Without this, javac will complain about unclaimed org.gradle.api.NonNullApi annotation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/utils/firUtils.kt

            else -> KaConstantInitializerValue(evaluated, ktExpression)
        }
    }
    
    internal fun FirEqualityOperatorCall.processEqualsFunctions(
        session: FirSession,
        analysisSession: KaFirSession,
        processor: (FirNamedFunctionSymbol) -> Unit,
    ) {
        val lhs = arguments.firstOrNull() ?: return
        val scope = lhs.resolvedType.scope(
            useSiteSession = session,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/sys/cpu/cpu_arm64.s

    	// get Instruction Set Attributes 1 into x0
    	// mrs x0, ID_AA64ISAR1_EL1 = d5380620
    	WORD	$0xd5380620
    	MOVD	R0, ret+0(FP)
    	RET
    
    // func getpfr0() uint64
    TEXT ·getpfr0(SB),NOSPLIT,$0-8
    	// get Processor Feature Register 0 into x0
    	// mrs x0, ID_AA64PFR0_EL1 = d5380400
    	WORD	$0xd5380400
    	MOVD	R0, ret+0(FP)
    	RET
    
    // func getzfr0() uint64
    TEXT ·getzfr0(SB),NOSPLIT,$0-8
    	// get SVE Feature Register 0 into x0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 937 bytes
    - Viewed (0)
  9. src/internal/cpu/cpu.go

    // Copyright 2017 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 implements processor feature detection
    // used by the Go standard library.
    package cpu
    
    import _ "unsafe" // for linkname
    
    // DebugOptions is set to true by the runtime if the OS supports reading
    // GODEBUG early in runtime startup.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. subprojects/core/build.gradle.kts

        annotationProcessor(project(":internal-instrumentation-processor"))
        annotationProcessor(platform(project(":distributions-dependencies")))
    
        testInterceptorsImplementation(platform(project(":distributions-dependencies")))
        "testInterceptorsAnnotationProcessor"(project(":internal-instrumentation-processor"))
        "testInterceptorsAnnotationProcessor"(platform(project(":distributions-dependencies")))
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top