Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 241 for embeddeds (0.26 sec)

  1. platforms/core-runtime/instrumentation-agent-services/src/integTest/groovy/org/gradle/internal/instrumentation/agent/AgentApplicationTest.groovy

            false              | true                || false
        }
    
        @Requires(
            value = IntegTestPreconditions.IsEmbeddedExecutor,
            reason = "Tests the embedded distribution"
        )
        def "daemon spawned from embedded runner has agent enabled"() {
            given:
            executer.tap {
                // Force a separate daemon spawned by the InProcessGradleExecuter
                requireDaemon()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

            isEnabled = false
        }
    }
    
    
    private
    fun IntegrationTest.setUpAgentIfNeeded(testType: TestType, executer: String) {
        if (executer == "embedded") {
            // Apply the instrumentation agent to the test process when running integration tests with embedded Gradle executer.
            jvmArgumentProviders.add(project.objects.newInstance<AgentsClasspathProvider>().apply {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. testing/public-api-tests/build.gradle.kts

            attribute(LibraryElements.LIBRARY_ELEMENTS_ATTRIBUTE, project.objects.named("gradle-local-repository"))
            attribute(Bundling.BUNDLING_ATTRIBUTE, project.objects.named(Bundling.EMBEDDED))
        }
        extendsFrom(testRepo.get())
    }
    
    dependencies {
        testRepo(project(":public-api"))
        integTestDistributionRuntimeOnly(project(":distributions-jvm"))
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:59 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. src/encoding/json/encode_test.go

    		},
    		want: `{"X":6}`,
    	}, {
    		// Unexported embedded field of non-struct type should not be serialized.
    		CaseName: Name("UnexportedEmbeddedInt"),
    		makeInput: func() any {
    			type (
    				myInt int
    				S     struct{ myInt }
    			)
    			return S{5}
    		},
    		want: `{}`,
    	}, {
    		// Exported embedded field of non-struct type should be serialized.
    		CaseName: Name("ExportedEmbeddedInt"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  5. src/runtime/debug/stack_test.go

    		// change the value in-process because runtime.GOROOT uses the value from
    		// initial (not current) environment. Spawn a subprocess to determine the
    		// real baked-in GOROOT.
    		t.Logf("found GOROOT %q from environment; checking embedded GOROOT value", envGoroot)
    		testenv.MustHaveExec(t)
    		exe, err := os.Executable()
    		if err != nil {
    			t.Fatal(err)
    		}
    		cmd := exec.Command(exe)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. src/site/xdoc/maven-deps.odg

    Maven 4 API sisu plexus inject guice plexus core distribution sec-dispatcher commons-cli utils plugin-api artifact embedder settings-builder model-builder model cipher interpolation wagon-provider-api classworlds repository-metadata settings resolver api spi impl util resolver-provider builder-support jansi slf4j-api shared-utils slf4j-provider bom toolchain-builder toolchain-model meta di xml model plugin toolchain core spi xml-impl xml settings jline3 compat slf4j-wrapper jline woodstox api-impl...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 24 16:01:00 UTC 2024
    - 37K bytes
    - Viewed (0)
  7. pkg/controller/podautoscaler/config/v1alpha1/defaults.go

    // is intentionally not registered in the scheme as a "normal" `SetDefaults_Foo`
    // function to allow consumers of this type to set whatever defaults for their
    // embedded configs. Forcing consumers to use these defaults would be problematic
    // as defaulting in the scheme is done as part of the conversion, and there would
    // be no easy way to opt-out. Instead, if you want to use this defaulting method
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 19 09:49:23 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleDistribution.java

        /**
         * Returns true if the tooling API of this distribution correctly handles logging in embedded mode.
         */
        boolean isToolingApiLoggingInEmbeddedModeSupported();
    
        /**
         * Returns true if this version handles the client provided standard input stream when running in embedded mode.
         */
        boolean isToolingApiStdinInEmbeddedModeSupported();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/TapiAgentInstrumentationCrossVersionSpec.groovy

    class TapiAgentInstrumentationCrossVersionSpec extends ToolingApiSpecification {
        private String buildOutput
    
        def setup() {
            // TODO(mlopatkin) Figure a way to have agent-based instrumentation in the embedded TAPI mode.
            toolingApi.requireDaemons()
        }
    
        def "agent is enabled in TAPI by default"() {
            withDumpAgentStatusTask()
    
            when:
            runDumpTaskWithTapi()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/ToolingApiBackedGradleExecuter.groovy

            try {
                toolingApi.withConnection {
                    action.execute(it)
                }
            } finally {
                if (GradleContextualExecuter.embedded) {
                    System.getProperties().clear()
                    System.getProperties().putAll(systemPropertiesBeforeInvocation)
                }
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top