Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 345 for Lname (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  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. 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)
  6. 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)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler.go

    			}
    		} else {
    			priorities[gv.Group] = info.GroupPriorityMinimum
    		}
    	}
    
    	sort.SliceStable(groups, func(i, j int) bool {
    		iName := groups[i].Name
    		jName := groups[j].Name
    
    		// Default to 0 priority by default
    		iPriority := priorities[iName]
    		jPriority := priorities[jName]
    
    		// Sort discovery based on apiservice priority.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  8. src/go/printer/printer_test.go

    func init() {
    	const name = "foobar"
    	var buf bytes.Buffer
    	if err := Fprint(&buf, fset, &ast.Ident{Name: name}); err != nil {
    		panic(err) // error in test
    	}
    	// in debug mode, the result contains additional information;
    	// ignore it
    	if s := buf.String(); !debug && s != name {
    		panic("got " + s + ", want " + name)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/internal/upload/upload.go

    	} else if match[1] > today {
    		u.logger.Printf("Report date for %q is later than today (%s)", filepath.Base(fname), today)
    		return // report is in the future, which shouldn't happen
    	}
    	buf, err := os.ReadFile(fname)
    	if err != nil {
    		u.logger.Printf("%v reading %s", err, fname)
    		return
    	}
    	if u.uploadReportContents(fname, buf) {
    		// anything left to do?
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/internal/upload/date.go

    }
    
    func (u *uploader) parseCountFile(fname string) (*counter.File, error) {
    	u.cache.mu.Lock()
    	defer u.cache.mu.Unlock()
    	if u.cache.m == nil {
    		u.cache.m = make(map[string]*counter.File)
    	}
    	if f, ok := u.cache.m[fname]; ok {
    		return f, nil
    	}
    	buf, err := os.ReadFile(fname)
    	if err != nil {
    		return nil, fmt.Errorf("parse ReadFile: %v for %s", err, fname)
    	}
    	f, err := counter.Parse(fname, buf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top