Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for nameKeys (0.26 sec)

  1. src/cmd/cgo/out.go

    		fmt.Fprintf(fgo2, "\n")
    	}
    	if *gccgo {
    		fmt.Fprintf(fc, "\n")
    	}
    
    	for _, key := range nameKeys(p.Name) {
    		n := p.Name[key]
    		if n.Const != "" {
    			fmt.Fprintf(fgo2, "const %s = %s\n", n.Mangle, n.Const)
    		}
    	}
    	fmt.Fprintf(fgo2, "\n")
    
    	callsMalloc := false
    	for _, key := range nameKeys(p.Name) {
    		n := p.Name[key]
    		if n.FuncType != nil {
    			p.writeDefsFunc(fgo2, n, &callsMalloc)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    	// Determine kinds for names we already know about,
    	// like #defines or 'struct foo', before bothering with gcc.
    	var names, needType []*Name
    	optional := map[*Name]bool{}
    	for _, key := range nameKeys(f.Name) {
    		n := f.Name[key]
    		// If we've already found this name as a #define
    		// and we can translate it as a constant value, do so.
    		if n.Define != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loader/loader_test.go

    	}
    	es2 := ldr.LookupOrCreateSym("go:info.type.uint8", 0)
    	if es2 == 0 {
    		t.Fatalf("LookupOrCreateSym failed for go.info.type.uint8")
    	}
    	// Create a nameless symbol
    	es3 := ldr.CreateStaticSym("")
    	if es3 == 0 {
    		t.Fatalf("CreateStaticSym failed for nameless sym")
    	}
    
    	// Grab symbol builder pointers
    	sb1 := ldr.MakeSymbolUpdater(es1)
    	sb2 := ldr.MakeSymbolUpdater(es2)
    	sb3 := ldr.MakeSymbolUpdater(es3)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:08:09 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java

            final Map<String, String> tags = new HashMap<>();
            tagItems.keySet().stream().filter(s -> s.startsWith("name")).forEach(nameKey -> {
                final String valueKey = nameKey.replace("name", "value");
                final String name = tagItems.get(nameKey);
                if (StringUtil.isNotBlank(name)) {
                    tags.put(name, tagItems.get(valueKey));
                }
            });
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  5. pkg/log/config.go

    	ErrorLevel: zapcore.ErrorLevel,
    	FatalLevel: zapcore.FatalLevel,
    	NoneLevel:  none,
    }
    
    var defaultEncoderConfig = zapcore.EncoderConfig{
    	TimeKey:        "time",
    	LevelKey:       "level",
    	NameKey:        "scope",
    	CallerKey:      "caller",
    	MessageKey:     "msg",
    	StacktraceKey:  "stack",
    	LineEnding:     zapcore.DefaultLineEnding,
    	EncodeLevel:    zapcore.LowercaseLevelEncoder,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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