Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 129 of 129 for naked (0.06 sec)

  1. src/runtime/pprof/pprof_test.go

    	return 0, 0
    }
    
    func contains(slice []string, s string) bool {
    	for i := range slice {
    		if slice[i] == s {
    			return true
    		}
    	}
    	return false
    }
    
    // stackContains matches if a function named spec appears anywhere in the stack trace.
    func stackContains(spec string, count uintptr, stk []*profile.Location, labels map[string][]string) bool {
    	for _, loc := range stk {
    		for _, line := range loc.Line {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/init.go

    			if m.Path == "std" {
    				// The "std" module in GOROOT/src is the Go standard library. Unlike other
    				// modules, the packages in the "std" module have no import-path prefix.
    				//
    				// Modules named "std" outside of GOROOT/src do not receive this special
    				// treatment, so it is possible to run 'go test .' in other GOROOTs to
    				// test individual packages using a combination of the modified package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    			return str
    		}
    	}
    	return "signal " + itoa(int(s))
    }
    
    func LoadCreateSymbolicLink() error {
    	return procCreateSymbolicLinkW.Find()
    }
    
    // Readlink returns the destination of the named symbolic link.
    func Readlink(path string, buf []byte) (n int, err error) {
    	fd, err := CreateFile(StringToUTF16Ptr(path), GENERIC_READ, 0, nil, OPEN_EXISTING,
    		FILE_FLAG_OPEN_REPARSE_POINT|FILE_FLAG_BACKUP_SEMANTICS, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    See the <<configuration_cache#config_cache:requirements>> and <<configuration_cache#config_cache:not_yet_implemented>> sections below for more information.
    
    The configuration cache state is stored on disk in a directory named `.gradle/configuration-cache` in the root directory of the Gradle build in use.
    If you need to invalidate the cache, simply delete that directory:
    
    ----
    ❯ rm -rf .gradle/configuration-cache
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewrite.go

    		}
    		for _, a := range v.Args {
    			if target.Block.ID == a.Block.ID {
    				args = append(args, a)
    			}
    		}
    	}
    
    	return true
    }
    
    // isSameCall reports whether sym is the same as the given named symbol.
    func isSameCall(sym interface{}, name string) bool {
    	fn := sym.(*AuxCall).Fn
    	return fn != nil && fn.String() == name
    }
    
    // canLoadUnaligned reports if the architecture supports unaligned load operations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// presented as-is to a reader.
    	// +optional
    	Message string `json:"message,omitempty" protobuf:"bytes,2,opt,name=message"`
    	// The field of the resource that has caused this error, as named by its JSON
    	// serialization. May include dot and postfix notation for nested attributes.
    	// Arrays are zero-indexed.  Fields may appear more than once in an array of
    	// causes due to fields having multiple errors.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  7. src/runtime/mheap.go

    // the span is swept.
    func newAllocBits(nelems uintptr) *gcBits {
    	return newMarkBits(nelems)
    }
    
    // nextMarkBitArenaEpoch establishes a new epoch for the arenas
    // holding the mark bits. The arenas are named relative to the
    // current GC cycle which is demarcated by the call to finishweep_m.
    //
    // All current spans have been swept.
    // During that sweep each span allocated room for its gcmarkBits in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    		return signalList[i].num >= s
    	})
    	if i < len(signalList) && signalList[i].num == s {
    		return signalList[i].name
    	}
    	return ""
    }
    
    // SignalNum returns the syscall.Signal for signal named s,
    // or 0 if a signal with such name is not found.
    // The signal name should start with "SIG".
    func SignalNum(s string) syscall.Signal {
    	signalNameMapOnce.Do(func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  9. src/net/http/transport.go

    	// DisableKeepAlives, if true, disables HTTP keep-alives and
    	// will only use the connection to the server for a single
    	// HTTP request.
    	//
    	// This is unrelated to the similarly named TCP keep-alives.
    	DisableKeepAlives bool
    
    	// DisableCompression, if true, prevents the Transport from
    	// requesting compression with an "Accept-Encoding: gzip"
    	// request header when the Request contains no existing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top