Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 706 for remSign (0.11 sec)

  1. src/vendor/golang.org/x/net/http2/hpack/hpack.go

    // https://httpwg.org/specs/rfc7541.html#rfc.section.5.1.
    //
    // n must always be between 1 and 8.
    //
    // The returned remain buffer is either a smaller suffix of p, or err != nil.
    // The error is errNeedMore if p doesn't contain a complete integer.
    func readVarInt(n byte, p []byte) (i uint64, remain []byte, err error) {
    	if n < 1 || n > 8 {
    		panic("bad n")
    	}
    	if len(p) == 0 {
    		return 0, p, errNeedMore
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 14 18:30:34 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_doc.txt

    go doc cryptobyte
    stdout '// import "golang.org/x/crypto/cryptobyte"'
    
    cd $GOROOT/src/cmd/go
    go doc modfile
    stdout '// import "golang.org/x/mod/modfile"'
    
    # When outside of the 'std' module, its vendored packages
    # remain accessible using the 'vendor/' prefix, but report
    # the correct "// import" comment as used within std.
    cd $GOPATH
    go doc vendor/golang.org/x/crypto/cryptobyte
    stdout '// import "vendor/golang.org/x/crypto/cryptobyte"'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 28 18:50:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. src/net/tcpconn_keepalive_illumos_test.go

    	case cfg.Interval > 0 && cfg.Count > 0:
    		// TCP_KEEPALIVE_ABORT_THRESHOLD will be recalculated only when both TCP_KEEPINTVL
    		// and TCP_KEEPCNT are set, otherwise it will remain the default value.
    		tcpKeepAliveAbortThreshold = cfg.Interval * time.Duration(cfg.Count)
    	}
    
    	tcpKeepAlive, err := syscall.GetsockoptInt(fd, syscall.SOL_SOCKET, syscall.SO_KEEPALIVE)
    	if err != nil {
    		t.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:17:21 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. src/cmd/internal/cov/read_test.go

    	}
    	if err != nil {
    		t.Fatalf("build error: %v", err)
    	}
    
    	// Run to produce coverage data. Note the large argument; we need a large
    	// argument (more than 4k) to trigger the bug, but the overall file
    	// has to remain small (since large files will be read with mmap).
    	covdir := filepath.Join(d, "covdata")
    	if err = os.Mkdir(covdir, 0777); err != nil {
    		t.Fatalf("creating covdir: %v", err)
    	}
    	large := fmt.Sprintf("%07999d", 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:17 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/copyelim.go

    // phielimValue tries to convert the phi v to a copy.
    func phielimValue(v *Value) bool {
    	if v.Op != OpPhi {
    		return false
    	}
    
    	// If there are two distinct args of v which
    	// are not v itself, then the phi must remain.
    	// Otherwise, we can replace it with a copy.
    	var w *Value
    	for _, x := range v.Args {
    		if x == v {
    			continue
    		}
    		if x == w {
    			continue
    		}
    		if w != nil {
    			return false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. src/go/types/named_test.go

    		t.Errorf("Duplicate instances in cycle: %s (%p) -> %s (%p) -> %s (%p)", Inst, Inst, Node, Node, Tree, Tree)
    	}
    }
    
    // TestMethodOrdering is a simple test verifying that the indices of methods of
    // a named type remain the same as long as the same source and AddMethod calls
    // are presented to the type checker in the same order (go.dev/issue/61298).
    func TestMethodOrdering(t *testing.T) {
    	const src = `
    package p
    
    type T struct{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 16:29:58 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. src/encoding/base64/base64.go

    		si += 3
    		di += 4
    	}
    
    	remain := len(src) - si
    	if remain == 0 {
    		return
    	}
    	// Add the remaining small block
    	val := uint(src[si+0]) << 16
    	if remain == 2 {
    		val |= uint(src[si+1]) << 8
    	}
    
    	dst[di+0] = enc.encode[val>>18&0x3F]
    	dst[di+1] = enc.encode[val>>12&0x3F]
    
    	switch remain {
    	case 2:
    		dst[di+2] = enc.encode[val>>6&0x3F]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_attributes.adoc

    6. If several candidates still remain, Gradle will consider extra attributes again. A candidate can be chosen if it has the fewest number of extra attributes.
    
    If at any step no candidates remain compatible, resolution fails.
    Additionally, Gradle outputs a list of all compatible candidates from step 1 to help with debugging variant matching failures.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 18:51:23 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/target.pbtxt

        }
      }
      attr {
        key: "use_locking"
        value {
          b: false
        }
      }
    }
    versions {
      producer: 309
    }
    
    # Tests single target node with no pruning set. All nodes will remain in the
    # graph and the target node is added to the graph fetch as a control.
    #
    # CHECK-LABEL: func @main
    # CHECK-SAME:  control_outputs = "AssignAdd"
    # CHECK-SAME:  inputs = ""
    # CHECK-SAME:  outputs = ""
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:53:21 UTC 2020
    - 4.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbFileOutputStream.java

                        len -= cnt;
                        off += cnt;
                    }
                    else {
                        if ( log.isTraceEnabled() ) {
                            log.trace(String.format("Wrote at %d remain %d off %d len %d", this.fp, len - w, off, w));
                        }
                        this.req.setParam(fh.getFid(), this.fp, len - w, b, off, w);
                        th.send(this.req, this.rsp);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Nov 13 15:14:04 UTC 2021
    - 11.9K bytes
    - Viewed (0)
Back to top