Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 713 for Embeddeds (0.2 sec)

  1. src/sort/example_wrapper_test.go

    // ByName implements sort.Interface by providing Less and using the Len and
    // Swap methods of the embedded Organs value.
    type ByName struct{ Organs }
    
    func (s ByName) Less(i, j int) bool { return s.Organs[i].Name < s.Organs[j].Name }
    
    // ByWeight implements sort.Interface by providing Less and using the Len and
    // Swap methods of the embedded Organs value.
    type ByWeight struct{ Organs }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.6K bytes
    - Viewed (0)
  2. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/testing/TestType.kt

    import org.gradle.api.tasks.testing.Test
    
    
    enum class TestType(val prefix: String, val executers: List<String>) {
        INTEGRATION("integ", listOf("embedded", "forking", "noDaemon", "parallel", "configCache", "isolatedProjects")),
        CROSSVERSION("crossVersion", listOf("embedded", "forking"))
    }
    
    
    fun Test.includeSpockAnnotation(fqcn: String) {
        systemProperties.compute("include.spock.annotation") { _, oldValue ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/certs/renewal/manager.go

    		fileName string
    	}{
    		{
    			longName: "certificate embedded in the kubeconfig file for the admin to use and for kubeadm itself",
    			fileName: kubeadmconstants.AdminKubeConfigFileName,
    		},
    		{
    			longName: "certificate embedded in the kubeconfig file for the super-admin",
    			fileName: kubeadmconstants.SuperAdminKubeConfigFileName,
    		},
    		{
    			longName: "certificate embedded in the kubeconfig file for the controller manager to use",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/typecheck/subr.go

    		if !f.IsMethod() {
    			continue
    		}
    
    		// add it to the base type method list
    		f = f.Copy()
    		f.Embedded = 1 // needs a trampoline
    		for _, d := range path {
    			if d.field.Type.IsPtr() {
    				f.Embedded = 2
    				break
    			}
    		}
    		ms = append(ms, f)
    	}
    
    	for _, f := range t.Methods() {
    		f.Sym.SetUniq(false)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/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: Mon May 27 02:59:09 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/EmbeddedKotlinProvider.kt

        ) {
            embeddedKotlinVersions.forEach { (module, version) ->
                dependencies.constraints.add(configuration, module).apply {
                    version { strictly(version) }
                    because("Pinned to the embedded Kotlin")
                }
            }
        }
    
        private
        fun kotlinModuleVersionNotationFor(kotlinModule: String) =
            "${kotlinModuleNotationFor(kotlinModule)}:$embeddedKotlinVersion"
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/VersionCatalogDependencyRegistryTest.groovy

            "the:convention" | "libs.the.myconvention"
            "some.class.embedded:d" | "libs.some.myclass.embedded.d"
            "Capitalized:Library" | "libs.capitalized.library"
            "UPPERCASE:ALL-THE-THINGS" | "libs.uppercase.all.the.things"
            "embedded-42:numbers" | "libs.embedded.v42.numbers"
        }
    
        @Unroll
        def "fully qualified or artifact only libraries"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. 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)
Back to top