Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 713 for Embeddeds (0.14 sec)

  1. pkg/test/framework/components/cluster/kube/cluster.go

    	filename string
    
    	// vmSupport indicates the cluster is being used for fake VMs
    	vmSupport bool
    
    	// CLIClient is embedded to interact with the kube cluster.
    	kube.CLIClient
    
    	// Topology is embedded to include common functionality.
    	cluster.Topology
    }
    
    // CanDeploy for a kube cluster returns true if the config is a non-vm, or if the cluster supports
    // fake pod-based VMs.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 17 22:54:10 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  2. test/interface/embed1.go

    // rundir
    
    // 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 that embedded interface types can have local methods.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 10 20:35:27 UTC 2012
    - 250 bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DefaultGradleConnector.java

            connectionParamsBuilder.setSearchUpwards(searchUpwards);
            return this;
        }
    
        public GradleConnector embedded(boolean embedded) {
            connectionParamsBuilder.setEmbedded(embedded);
            return this;
        }
    
        public GradleConnector daemonMaxIdleTime(int timeoutValue, TimeUnit timeoutUnits) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  4. src/net/http/example_filesystem_test.go

    // remove files and directories that start with a period from its output.
    type dotFileHidingFile struct {
    	http.File
    }
    
    // Readdir is a wrapper around the Readdir method of the embedded File
    // that filters out all files that start with a period in their name.
    func (f dotFileHidingFile) Readdir(n int) (fis []fs.FileInfo, err error) {
    	files, err := f.File.Readdir(n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 02:32:42 UTC 2020
    - 2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/go/doc/testdata/error1.0.golden

    // 
    PACKAGE error1
    
    IMPORTPATH
    	testdata/error1
    
    FILENAMES
    	testdata/error1.go
    
    TYPES
    	// 
    	type I0 interface {
    		// When embedded, the predeclared error interface
    		// must remain visible in interface types.
    		error
    	}
    
    	// 
    	type S0 struct {
    		// contains filtered or unexported fields
    	}
    
    	// 
    	type T0 struct {
    		ExportedField interface {
    			// error should be visible
    			error
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 390 bytes
    - Viewed (0)
  8. src/go/doc/testdata/error1.2.golden

    // 
    PACKAGE error1
    
    IMPORTPATH
    	testdata/error1
    
    FILENAMES
    	testdata/error1.go
    
    TYPES
    	// 
    	type I0 interface {
    		// When embedded, the predeclared error interface
    		// must remain visible in interface types.
    		error
    	}
    
    	// 
    	type S0 struct {
    		// contains filtered or unexported fields
    	}
    
    	// 
    	type T0 struct {
    		ExportedField interface {
    			// error should be visible
    			error
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 390 bytes
    - Viewed (0)
  9. 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)
  10. src/reflect/type.go

    		hash = fnv1(hash, []byte(name)...)
    		if !f.Embedded() {
    			repr = append(repr, (" " + name)...)
    		} else {
    			// Embedded field
    			if f.Typ.Kind() == abi.Pointer {
    				// Embedded ** and *interface{} are illegal
    				elem := ft.Elem()
    				if k := elem.Kind(); k == abi.Pointer || k == abi.Interface {
    					panic("reflect.StructOf: illegal embedded field type " + stringFor(ft))
    				}
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top