Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 595 for embeddeds (0.23 sec)

  1. src/cmd/compile/internal/types2/object_test.go

    	if orig == nil {
    		t.Fatalf("original error.Error not found")
    	}
    
    	// get embedded error.Error method
    	iface := pkg.Scope().Lookup("I")
    	embed, _, _ := LookupFieldOrMethod(iface.Type(), false, nil, "Error")
    	if embed == nil {
    		t.Fatalf("embedded error.Error not found")
    	}
    
    	// original and embedded Error object should be identical
    	if orig != embed {
    		t.Fatalf("%s (%p) != %s (%p)", orig, orig, embed, embed)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/object.go

    // For embedded fields, the name is the unqualified type name
    // under which the field is accessible.
    func NewField(pos syntax.Pos, pkg *Package, name string, typ Type, embedded bool) *Var {
    	return &Var{object: object{nil, pos, pkg, name, typ, 0, colorFor(typ), nopos}, embedded: embedded, isField: true}
    }
    
    // Anonymous reports whether the variable is an embedded field.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/doc/c4/C4_2_Container.puml

    Rel(dev, gradle, "Uses", "Command Line")
    Rel(dev, editor, "Uses", "GUI")
    
    Rel(provider, kotlinc, "Uses", "Embedded")
    Rel(plugin, kgp, "Applies")
    
    Rel(ideKotlin, kotlinc, "Uses")
    Rel(ideKotlin, resolver, "Loads", "Embedded")
    
    Rel(provider, buildCache, "Uses")
    Rel(kgp, buildCache, "Uses")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/resolver/KotlinBuildScriptModelRequest.kt

                is GradleInstallation.Remote -> useDistribution(uri)
                is GradleInstallation.Version -> useGradleVersion(number)
                is GradleInstallation.Embedded -> (this@useGradleFrom as DefaultGradleConnector).apply {
                    embedded(true)
                    useClasspathDistribution()
                }
                GradleInstallation.Wrapper -> useBuildDistribution()
            }
        }
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/compatibility.adoc

    | 21| 8.4 | 8.5
    | 22| 8.7 | 8.8
    | 23| N/A | N/A
    |===
    
    [[kotlin]]
    == Kotlin
    
    Gradle is tested with Kotlin 1.6.10 through 2.0.0.
    Beta and RC versions may or may not work.
    
    .Embedded Kotlin version
    |===
    | Embedded Kotlin version | Minimum Gradle version | Kotlin Language version
    
    | 1.3.10 | 5.0 | 1.3
    | 1.3.11 | 5.1 | 1.3
    | 1.3.20 | 5.2 | 1.3
    | 1.3.21 | 5.3 | 1.3
    | 1.3.31 | 5.5 | 1.3
    | 1.3.41 | 5.6 | 1.3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 03:35:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. src/go/types/object_test.go

    	if orig == nil {
    		t.Fatalf("original error.Error not found")
    	}
    
    	// get embedded error.Error method
    	iface := pkg.Scope().Lookup("I")
    	embed, _, _ := LookupFieldOrMethod(iface.Type(), false, nil, "Error")
    	if embed == nil {
    		t.Fatalf("embedded error.Error not found")
    	}
    
    	// original and embedded Error object should be identical
    	if orig != embed {
    		t.Fatalf("%s (%p) != %s (%p)", orig, orig, embed, embed)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. src/go/types/union.go

    					check.errorf(tlist[i], InvalidUnion, "invalid use of ~ (underlying type of %s is %s)", t.typ, u)
    					continue
    				}
    			}
    
    			// Stand-alone embedded interfaces are ok and are handled by the single-type case
    			// in the beginning. Embedded interfaces with tilde are excluded above. If we reach
    			// here, we must have at least two terms in the syntactic term list (but not necessarily
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. src/html/template/url.go

    			return false
    		}
    	}
    	return true
    }
    
    // urlEscaper produces an output that can be embedded in a URL query.
    // The output can be embedded in an HTML attribute without further escaping.
    func urlEscaper(args ...any) string {
    	return urlProcessor(false, args...)
    }
    
    // urlNormalizer normalizes URL content so it can be embedded in a quote-delimited
    // string or parenthesis delimited url(...).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/union.go

    					check.errorf(tlist[i], InvalidUnion, "invalid use of ~ (underlying type of %s is %s)", t.typ, u)
    					continue
    				}
    			}
    
    			// Stand-alone embedded interfaces are ok and are handled by the single-type case
    			// in the beginning. Embedded interfaces with tilde are excluded above. If we reach
    			// here, we must have at least two terms in the syntactic term list (but not necessarily
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 16:16:58 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/validation.go

    		if len(s.Type) == 0 {
    			allErrs = append(allErrs, field.Required(fldPath.Child("type"), "must be object if x-kubernetes-embedded-resource is true"))
    		} else {
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("type"), s.Type, "must be object if x-kubernetes-embedded-resource is true"))
    		}
    	} else if len(s.Type) == 0 && !s.Extensions.XIntOrString && !s.Extensions.XPreserveUnknownFields {
    		switch lvl {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top