Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 57 for repeats (0.18 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. api/maven-api-model/src/main/mdo/maven.mdo

              <description>
                This element includes the specification of report plugins to use
                to generate the reports on the Maven-generated site.
                These reports will be run when a user executes {@code mvn site}.
                All the reports will be included in the navigation bar for browsing.
              </description>
              <association>
                <type>Reporting</type>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

    org:leaf2:1.0
    +--- org:middle:1.0
    |    \\--- org:top:1.0
    |         \\--- conf
    \\--- org:top:1.0 (*)
    
    (*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation.
    
    A web-based, searchable dependency report is available by adding the --scan option.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  9. 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)
  10. pkg/apis/batch/validation/validation_test.go

    		},
    		"invalid due to repeated '-'": {
    			indexesString: "0,1--3",
    			completions:   6,
    			wantTotal:     0,
    			wantError:     errors.New(`the fragment "1--3" violates the requirement that an index interval can have at most two parts separated by '-'`),
    		},
    		"invalid due to repeated ','": {
    			indexesString: "0,,1,3",
    			completions:   6,
    			wantTotal:     0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
Back to top