Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 706 for remSign (0.11 sec)

  1. src/syscall/js/js_js.s

    // license that can be found in the LICENSE file.
    
    // The runtime package uses //go:linkname to push the setEventHandler to this
    // package.  To prevent the go tool from passing -complete to the compile tool,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 02 05:28:55 UTC 2023
    - 356 bytes
    - Viewed (0)
  2. src/net/splice_linux_test.go

    }
    
    type spliceHook struct {
    	called bool
    	dstfd  int
    	srcfd  int
    	remain int64
    
    	written int64
    	handled bool
    	err     error
    
    	original func(dst, src *poll.FD, remain int64) (int64, bool, error)
    }
    
    func (h *spliceHook) install() {
    	h.original = pollSplice
    	pollSplice = func(dst, src *poll.FD, remain int64) (int64, bool, error) {
    		h.called = true
    		h.dstfd = dst.Sysfd
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. src/runtime/memclr_ppc64x.s

    	DCBZ (R3+R10)       // clear third chunk
    	DCBZ (R3+R11)       // clear fourth chunk
    	ADD  $512, R3
    	BDNZ zero512
    	ANDCC $511, R4
    
    remain:
    	CMP  R4, $128  // check if 128 byte chunks left
    	BLT  smaller
    	DCBZ (R3+R0)   // clear 128
    	ADD  $128, R3
    	ADD  $-128, R4
    	BR   remain
    
    smaller:
    	ANDCC $127, R4, R7 // find leftovers
    	BEQ   done
    	CMP   R7, $64      // more than 64, do 64 at a time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 17:08:59 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  4. cmd/service.go

    // For each call, unfreezeServices must be called once.
    func freezeServices() {
    	// Use atomics for globalServiceFreeze, so we can read without locking.
    	// We need a lock since we are need the 2 atomic values to remain in sync.
    	globalServiceFreezeMu.Lock()
    	// If multiple calls, first one creates channel.
    	globalServiceFreezeCnt++
    	if globalServiceFreezeCnt == 1 {
    		globalServiceFreeze.Store(make(chan struct{}))
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 28 07:02:14 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. src/go/doc/testdata/error1.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package error1
    
    type I0 interface {
    	// When embedded, the predeclared error interface
    	// must remain visible in interface types.
    	error
    }
    
    type T0 struct {
    	ExportedField interface {
    		// error should be visible
    		error
    	}
    }
    
    type S0 struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 498 bytes
    - Viewed (0)
  6. src/encoding/binary/binary_test.go

    			})
    			if allocs != 0 {
    				t.Fatalf("Expected no allocations, got %v", allocs)
    			}
    		})
    	}
    }
    
    type byteSliceReader struct {
    	remain []byte
    }
    
    func (br *byteSliceReader) Read(p []byte) (int, error) {
    	n := copy(p, br.remain)
    	br.remain = br.remain[n:]
    	return n, nil
    }
    
    func BenchmarkReadSlice1000Int32s(b *testing.B) {
    	bsr := &byteSliceReader{}
    	slice := make([]int32, 1000)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:16:18 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  7. internal/ioutil/ioutil.go

    		}
    
    		buf = buf[:nr]
    		var (
    			n  int
    			un int
    			nw int64
    		)
    
    		remain := len(buf) % DirectioAlignSize
    		if remain == 0 {
    			// buf is aligned for directio write()
    			n, err = w.Write(buf)
    			nw = int64(n)
    		} else {
    			if remain < len(buf) {
    				n, err = w.Write(buf[:len(buf)-remain])
    				if err != nil {
    					return written, err
    				}
    				nw = int64(n)
    			}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. test/fixedbugs/issue26024.go

    // compile
    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package r
    
    // f compiles into code where no stores remain in the two successors
    // of a write barrier block; i.e., they are empty. Pre-fix, this
    // results in an unexpected input to markUnsafePoints, that expects to
    // see a pair of non-empty plain blocks.
    func f() {
    	var i int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 19:06:09 UTC 2018
    - 614 bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtTypeMappingMode.kt

        /**
         * kotlin.Int is mapped to Ljava/lang/Integer;
         * No projections allowed in immediate arguments
         */
        SUPER_TYPE,
    
        /**
         * Similar to [SUPER_TYPE], except for that Kotlin collections remain as-is.
         */
        SUPER_TYPE_KOTLIN_COLLECTIONS_AS_IS,
    
        /**
         * When method return type should be boxed (e.g., kotlin.Int to Ljava/lang/Integer;)
         */
        RETURN_TYPE_BOXED,
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/net/PercentEscaper.java

    import javax.annotation.CheckForNull;
    
    /**
     * A {@code UnicodeEscaper} that escapes some set of Java characters using a UTF-8 based percent
     * encoding scheme. The set of safe characters (those which remain unescaped) can be specified on
     * construction.
     *
     * <p>This class is primarily used for creating URI escapers in {@link UrlEscapers} but can be used
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 8.7K bytes
    - Viewed (0)
Back to top