Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for repeats (0.35 sec)

  1. src/net/http/transport_test.go

    	req, _ := NewRequest("GET", ts.URL, nil)
    	defer tr.CancelRequest(req)
    
    	res, err := c.Do(req)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	const repeats = 3
    	buf := make([]byte, len(msg)*repeats)
    	want := bytes.Repeat(msg, repeats)
    
    	_, err = io.ReadFull(res.Body, buf)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if !bytes.Equal(buf, want) {
    		t.Fatalf("read %q; want %q", buf, want)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    // others may be omitted to save work in computing the JSON struct.
    //
    // The -compiled flag causes list to set CompiledGoFiles to the Go source
    // files presented to the compiler. Typically this means that it repeats
    // the files listed in GoFiles and then also adds the Go code generated
    // by processing CgoFiles and SwigFiles. The Imports list contains the
    // union of all imports from both GoFiles and CompiledGoFiles.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    All other values in `dense` are set to `default_value`.  If `sparse_values` is a
    scalar, all sparse indices are set to this single value.
    
    Indices should be sorted in lexicographic order, and indices must not
    contain any repeats. If `validate_indices` is true, these properties
    are checked during execution.
      }];
    
      let arguments = (ins
        TFL_I32OrI64Tensor:$sparse_indices,
        TFL_I32OrI64Tensor:$output_shape,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  4. src/reflect/value.go

    		n := t.Elem().Len()
    		if n > v.Len() {
    			return false
    		}
    	}
    	return true
    }
    
    // Comparable reports whether the value v is comparable.
    // If the type of v is an interface, this checks the dynamic type.
    // If this reports true then v.Interface() == x will not panic for any x,
    // nor will v.Equal(u) for any Value u.
    func (v Value) Comparable() bool {
    	k := v.Kind()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. src/net/http/server.go

    	}
    	if isH2Upgrade {
    		w.closeAfterReply = true
    	}
    	w.cw.res = w
    	w.w = newBufioWriterSize(&w.cw, bufferBeforeChunkingSize)
    	return w, nil
    }
    
    // http1ServerSupportsRequest reports whether Go's HTTP/1.x server
    // supports the given request.
    func http1ServerSupportsRequest(req *Request) bool {
    	if req.ProtoMajor == 1 {
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    	return p.mkAbs(str.StringList(p.IgnoredGoFiles, p.GoFiles, p.CgoFiles, p.TestGoFiles, p.XTestGoFiles))
    }
    
    // UsesSwig reports whether the package needs to run SWIG.
    func (p *Package) UsesSwig() bool {
    	return len(p.SwigFiles) > 0 || len(p.SwigCXXFiles) > 0
    }
    
    // UsesCgo reports whether the package needs to run cgo
    func (p *Package) UsesCgo() bool {
    	return len(p.CgoFiles) > 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. src/net/http/serve_test.go

    					io.Writer
    					io.Closer
    				}{
    					conn,
    					io.NopCloser(nil),
    				}
    				if test.chunked {
    					targ = httputil.NewChunkedWriter(conn)
    				}
    				body := strings.Repeat("A", test.contentLength)
    				_, err = fmt.Fprint(targ, body)
    				if err == nil {
    					err = targ.Close()
    				}
    				if err != nil {
    					if !test.readBody {
    						// Server likely already hung up on us.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    	// result into the cache. That's probably a net win:
    	// less cache space wasted on large binaries we are not likely to
    	// need again. (On the other hand it does make repeated go test slower.)
    	// It also makes repeated go run slower, which is a win in itself:
    	// we don't want people to treat go run like a scripting environment.
    	if err := b.updateBuildID(a, a.Target, !a.Package.Internal.OmitDebug); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/x86/asm6.go

    	{0x0F, 0x1F, 0x80, 0x00, 0x00, 0x00, 0x00},
    	{0x0F, 0x1F, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00},
    	{0x66, 0x0F, 0x1F, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00},
    }
    
    // Native Client rejects the repeated 0x66 prefix.
    // {0x66, 0x66, 0x0F, 0x1F, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00},
    func fillnop(p []byte, n int) {
    	var m int
    
    	for n > 0 {
    		m = n
    		if m > len(nop) {
    			m = len(nop)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. cmd/object-handlers_test.go

    	credentials auth.Credentials, t *testing.T,
    ) {
    	objectName := "test-object"
    	bytesDataLen := 65 * humanize.KiByte
    	bytesData := bytes.Repeat([]byte{'a'}, bytesDataLen)
    	oneKData := bytes.Repeat([]byte("a"), 1*humanize.KiByte)
    
    	var err error
    
    	type streamFault int
    	const (
    		None streamFault = iota
    		malformedEncoding
    		unexpectedEOF
    		signatureMismatch
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
Back to top