Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 618 for Embeddeds (0.27 sec)

  1. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApi.groovy

        }
    
        /**
         * Only 'current->[some-version]' can run embedded.
         * If running '[other-version]->current' the other Gradle version does not know how to start Gradle from the embedded classpath.
         */
        boolean isEmbedded() {
            // Use in-process build when running tests in embedded mode and daemon is not required
            return GradleContextualExecuter.embedded && !requiresDaemon && GradleVersion.current() == dist.version
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:07:23 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/GradleExecutionParameters.java

            this.projectDir = projectDir;
            this.buildArgs = buildArgs;
            this.jvmArgs = jvmArgs;
            this.injectedClassPath = injectedClassPath;
            this.embedded = embedded;
            this.standardOutput = standardOutput;
            this.standardError = standardError;
            this.standardInput = standardInput;
            this.environment = environment;
        }
    
        public GradleProvider getGradleProvider() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/objectmeta/validation_test.go

    			required("apiVersion"),
    			required("kind"),
    		}},
    		{name: "embedded", object: `
    {
      "embedded": {}
    }`, errors: []validationMatch{
    			required("embedded", "apiVersion"),
    			required("embedded", "kind"),
    		}},
    		{name: "nested", object: `
    {
      "nested": {
        "embedded": {}
      }
    }`, errors: []validationMatch{
    			required("nested", "apiVersion"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/support/EmbeddedKotlinProviderTest.kt

            val result = build("buildEnvironment")
    
            assertThat(result.output, containsString("No dependencies"))
        }
    
        @Test
        fun `embedded kotlin dependencies are pinned to the embedded version`() {
    
            withBuildScript(
                """
                buildscript {
                    $repositoriesBlock
                    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-plugins/src/test/kotlin/org/gradle/kotlin/dsl/plugins/embedded/EmbeddedKotlinPluginTest.kt

     */
    
    package org.gradle.kotlin.dsl.plugins.embedded
    
    import com.nhaarman.mockito_kotlin.inOrder
    import com.nhaarman.mockito_kotlin.mock
    import org.gradle.api.logging.Logger
    import org.gradle.kotlin.dsl.*
    import org.junit.Test
    
    
    class EmbeddedKotlinPluginTest {
        @Test
        fun `emit a warning if the kotlin plugin version is not the same as embedded`() {
    
            val logger = mock<Logger>()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-plugins/src/main/kotlin/org/gradle/kotlin/dsl/plugins/base/KotlinDslBasePlugin.kt

    import org.gradle.kotlin.dsl.plugins.dsl.KotlinDslPluginOptions
    import org.gradle.kotlin.dsl.plugins.embedded.EmbeddedKotlinPlugin
    import org.gradle.kotlin.dsl.plugins.embedded.kotlinArtifactConfigurationNames
    
    
    /**
     * The `kotlin-dsl-base` plugin.
     *
     * - Applies the `embedded-kotlin` plugin
     * - Adds the `gradleKotlinDsl()` dependency to the `compileOnly` and `testImplementation` configurations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. test/fixedbugs/issue53137.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"unsafe"
    )
    
    type Embedded struct {
    	B int
    }
    
    type S[K any] struct {
    	A K
    	Embedded
    }
    
    func showOffsets[K any](d *S[K]) {
    	o1 := unsafe.Offsetof(d.B)
    	o2 := unsafe.Offsetof(d.Embedded)
    	if o1 != o2 {
    		panic("offset mismatch")
    	}
    }
    
    func main() {
    	showOffsets(new(S[int]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 31 14:58:09 UTC 2022
    - 466 bytes
    - Viewed (0)
  8. docs/tr/docs/newsletter.md

    # FastAPI ve Arkadaşları Bülteni
    
    <iframe data-w-type="embedded" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://xr4n4.mjt.lu/wgt/xr4n4/hj5/form?c=40a44fa4" width="100%" style="height: 0;"></iframe>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 09 15:14:23 UTC 2024
    - 325 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/pruning/algorithm_test.go

        },
        "spec": {
          "embedded": {
            "apiVersion": "foo/v1",
            "kind": "Foo",
            "metadata": {
              "name": "instance",
              "unspecified": "bar"
            },
            "spec": {
            }
          }
        }
      }
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/decls3.go

    // license that can be found in the LICENSE file.
    
    // embedded types
    
    package decls3
    
    import "unsafe"
    import "fmt"
    
    // fields with the same name at the same level cancel each other out
    
    func _() {
    	type (
    		T1 struct { X int }
    		T2 struct { X int }
    		T3 struct { T1; T2 } // X is embedded twice at the same level via T1->X, T2->X
    	)
    
    	var t T3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 23:16:04 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top