Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 713 for Embeddeds (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/go/doc/testdata/e.0.golden

    // The package e is a go/doc test for embedded methods. 
    PACKAGE e
    
    IMPORTPATH
    	testdata/e
    
    FILENAMES
    	testdata/e.go
    
    TYPES
    	// T1 has no embedded (level 1) M method due to conflict. 
    	type T1 struct {
    		// contains filtered or unexported fields
    	}
    
    	// T2 has only M as top-level method. 
    	type T2 struct {
    		// contains filtered or unexported fields
    	}
    
    	// T2.M should appear as method of T2. 
    	func (T2) M()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.5K bytes
    - Viewed (0)
  9. test/fixedbugs/issue6789.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 6789: gccgo failed to find the hash function for an
    // unexported struct embedded in an exported struct.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 10 18:47:30 UTC 2013
    - 302 bytes
    - Viewed (0)
  10. src/go/doc/testdata/e.2.golden

    // The package e is a go/doc test for embedded methods. 
    PACKAGE e
    
    IMPORTPATH
    	testdata/e
    
    FILENAMES
    	testdata/e.go
    
    TYPES
    	// T1 has no embedded (level 1) M method due to conflict. 
    	type T1 struct {
    		// contains filtered or unexported fields
    	}
    
    	// T2 has only M as top-level method. 
    	type T2 struct {
    		// contains filtered or unexported fields
    	}
    
    	// T2.M should appear as method of T2. 
    	func (T2) M()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 2.1K bytes
    - Viewed (0)
Back to top