Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 115 for name12 (0.31 sec)

  1. src/internal/types/testdata/fixedbugs/issue62157.go

    	f(B, b, a)
    
    	// Differently named channel types conflict irrespective of channel direction.
    	f(A, B /* ERROR "type namedB of B does not match inferred type namedA for T" */)
    	f(B, A /* ERROR "type namedA of A does not match inferred type namedB for T" */)
    
    	// Ensure that all combinations of directional and
    	// bidirectional channels with a named directional
    	// channel lead to the correct (named) directional
    	// channel.
    	B = f(a, b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 23:22:35 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/dependencies/ClientModuleDependencySpec.groovy

            new DefaultClientModule(group, name, version, configuration)
        }
    
        def "not equal with different module dependencies"() {
            when:
            def dep1 = createDependency("group1", "name1", "version1", null)
            def dep2 = createDependency("group1", "name1", "version1", null)
            dep2.addDependency(Mock(ModuleDependency))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 10 08:54:53 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/names.go

    // to the rules documented on the type.
    func ValidateClusterTrustBundleName(signerName string) func(name string, prefix bool) []string {
    	return func(name string, isPrefix bool) []string {
    		if signerName == "" {
    			if strings.Contains(name, ":") {
    				return []string{"ClusterTrustBundle without signer name must not have \":\" in its name"}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/controller_ref_test.go

    	controllerRef.BlockOwnerDeletion = nil
    	var falseRef = false
    	obj2 := &metaObj{
    		ObjectMeta: ObjectMeta{
    			UID:  "uid2",
    			Name: "name1",
    			OwnerReferences: []OwnerReference{
    				{
    					Name:       "owner1",
    					Controller: &falseRef,
    				},
    				*controllerRef,
    				{
    					Name:       "owner2",
    					Controller: &falseRef,
    				},
    			},
    		},
    	}
    
    	if GetControllerOf(obj1) != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 05:14:33 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. api/maven-api-di/src/main/java/org/apache/maven/api/di/Named.java

    import java.lang.annotation.Retention;
    
    import static java.lang.annotation.ElementType.*;
    import static java.lang.annotation.RetentionPolicy.RUNTIME;
    
    @Qualifier
    @Retention(RUNTIME)
    @Documented
    public @interface Named {
        String value() default "";
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:45:47 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/scala/mixedJavaAndScala/groovy/src/main/java/org/gradle/sample/Named.java

    package org.gradle.sample;
    
    public interface Named {
        String getName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 77 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/scala/scala3/kotlin/src/main/scala/org/gradle/sample/Named.scala

    package org.gradle.sample
    
    import org.apache.commons.collections.list.GrowthList
    
    /**
     * Defines the traits of one who is named.
     */
    trait Named:
      def names: List[String]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 204 bytes
    - Viewed (0)
  8. src/runtime/plugin.go

    		symName := resolveNameOff(unsafe.Pointer(md.types), ptab.name)
    		t := toRType((*_type)(unsafe.Pointer(md.types))).typeOff(ptab.typ) // TODO can this stack of conversions be simpler?
    		var val any
    		valp := (*[2]unsafe.Pointer)(unsafe.Pointer(&val))
    		(*valp)[0] = unsafe.Pointer(t)
    
    		name := symName.Name()
    		if t.Kind_&abi.KindMask == abi.Func {
    			name = "." + name
    		}
    		syms[name] = val
    	}
    	return md.pluginpath, syms, md.inittasks, ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/netbios/Name.java

            }
            this.name = name.toUpperCase();
            this.hexCode = hexCode;
            this.scope = scope != null && scope.length() > 0 ? scope : cfg.getNetbiosScope();
            this.srcHashCode = 0;
        }
    
    
        /**
         * @param cfg
         * @param name
         */
        public Name ( Configuration cfg, NetbiosName name ) {
            this.config = cfg;
            this.name = name.getName();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 7.7K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/api/plugins/DefaultJvmSoftwareComponentTest.groovy

            given:
            project.plugins.apply(JavaBasePlugin)
    
            expect:
            project.objects.newInstance(DefaultJvmSoftwareComponent, "name")
            project.objects.newInstance(DefaultJvmSoftwareComponent, "name2")
            project.objects.newInstance(DefaultJvmSoftwareComponent, "name3")
        }
    
        def "can add multiple feature instances to the same component"() {
            given:
            project.plugins.apply(JavaBasePlugin)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 21:18:02 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top