Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 724 for typed (0.12 sec)

  1. subprojects/core/src/main/java/org/gradle/api/services/internal/BuildServiceRegistryInternal.java

        BuildServiceRegistration<?, ?> findByName(String name);
    
        @Nullable
        BuildServiceRegistration<?, ?> findByType(Class<?> type);
    
        @Nullable
        BuildServiceRegistration<?, ?> findRegistration(Class<?> type, String name);
    
        Set<BuildServiceRegistration<?, ?>> findRegistrations(Class<?> type, String name);
    
        List<ResourceLock> getSharedResources(Set<Provider<? extends BuildService<?>>> services);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. src/reflect/makefunc.go

    // a typed function in terms of Values.
    //
    // The Examples section of the documentation includes an illustration
    // of how to use MakeFunc to build a swap function for different types.
    func MakeFunc(typ Type, fn func(args []Value) (results []Value)) Value {
    	if typ.Kind() != Func {
    		panic("reflect: call of MakeFunc with non-Func type")
    	}
    
    	t := typ.common()
    	ftyp := (*funcType)(unsafe.Pointer(t))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:20:05 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. maven-di/src/test/java/org/apache/maven/di/impl/InjectorImplTest.java

            assertNotNull(mojo);
            assertNotNull(mojo.service);
        }
    
        @SuppressWarnings("unused")
        static class TypedTest {
    
            interface MyService {}
    
            @Named
            @Typed
            static class MyServiceImpl implements MyService {}
    
            @Named
            static class MyMojo {
                @Inject
                MyService service;
            }
        }
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/ProjectSchemaAccessorsIntegrationTest.kt

                build("-q").output,
                containsString("build.Java11Plugin${'$'}Java11Extension")
            )
        }
    
        @Test
        fun `accessors to kotlin internal task types are typed with the first kotlin public parent type`() {
    
            withDefaultSettings()
            withKotlinBuildSrc()
            withFile(
                "buildSrc/src/main/kotlin/my/CustomTasks.kt",
                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  5. security/pkg/k8s/controller/casecret.go

    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	corev1 "k8s.io/client-go/kubernetes/typed/core/v1"
    
    	"istio.io/istio/pkg/log"
    )
    
    var k8sControllerLog = log.RegisterScope("secretcontroller", "Citadel kubernetes controller log")
    
    // CaSecretController manages the self-signed signing CA secret.
    type CaSecretController struct {
    	client corev1.CoreV1Interface
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. src/runtime/metrics/sample.go

    //
    // Note that re-use has some caveats. Notably, Values should not be read or
    // manipulated while a Read with that value is outstanding; that is a data race.
    // This property includes pointer-typed Values (for example, [Float64Histogram])
    // whose underlying storage will be reused by Read when possible. To safely use
    // such values in a concurrent setting, all data must be deep-copied.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:59:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authorization/authorizerfactory/delegating.go

    	"k8s.io/apiserver/plugin/pkg/authorizer/webhook"
    	authorizationclient "k8s.io/client-go/kubernetes/typed/authorization/v1"
    )
    
    // DelegatingAuthorizerConfig is the minimal configuration needed to create an authorizer
    // built to delegate authorization to a kube API server
    type DelegatingAuthorizerConfig struct {
    	SubjectAccessReviewClient authorizationclient.AuthorizationV1Interface
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. src/cmd/doc/doc_test.go

    			`type T1 = T2`,
    		},
    		[]string{
    			`type T1 T2`,
    			`type ExportedType`,
    		},
    	},
    	// Type -u with unexported fields.
    	{
    		"type with unexported fields and -u",
    		[]string{"-u", p, `ExportedType`},
    		[]string{
    			`Comment about exported type`, // Include comment.
    			`type ExportedType struct`,    // Type definition.
    			`Comment before exported field.*\n.*ExportedField +int`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:16:55 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/Execute3InstanceInstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                // Typed nulls
                [fromString(), "command.execute((String[]) null, null)", "", ""],
                [fromString(), "command.execute(null, (File) null)", "", ""],
                [fromString(), "command.execute((String[]) null, (File) null)", "", ""],
                // type-wrapped arguments
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/stripmeta.go

    	if err != nil {
    		return nil, nil, err
    	}
    	f.stripFields(managed.Fields(), manager)
    	return newObj, managed, nil
    }
    
    // stripFields removes a predefined set of paths found in typed from managed
    func (f *stripMetaManager) stripFields(managed fieldpath.ManagedFields, manager string) {
    	vs, ok := managed[manager]
    	if ok {
    		if vs == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top