Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 738 for embeddeds (0.22 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DefaultConnectionParameters.java

                this.gradleUserHomeDir = gradleUserHomeDir;
                return this;
            }
    
            public Builder setEmbedded(Boolean embedded) {
                this.embedded = embedded;
                return this;
            }
    
            public Builder setDaemonMaxIdleTimeValue(Integer daemonMaxIdleTimeValue) {
                this.daemonMaxIdleTimeValue = daemonMaxIdleTimeValue;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. schema/schema_test.go

    		{Name: "Name", DBName: "company_name", BindNames: []string{"Base", "Name"}, DataType: schema.String, TagSettings: map[string]string{"EMBEDDED": "EMBEDDED", "EMBEDDEDPREFIX": "company_"}},
    		{Name: "Ignored", BindNames: []string{"Base", "Ignored"}, TagSettings: map[string]string{"-": "-", "EMBEDDED": "EMBEDDED", "EMBEDDEDPREFIX": "company_"}},
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Dec 15 08:31:23 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  3. test/fixedbugs/bug485.go

    // Gccgo chose the wrong embedded method when the same type appeared
    // at different levels and the correct choice was not the first
    // appearance of the type in a depth-first search.
    
    package main
    
    type embedded string
    
    func (s embedded) val() string {
    	return string(s)
    }
    
    type A struct {
    	embedded
    }
    
    type B struct {
    	A
    	embedded
    }
    
    func main() {
    	b := &B{
    		A: A{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 624 bytes
    - Viewed (0)
  4. src/cmd/doc/testdata/pkg.go

    	*ExportedEmbeddedType               // Comment on line with exported embedded *field.
    	*qualified.ExportedEmbeddedType     // Comment on line with exported embedded *selector.field.
    	unexportedType                      // Comment on line with unexported embedded field.
    	*unexportedType                     // Comment on line with unexported embedded *field.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:16:55 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/objectmeta_test.go

    	invalidErrors := []string{
    		`[metadata.labels: Invalid value: "x y"`,
    		` embedded.kind: Invalid value: "%"`,
    		` embedded.metadata.name: Invalid value: ".."`,
    		` embeddedNested.kind: Invalid value: "%"`,
    		` embeddedNested.metadata.name: Invalid value: ".."`,
    		` embeddedNested.embedded.kind: Invalid value: "%"`,
    		` embeddedNested.embedded.metadata.name: Invalid value: ".."`,
    	}
    	for _, s := range invalidErrors {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 05:32:34 UTC 2023
    - 19K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/certs/renewal/readwriter.go

    // read or write a certificate stored/embedded in a file
    type certificateReadWriter interface {
    	//Exists return true if the certificate exists
    	Exists() (bool, error)
    
    	// Read a certificate stored/embedded in a file
    	Read() (*x509.Certificate, error)
    
    	// Write (update) a certificate stored/embedded in a file
    	Write(*x509.Certificate, crypto.Signer) error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 01 03:09:53 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. src/cmd/api/testdata/src/pkg/p1/golden.txt

    pkg p1, type S2 struct
    pkg p1, type S2 struct, Extra bool
    pkg p1, type S2 struct, embedded S
    pkg p1, type S2 struct, embedded S //deprecated
    pkg p1, type SI struct
    pkg p1, type SI struct, I int
    pkg p1, type T struct
    pkg p1, type TPtrExported struct
    pkg p1, type TPtrExported struct, embedded *Embedded
    pkg p1, type TPtrUnexported struct
    pkg p1, type Time struct
    pkg p1, type URL struct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:29:41 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  8. test/fixedbugs/issue14729.go

    // Issue 14729: structs cannot embed unsafe.Pointer per the spec.
    
    package main
    
    import "unsafe"
    
    type s struct { unsafe.Pointer } // ERROR "embedded type cannot be a pointer|embedded type may not be a pointer||embedded field type cannot be unsafe.Pointer"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 22 17:50:13 UTC 2020
    - 469 bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/embedded/EmbeddedKotlinPluginIntegTest.kt

                                    "Embedded Kotlin libraries not found in ${'$'}configuration"
                                })
                            }
                        }
                    }
                }
    
                """
            )
    
            build("assertions")
        }
    
        @Test
        fun `all embedded kotlin dependencies are resolvable`() {
    
            withBuildScript(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. platforms/extensibility/test-kit/src/test/groovy/org/gradle/testkit/runner/internal/feature/BuildResultOutputFeatureCheckTest.groovy

        def "supported Gradle version passes check [version = #gradleVersion, embedded = #embedded]"() {
            given:
            BuildResultOutputFeatureCheck featureCheck = new BuildResultOutputFeatureCheck(TestKitFeature.CAPTURE_BUILD_RESULT_OUTPUT_IN_DEBUG.since, embedded)
    
            when:
            featureCheck.verify()
    
            then:
            noExceptionThrown()
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top