Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,244 for sameId (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/go/types/subst.go

    	expanding *Named   // if non-nil, the instance that is being expanded
    	ctxt      *Context
    }
    
    func (subst *subster) typ(typ Type) Type {
    	switch t := typ.(type) {
    	case nil:
    		// Call typOrNil if it's possible that typ is nil.
    		panic("nil typ")
    
    	case *Basic:
    		// nothing to do
    
    	case *Alias:
    		// This code follows the code for *Named types closely.
    		// TODO(gri) try to factor better
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/java/JavaApplicationOutgoingVariantsIntegrationTest.groovy

                    apply plugin: 'jvm-ecosystem'
                    configurations.consume.attributes.attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage, Usage.JAVA_API))
                    configurations.consume.attributes.attribute(LibraryElements.LIBRARY_ELEMENTS_ATTRIBUTE, objects.named(LibraryElements, LibraryElements.CLASSES))
                }
            """
    
            when:
            resolve()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/build.go

    They must not be standard packages (like fmt), meta-patterns (std, cmd,
    all), or relative or absolute file paths.
    
    - All arguments must have the same version suffix. Different queries are not
    allowed, even if they refer to the same version.
    
    - All arguments must refer to packages in the same module at the same version.
    
    - Package path arguments must refer to main packages. Pattern arguments
    will only match main packages.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  10. src/os/types.go

    	ModeTemporary  = fs.ModeTemporary  // T: temporary file; Plan 9 only
    	ModeSymlink    = fs.ModeSymlink    // L: symbolic link
    	ModeDevice     = fs.ModeDevice     // D: device file
    	ModeNamedPipe  = fs.ModeNamedPipe  // p: named pipe (FIFO)
    	ModeSocket     = fs.ModeSocket     // S: Unix domain socket
    	ModeSetuid     = fs.ModeSetuid     // u: setuid
    	ModeSetgid     = fs.ModeSetgid     // g: setgid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top