Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for namE (0.17 sec)

  1. internal/event/name.go

    			res[i] = Name(i + 1)
    		}
    		return res
    	default:
    		return []Name{name}
    	}
    }
    
    // Mask returns the type as mask.
    // Compound "All" types are expanded.
    func (name Name) Mask() uint64 {
    	if name < objectSingleTypesEnd {
    		return 1 << (name - 1)
    	}
    	var mask uint64
    	for _, n := range name.Expand() {
    		mask |= 1 << (n - 1)
    	}
    	return mask
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 01:11:10 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. 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)
  3. pkg/config/resource/name.go

    func (n FullName) Validate() error {
    	if len(n.Name) == 0 {
    		return fmt.Errorf("invalid name '%s': name must not be empty", n.String())
    	}
    	return nil
    }
    
    // NewFullName creates a new FullName from the given Namespace and Name.
    func NewFullName(ns Namespace, n LocalName) FullName {
    	return FullName{
    		Namespace: ns,
    		Name:      n,
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 14 13:55:49 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/validation/path/name.go

    }
    
    // IsValidPathSegmentPrefix validates the name can be used as a prefix for a name which will be encoded as a path segment
    // It does not check for exact matches with disallowed names, since an arbitrary suffix might make the name valid
    func IsValidPathSegmentPrefix(name string) []string {
    	var errors []string
    	for _, illegalContent := range NameMayNotContain {
    		if strings.Contains(name, illegalContent) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 16 13:23:13 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  5. pkg/config/host/name.go

    // e.g.:
    //
    //	Name("foo.com").Matches("foo.com")   = true
    //	Name("foo.com").Matches("bar.com")   = false
    //	Name("*.com").Matches("foo.com")     = true
    //	Name("bar.com").Matches("*.com")     = true
    //	Name("*.foo.com").Matches("foo.com") = false
    //	Name("*").Matches("foo.com")         = true
    //	Name("*").Matches("*.com")           = true
    func (n Name) Matches(o Name) bool {
    	hWildcard := n.IsWildCarded()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 09 16:25:50 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. operator/pkg/name/name.go

    	s := string(n)
    	return ComponentName(strings.ToUpper(s[0:1]) + s[1:])
    }
    
    // UserFacingComponentName returns the name of the given component that should be displayed to the user in high
    // level CLIs (like progress log).
    func UserFacingComponentName(name ComponentName) string {
    	ret, ok := userFacingComponentNames[name]
    	if !ok {
    		return "Unknown"
    	}
    	return ret
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/netbios/Name.java

        public String name, scope;
        public int hexCode;
        int srcHashCode; /* srcHashCode must be set by name resolution
                          * routines before entry into addressCache
                          */
    
        Name() {
        }
        public Name( String name, int hexCode, String scope ) {
            if( name.length() > 15 ) {
                name = name.substring( 0, 15 );
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 6.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/pkg/printers/name.go

    )
    
    // NamePrinter is an implementation of ResourcePrinter which outputs "resource/name" pair of an object.
    type NamePrinter struct {
    	// ShortOutput indicates whether an operation should be
    	// printed along side the "resource/name" pair for an object.
    	ShortOutput bool
    	// Operation describes the name of the action that
    	// took place on an object, to be included in the
    	// finalized "successful" message.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 28 23:24:54 UTC 2019
    - 3.9K bytes
    - Viewed (0)
  9. releasenotes/notes/external-name.yaml

          * Because the destination DNS name is treated as opaque, we cannot apply Istio policies to it as expected. For example, if I point
            an external name at another in-cluster Service (for example, `example.default.svc.cluster.local`), mTLS would not be used.
          
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 27 03:08:29 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/incorrect-port-name-external-name-service-type.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: nginx
      namespace: nginx-ns
    spec:
      externalName: nginx.example.com
      ports:
      - name: nginx
        port: 443
        protocol: TCP
        targetPort: 443
      type: ExternalName
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: nginx-svc2
      namespace: nginx-ns2
    spec:
      externalName: nginx.example.com
      ports:
      - port: 443
        protocol: TCP
        targetPort: 443
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 09 00:46:04 UTC 2021
    - 641 bytes
    - Viewed (0)
Back to top