Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 222 for embeddeds (0.19 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTestKitIntegrationTest.groovy

            """
            settingsFile << """
            """
    
            when:
            def runner = GradleRunner.create()
            runner.withJvmArguments("-javaagent:${agentJar}")
            if (!GradleContextualExecuter.embedded) {
                runner.withGradleInstallation(buildContext.gradleHomeDir)
            }
            runner.withArguments("--configuration-cache")
            runner.forwardOutput()
            runner.withProjectDir(testDirectory)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. src/runtime/lockrank_off.go

    // license that can be found in the LICENSE file.
    
    //go:build !goexperiment.staticlockranking
    
    package runtime
    
    const staticLockRanking = false
    
    // // lockRankStruct is embedded in mutex, but is empty when staticklockranking is
    // disabled (the default)
    type lockRankStruct struct {
    }
    
    func lockInit(l *mutex, rank lockRank) {
    }
    
    func getLockRank(l *mutex) lockRank {
    	return 0
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:29:04 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. src/internal/types/testdata/fixedbugs/issue66285.go

    //go:build go1.13
    
    package p
    
    import "io"
    
    // A "duplicate method" error should be reported for
    // all these interfaces, irrespective of which package
    // the embedded Reader is coming from.
    
    type _ interface {
    	Reader
    	Reader // ERROR "duplicate method Read"
    }
    
    type Reader interface {
    	Read(p []byte) (n int, err error)
    }
    
    type _ interface {
    	io.Reader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 766 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/structural.go

    	// False does not mean to activate pruning.
    	XPreserveUnknownFields bool
    
    	// x-kubernetes-embedded-resource defines that the value is an
    	// embedded Kubernetes runtime.Object, with TypeMeta and
    	// ObjectMeta. The type must be object. It is allowed to further
    	// restrict the embedded object. Both ObjectMeta and TypeMeta
    	// are validated automatically. x-kubernetes-preserve-unknown-fields
    	// must be true.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. README.md

      quay.io/minio/minio server /data --console-address ":9001"
    ```
    
    The MinIO deployment starts using default root credentials `minioadmin:minioadmin`. You can test the deployment using the MinIO Console, an embedded
    object browser built into MinIO Server. Point a web browser running on the host machine to <http://127.0.0.1:9000> and log in with the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top