Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for nameKeys (0.27 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. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/groovy/GroovyClassGeneratorUtils.java

                    } else {
                        String name = NameUtil.interceptedJvmMethodName(callable);
                        String nameKey = implementationName + ":" + NameUtil.interceptedJvmMethodName(callable);
                        namedRequests.computeIfAbsent(nameKey, k -> NamedCallableInterceptorSpec.of(implementationName, name, interceptorType)).getRequests().add(request);
                    }
                }
            });
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 13:39:36 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/distpack/archive.go

    func (a *Archive) Add(name, src string, info fs.FileInfo) {
    	a.Files = append(a.Files, File{
    		Name: name,
    		Time: info.ModTime(),
    		Mode: info.Mode(),
    		Size: info.Size(),
    		Src:  src,
    	})
    }
    
    func nameLess(x, y string) bool {
    	for i := 0; i < len(x) && i < len(y); i++ {
    		if x[i] != y[i] {
    			// foo/bar/baz before foo/bar.go, because foo/bar is before foo/bar.go
    			if x[i] == '/' {
    				return true
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 17:37:52 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top