Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for nameKeys (0.17 sec)

  1. src/net/http/routing_tree.go

    		}
    	}
    	// Lastly, match the pattern (there can be at most one) that has a multi
    	// wildcard in this position to the rest of the path.
    	if c := n.multiChild; c != nil {
    		// Don't record a match for a nameless wildcard (which arises from a
    		// trailing slash in the pattern).
    		if c.pattern.lastSegment().s != "" {
    			matches = append(matches, pathUnescape(path[1:])) // remove initial slash
    		}
    		return c, matches
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. internal/config/config.go

    	Enable  = madmin.EnableKey
    	Comment = madmin.CommentKey
    
    	EnvSeparator = "="
    
    	// Enable values
    	EnableOn  = madmin.EnableOn
    	EnableOff = madmin.EnableOff
    
    	RegionKey  = "region"
    	NameKey    = "name"
    	RegionName = "name"
    	AccessKey  = "access_key"
    	SecretKey  = "secret_key"
    	License    = "license" // Deprecated Dec 2021
    	APIKey     = "api_key"
    	Proxy      = "proxy"
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  3. pkg/apis/core/v1/defaults.go

    	}
    	if obj.Scheme == "" {
    		obj.Scheme = v1.URISchemeHTTP
    	}
    }
    
    // SetDefaults_Namespace adds a default label for all namespaces
    func SetDefaults_Namespace(obj *v1.Namespace) {
    	// we can't SetDefaults for nameless namespaces (generateName).
    	// This code needs to be kept in sync with the implementation that exists
    	// in Namespace Canonicalize strategy (pkg/registry/core/namespace)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:24:15 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/symtab.go

    		if ldr.AttrNotInSymbolTable(s) {
    			return false
    		}
    		// FIXME: avoid having to do name inspections here.
    		// NB: the restrictions below on file local symbols are a bit
    		// arbitrary -- if it turns out we need nameless static
    		// symbols they could be relaxed/removed.
    		sn := ldr.SymName(s)
    		if (sn == "" || sn[0] == '.') && ldr.IsFileLocal(s) {
    			panic(fmt.Sprintf("unexpected file local symbol %d %s<%d>\n",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/dwarf.go

    		b = b.Link
    	}
    
    	return nil
    }
    
    // Every DIE manufactured by the linker has at least an AT_name
    // attribute (but it will only be written out if it is listed in the abbrev).
    // The compiler does create nameless DWARF DIEs (ex: concrete subprogram
    // instance).
    // FIXME: it would be more efficient to bulk-allocate DIEs.
    func (d *dwctxt) newdie(parent *dwarf.DWDie, abbrev int, name string) *dwarf.DWDie {
    	die := new(dwarf.DWDie)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. src/syscall/syscall_linux.go

    	runtimesyscall "internal/runtime/syscall"
    	"runtime"
    	"unsafe"
    )
    
    // Pull in entersyscall/exitsyscall for Syscall/Syscall6.
    //
    // Note that this can't be a push linkname because the runtime already has a
    // nameless linkname to export to assembly here and in x/sys. Additionally,
    // entersyscall fetches the caller PC and SP and thus can't have a wrapper
    // inbetween.
    
    //go:linkname runtime_entersyscall runtime.entersyscall
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
Back to top