Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 4,335 for look (0.04 sec)

  1. cmd/format-meta.go

    //   "format": "XXXXX",
    //   "XXXXX": {
    //
    //   }
    // }
    // Here "XXXXX" depends on the backend, currently we have "fs" and "xl" implementations.
    // formatMetaV1 should be inherited by backend format structs. Please look at format-fs.go
    // and format-xl.go for details.
    
    // Ideally we will never have a situation where we will have to change the
    // fields of this struct and deal with related migration.
    type formatMetaV1 struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/multi_project_builds.adoc

    The project structure is created in the `settings.gradle(.kts)` file.
    The settings file must be present in the root directory.
    
    [[sec:creating_multi_project_builds]]
    == A simple multi-project build
    
    Let's look at a _basic_ multi-project build example that contains a root project and a single subproject.
    
    The root project is called `basic-multiproject`, located somewhere on your machine.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 00:33:43 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/lookup.go

    	// search current depth
    	for len(current) > 0 {
    		var next []embeddedType // embedded types found at current depth
    
    		// look for (pkg, name) in all types at current depth
    		for _, e := range current {
    			typ := e.typ
    
    			// If we have a named type, we may have associated methods.
    			// Look for those first.
    			if named := asNamed(typ); named != nil {
    				if alt := seen.lookup(named); alt != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  4. src/go/types/lookup.go

    	// search current depth
    	for len(current) > 0 {
    		var next []embeddedType // embedded types found at current depth
    
    		// look for (pkg, name) in all types at current depth
    		for _, e := range current {
    			typ := e.typ
    
    			// If we have a named type, we may have associated methods.
    			// Look for those first.
    			if named := asNamed(typ); named != nil {
    				if alt := seen.lookup(named); alt != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  5. src/net/http/pprof/pprof.go

    //
    // # Usage examples
    //
    // Use the pprof tool to look at the heap profile:
    //
    //	go tool pprof http://localhost:6060/debug/pprof/heap
    //
    // Or to look at a 30-second CPU profile:
    //
    //	go tool pprof http://localhost:6060/debug/pprof/profile?seconds=30
    //
    // Or to look at the goroutine blocking profile, after calling
    // [runtime.SetBlockProfileRate] in your program:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:34:05 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. src/runtime/asm_ppc64x.h

    	DATA	funcname+8(SB)/8, $TOC(SB)		\
    	DATA	funcname+16(SB)/8, $0			\
    	GLOBL	funcname(SB), NOPTR, $24
    #endif
    #endif
    
    // linux/ppc64 uses ELFv1 which uses function descriptors.
    // These must also look like ABI0 functions on linux/ppc64
    // to work with abi.FuncPCABI0(sigtramp) in os_linux.go.
    // Only static codegen is supported on linux/ppc64, so TOC
    // is not needed.
    #ifdef GOOS_linux
    #ifdef GOARCH_ppc64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 22:20:51 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/DefaultVswhereVersionLocator.java

                } catch (MissingRegistryEntryException e) {
                    // We'll get this when we try to look up "ProgramFilesDir (x86)" on a 32-bit OS
                    continue;
                }
    
                File candidate = new File(programFilesDir, VISUAL_STUDIO_INSTALLER + "/" + VSWHERE_EXE);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/resource_access.go

    	// This lets us handle the case of latent caches, by looking up actual results for a namespace on cache miss/no results.
    	// We track the lookup result here so that for repeated requests, we don't look it up very often.
    	liveLookupCache *lru.Cache
    	group           singleflight.Group
    	liveTTL         time.Duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 13:54:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/api/apitesting/naming/naming.go

    func ensureNoTags(gvk schema.GroupVersionKind, tp reflect.Type, parents []reflect.Type, typesAllowedTags map[reflect.Type]bool) []error {
    	errs := []error{}
    	if _, ok := typesAllowedTags[tp]; ok {
    		return errs
    	}
    
    	// Don't look at the same type multiple times
    	if containsType(parents, tp) {
    		return nil
    	}
    	parents = append(parents, tp)
    
    	switch tp.Kind() {
    	case reflect.Map, reflect.Slice, reflect.Pointer:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 27 07:07:03 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  10. pkg/probe/util.go

    	}
    	if port > 0 && port < 65536 {
    		return port, nil
    	}
    	return port, fmt.Errorf("invalid port number: %v", port)
    }
    
    // findPortByName is a helper function to look up a port in a container by name.
    func findPortByName(container *v1.Container, portName string) (int, error) {
    	for _, port := range container.Ports {
    		if port.Name == portName {
    			return int(port.ContainerPort), nil
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 19 16:51:52 UTC 2022
    - 1.6K bytes
    - Viewed (0)
Back to top