Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 7,138 for sameId (0.16 sec)

  1. src/go/types/object_test.go

    		{NewTypeName(nopos, pkg, "t0", nil), false}, // no type yet
    		{t1, false}, // type name refers to named type and vice versa
    		{NewTypeName(nopos, nil, "t2", NewInterfaceType(nil, nil)), true}, // type name refers to unnamed type
    		{NewTypeName(nopos, pkg, "t3", n1), true},                         // type name refers to named type with different type name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. pkg/kube/krt/collection_test.go

    type SizedPod struct {
    	Named
    	Size string
    }
    
    func SizedPodCollection(pods krt.Collection[*corev1.Pod]) krt.Collection[SizedPod] {
    	return krt.NewCollection(pods, func(ctx krt.HandlerContext, i *corev1.Pod) *SizedPod {
    		s, f := i.Labels["size"]
    		if !f {
    			return nil
    		}
    		return &SizedPod{
    			Named: NewNamed(i),
    			Size:  s,
    		}
    	})
    }
    
    func NewNamed(n config.Namer) Named {
    	return Named{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/swift/testReport/groovy/build.gradle

    }
    
    configurations {
        testReportData {
            canBeConsumed = false
            attributes {
                attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category, Category.DOCUMENTATION))
                attribute(DocsType.DOCS_TYPE_ATTRIBUTE, objects.named(DocsType, 'test-report-data'))
            }
        }
    }
    
    dependencies {
        testReportData project(':core')
        testReportData project(':util')
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 757 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/testing/testReport/groovy/buildSrc/src/main/groovy/myproject.java-conventions.gradle

    configurations {
        binaryTestResultsElements {
            canBeResolved = false
            canBeConsumed = true
            attributes {
                attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category, Category.DOCUMENTATION))
                attribute(DocsType.DOCS_TYPE_ATTRIBUTE, objects.named(DocsType, 'test-report-data'))
            }
            outgoing.artifact(test.binaryResultsDirectory)
        }
    }
    // end::test-report[]
    
    repositories {
        mavenCentral()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 676 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/library/format.go

    )
    
    // Format provides a CEL library exposing common named Kubernetes string
    // validations. Can be used in CRD ValidationRules messageExpression.
    //
    //  Example:
    //
    //    rule:              format.dns1123label.validate(object.metadata.name).hasValue()
    //    messageExpression: format.dns1123label.validate(object.metadata.name).value().join("\n")
    //
    // format.named(name: string) -> ?Format
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolutionIssuesIntegrationTest.groovy

                        attributes {
                            attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category, Category.LIBRARY))
                            attribute(TargetJvmEnvironment.TARGET_JVM_ENVIRONMENT_ATTRIBUTE, objects.named(TargetJvmEnvironment, "non-jvm"))
                            attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage, "kotlin-metadata"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 04:02:23 UTC 2024
    - 30K bytes
    - Viewed (0)
  7. src/go/types/instantiate.go

    // orig must be an *Alias, *Named, or *Signature type. If there is no error,
    // the resulting Type is an instantiated type of the same kind (*Alias, *Named
    // or *Signature, respectively).
    //
    // Methods attached to a *Named type are also instantiated, and associated with
    // a new *Func that has the same position as the original method, but nil function
    // scope.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/RuleSourceAppliedToModelMapElementIntegrationTest.groovy

                        "foo"
                    }
    
                    @Mutate
                    void addTasks(ModelMap<Task> tasks) {
                        tasks.create("echo", MessageTask)
                        tasks.named("echo", EchoRules)
                    }
                }
    
                apply type: Rules
            '''
    
            then:
            succeeds "echo"
    
            and:
            output.contains "message: foo"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/groovy/compile/GroovyJavaJointCompileSourceOrderIntegrationTest.groovy

                    id 'groovy'
                }
                sourceSets {
                    mySources
                }
    
                tasks.named('compileMySourcesJava') {
                    classpath += files(sourceSets.mySources.groovy.classesDirectory)
                }
                tasks.named('compileMySourcesGroovy') {
                    classpath = sourceSets.mySources.compileClasspath
                }
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/api_predicates.go

    //
    // Predicates such as [Identical], [Implements], and
    // [Satisfies] assume that both operands belong to a
    // consistent collection of symbols ([Object] values).
    // For example, two [Named] types can be identical only if their
    // [Named.Obj] methods return the same [TypeName] symbol.
    // A collection of symbols is consistent if, for each logical
    // package whose path is P, the creation of those symbols
    // involved at most one call to [NewPackage](P, ...).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 16:36:08 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top