Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 186 for resptr (0.1 sec)

  1. src/cmd/compile/internal/walk/select.go

    }
    
    // bytePtrToIndex returns a Node representing "(*byte)(&n[i])".
    func bytePtrToIndex(n ir.Node, i int64) ir.Node {
    	s := typecheck.NodAddr(ir.NewIndexExpr(base.Pos, n, ir.NewInt(base.Pos, i)))
    	t := types.NewPtr(types.Types[types.TUINT8])
    	return typecheck.ConvNop(s, t)
    }
    
    var scase *types.Type
    
    // Keep in sync with src/runtime/select.go.
    func scasetype() *types.Type {
    	if scase == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 01:53:41 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/httpstream/httpstream.go

    }
    
    // Stream represents a bidirectional communications channel that is part of an
    // upgraded connection.
    type Stream interface {
    	io.ReadWriteCloser
    	// Reset closes both directions of the stream, indicating that neither client
    	// or server can use it any more.
    	Reset() error
    	// Headers returns the headers used to create the stream.
    	Headers() http.Header
    	// Identifier returns the stream's ID.
    	Identifier() uint32
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/crypto/sha3/shake.go

    	c.initBlock = append(c.initBlock, leftEncode(uint64(len(S)*8))...)
    	c.initBlock = append(c.initBlock, S...)
    	c.Write(bytepad(c.initBlock, c.rate))
    	return &c
    }
    
    // Reset resets the hash to initial state.
    func (c *cshakeState) Reset() {
    	c.state.Reset()
    	c.Write(bytepad(c.initBlock, c.rate))
    }
    
    // Clone returns copy of a cSHAKE context within its current state.
    func (c *cshakeState) Clone() ShakeHash {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/unicode/norm/composition.go

    }
    
    // flush appends the normalized segment to out and resets rb.
    func (rb *reorderBuffer) flush(out []byte) []byte {
    	for i := 0; i < rb.nrune; i++ {
    		start := rb.rune[i].pos
    		end := start + rb.rune[i].size
    		out = append(out, rb.byte[start:end]...)
    	}
    	rb.reset()
    	return out
    }
    
    // flushCopy copies the normalized segment to buf and resets rb.
    // It returns the number of bytes written to buf.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/collect/testing/testers/NavigableSetNavigationTester.java

        // some tests assume SEVERAL == 3
        if (values.size() >= 1) {
          a = values.get(0);
          if (values.size() >= 3) {
            b = values.get(1);
            c = values.get(2);
          }
        }
      }
    
      /** Resets the contents of navigableSet to have elements a, c, for the navigation tests. */
      protected void resetWithHole() {
        super.resetContainer(getSubjectGenerator().create(a, c));
        navigableSet = (NavigableSet<E>) getSet();
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/walk/closure.go

    			// we introduce function param &v *T
    			// and v remains PAUTOHEAP with &v heapaddr
    			// (accesses will implicitly deref &v).
    
    			addr := ir.NewNameAt(clofn.Pos(), typecheck.Lookup("&"+v.Sym().Name), types.NewPtr(v.Type()))
    			addr.Curfn = clofn
    			v.Heapaddr = addr
    			v = addr
    		}
    
    		v.Class = ir.PPARAM
    		decls = append(decls, v)
    
    		fld := types.NewField(src.NoXPos, v.Sym(), v.Type())
    		fld.Nname = v
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:56:08 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/text/unicode/norm/composition.go

    }
    
    // flush appends the normalized segment to out and resets rb.
    func (rb *reorderBuffer) flush(out []byte) []byte {
    	for i := 0; i < rb.nrune; i++ {
    		start := rb.rune[i].pos
    		end := start + rb.rune[i].size
    		out = append(out, rb.byte[start:end]...)
    	}
    	rb.reset()
    	return out
    }
    
    // flushCopy copies the normalized segment to buf and resets rb.
    // It returns the number of bytes written to buf.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 14.1K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ResultAssertion.java

                } else if (line.contains("com.amazonaws.http.IdleConnectionReaper")) {
                    /*
                    2021-01-05T08:15:51.329+0100 [DEBUG] [com.amazonaws.http.IdleConnectionReaper] Reaper thread:
                    java.lang.InterruptedException: sleep interrupted
                        at java.base/java.lang.Thread.sleep(Native Method)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/typecheck/func.go

    		base.Fatalf("missing argument to new")
    	}
    	l := n.X
    	l = typecheck(l, ctxType)
    	t := l.Type()
    	if t == nil {
    		n.SetType(nil)
    		return n
    	}
    	n.X = l
    	n.SetType(types.NewPtr(t))
    	return n
    }
    
    // tcPanic typechecks an OPANIC node.
    func tcPanic(n *ir.UnaryExpr) ir.Node {
    	n.X = Expr(n.X)
    	n.X = AssignConv(n.X, types.Types[types.TINTER], "argument to panic")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. platforms/core-execution/build-cache-http/src/main/java/org/gradle/caching/http/HttpBuildCache.java

     * Requests that fail during request transmission, after having established a TCP connection, will automatically be retried.
     * This includes dropped connections, read or write timeouts, and low level network failures such as a connection resets.
     * Requests will be retried 3 times, before giving up and disabling use of the cache for the remainder of the build.
     *
     * @since 3.5
     */
    public abstract class HttpBuildCache extends AbstractBuildCache {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 7.6K bytes
    - Viewed (0)
Back to top