Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 338 for pname (0.37 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/crypto/tls/tls_test.go

    			aName, bName := CipherSuiteName(a), CipherSuiteName(b)
    			// * < RC4
    			if !strings.Contains(aName, "RC4") && strings.Contains(bName, "RC4") {
    				return -1
    			} else if strings.Contains(aName, "RC4") && !strings.Contains(bName, "RC4") {
    				return +1
    			}
    			// * < CBC_SHA256
    			if !strings.Contains(aName, "CBC_SHA256") && strings.Contains(bName, "CBC_SHA256") {
    				return -1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  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. 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)
  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. 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)
  10. 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)
Back to top