Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for nameKeys (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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