Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 376 for St (0.03 sec)

  1. src/internal/types/testdata/fixedbugs/issue50779.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    type AC interface {
    	C
    }
    
    type ST []int
    
    type R[S any, P any] struct{}
    
    type SR = R[SS, ST]
    
    type SS interface {
    	NSR(any) *SR // ERROR "invalid use of type alias SR in recursive type"
    }
    
    type C interface {
    	NSR(any) *SR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 414 bytes
    - Viewed (0)
  2. pkg/queue/delay_test.go

    	dq := NewDelayed(DelayQueueBuffer(0))
    	st := make(chan struct{})
    	go func() {
    		// Enqueue a bunch until we stop
    		for {
    			select {
    			case <-st:
    				return
    			default:
    			}
    			dq.Push(func() error {
    				return nil
    			})
    		}
    	}()
    	go dq.Run(st)
    	// Wait a bit
    	<-time.After(time.Millisecond * 10)
    	close(st)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 06:27:31 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/internal/mmap/mmap_unix.go

    //go:build unix && (!solaris || go1.20)
    
    package mmap
    
    import (
    	"fmt"
    	"io/fs"
    	"os"
    	"syscall"
    )
    
    func mmapFile(f *os.File, _ *Data) (Data, error) {
    	st, err := f.Stat()
    	if err != nil {
    		return Data{}, err
    	}
    	size := st.Size()
    	pagesize := int64(os.Getpagesize())
    	if int64(int(size+(pagesize-1))) != size+(pagesize-1) {
    		return Data{}, fmt.Errorf("%s: too large for mmap", f.Name())
    	}
    	n := int(size)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 21:40:49 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. src/internal/trace/summary.go

    	case EventSync:
    		s.syncTs = ev.Time()
    
    	// Handle state transitions.
    	case EventStateTransition:
    		st := ev.StateTransition()
    		switch st.Resource.Kind {
    		// Handle goroutine transitions, which are the meat of this computation.
    		case ResourceGoroutine:
    			id := st.Resource.Goroutine()
    			old, new := st.Goroutine()
    			if old == new {
    				// Skip these events; they're not telling us anything new.
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. src/runtime/signal_unix.go

    	sp := uintptr(unsafe.Pointer(&sig))
    	if sp >= mp.gsignal.stack.lo && sp < mp.gsignal.stack.hi {
    		return false
    	}
    
    	var st stackt
    	sigaltstack(nil, &st)
    	stsp := uintptr(unsafe.Pointer(st.ss_sp))
    	if st.ss_flags&_SS_DISABLE == 0 && sp >= stsp && sp < stsp+st.ss_size {
    		setGsignalStack(&st, gsigStack)
    		return true
    	}
    
    	if sp >= mp.g0.stack.lo && sp < mp.g0.stack.hi {
    		// The signal was delivered on the g0 stack.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/exentity/ScheduledJob.java

        private static final long serialVersionUID = 1L;
    
        @Override
        public String getScriptType() {
            final String st = super.getScriptType();
            if (StringUtil.isBlank(st)) {
                return "groovy";
            }
            return st;
        }
    
        public boolean isLoggingEnabled() {
            return Constants.T.equals(getJobLogging());
        }
    
        public boolean isCrawlerJob() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/p256_asm_amd64.s

    	ST (s2)
    
    	LDt (y1in)
    	CALL p256SubInternal(SB)	// r = s2 - s1
    	ST (r)
    
    	CALL p256SqrInternal(SB)	// rsqr = rˆ2
    	ST (rsqr)
    
    	LDacc (h)
    	CALL p256SqrInternal(SB)	// hsqr = hˆ2
    	ST (hsqr)
    
    	LDt (h)
    	CALL p256MulInternal(SB)	// hcub = hˆ3
    	ST (hcub)
    
    	LDt (y1in)
    	CALL p256MulInternal(SB)	// y1 * hˆ3
    	ST (s2)
    
    	LDacc (x1in)
    	LDt (hsqr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/mmap/mmap_windows.go

    package mmap
    
    import (
    	"fmt"
    	"os"
    	"syscall"
    	"unsafe"
    
    	"internal/syscall/windows"
    )
    
    func mmapFile(f *os.File) (Data, error) {
    	st, err := f.Stat()
    	if err != nil {
    		return Data{}, err
    	}
    	size := st.Size()
    	if size == 0 {
    		return Data{f, nil}, nil
    	}
    	h, err := syscall.CreateFileMapping(syscall.Handle(f.Fd()), nil, syscall.PAGE_READONLY, 0, 0, nil)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 21:57:36 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. pilot/pkg/model/test/testcert/generate.sh

            -days 3650 -nodes -out cert.pem -keyout key.pem \
            -subj "/C=US/ST=Denial/L=Ether/O=Dis/CN=localhost/SAN=localhost" \
            -addext "subjectAltName = DNS:localhost"
    
    openssl req -new -newkey rsa:4096 -x509 -sha256 \
            -days 3650 -nodes -out cert2.pem -keyout key2.pem \
            -subj "/C=US/ST=Denial/L=Ether/O=Dis/CN=anotherhost" \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 12 05:58:58 UTC 2020
    - 1K bytes
    - Viewed (0)
  10. src/debug/pe/symbol.go

    // in sym.Name, but if it is longer then 8 characters, it is stored
    // in COFF string table st instead.
    func (sym *COFFSymbol) FullName(st StringTable) (string, error) {
    	if ok, offset := isSymNameOffset(sym.Name); ok {
    		return st.String(offset)
    	}
    	return cstring(sym.Name[:]), nil
    }
    
    func removeAuxSymbols(allsyms []COFFSymbol, st StringTable) ([]*Symbol, error) {
    	if len(allsyms) == 0 {
    		return nil, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top