Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 357 for embeddeds (0.21 sec)

  1. src/go/doc/testdata/e.1.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 {
    		t1
    		t2
    	}
    
    	// T2 has only M as top-level method. 
    	type T2 struct {
    		t1
    	}
    
    	// T2.M should appear as method of T2. 
    	func (T2) M()
    
    	// T3 has only M as top-level method. 
    	type T3 struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.8K bytes
    - Viewed (0)
  2. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/GradleProvider.java

            return new UriGradleProvider(location);
        }
    
        public static GradleProvider version(String version) {
            return new VersionGradleProvider(version);
        }
    
        public static GradleProvider embedded() {
            return new EmbeddedGradleProvider();
        }
    
        private static final class InstallationGradleProvider extends GradleProvider {
            private final File gradleHome;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/doc/c4/README.adoc

    The Kotlin DSL is embedded into the Gradle Build Tool and, just like the IDE, makes use of the Kotlin toolchain.
    Both the Kotlin DSL and the Kotlin toolchain leverage the Gradle Build Cache.
    
    image::images/C4_1_Context.svg[]
    
    ## Level 2: Container diagram
    
    When used for the compilation of scripts of a Gradle build, the Kotlin DSL Provider compiles scripts using an embedded Kotlin compiler.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 19 00:01:54 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. test/fixedbugs/bug478.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Using the same unexported name for a method as a method on an
    // imported embedded type caused a gccgo compilation failure.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 319 bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/webhtml.go

    func addTemplates(templates *template.Template) {
    	// Load specified file.
    	loadFile := func(fname string) string {
    		data, err := embeddedFiles.ReadFile(fname)
    		if err != nil {
    			fmt.Fprintf(os.Stderr, "internal/driver: embedded file %q not found\n",
    				fname)
    			os.Exit(1)
    		}
    		return string(data)
    	}
    	loadCSS := func(fname string) string {
    		return `<style type="text/css">` + "\n" + loadFile(fname) + `</style>` + "\n"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/BuildEnvironmentCrossVersionSpec.groovy

        @TargetGradleVersion(">=3.5")
        @Requires(UnitTestPreconditions.Jdk8OrEarlier)
        def "old versions can mutate environment on JDK < 9"() {
            given:
            toolingApi.requireDaemons() //cannot be run in embedded mode
    
            buildFile << """
                task printEnv() {
                    doLast {
                        println "<" + System.getenv() + ">"
                    }
                }"""
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. test/fixedbugs/issue6703i.go

    // errorcheck
    
    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Check for cycles in an embedded struct literal's method value.
    
    package embedlitmethvalue
    
    type T int
    
    func (T) m() int {
    	_ = x
    	return 0
    }
    
    type E struct{ T }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 20:27:09 UTC 2022
    - 407 bytes
    - Viewed (0)
  8. test/fixedbugs/issue6703p.go

    // errorcheck
    
    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Check for cycles in an embedded struct's method call.
    
    package embedmethcall
    
    type T int
    
    func (T) m() int {
    	_ = x
    	return 0
    }
    
    type E struct{ T }
    
    var (
    	e E
    	x = e.m() // ERROR "initialization cycle|depends upon itself" 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 20:27:09 UTC 2022
    - 404 bytes
    - Viewed (0)
  9. test/ken/embed.go

    // run
    
    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test embedded fields of structs, including methods.
    
    package main
    
    
    type I interface {
    	test1() int
    	test2() int
    	test3() int
    	test4() int
    	test5() int
    	test6() int
    	test7() int
    }
    
    /******
     ******
     ******/
    
    type SubpSubp struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 03 17:03:15 UTC 2016
    - 4.3K bytes
    - Viewed (0)
  10. test/fixedbugs/issue10219.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 10219: failure of inlinable function that uses embedded types
    // in an anonymous struct via :=.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 15 06:04:51 UTC 2015
    - 297 bytes
    - Viewed (0)
Back to top