Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 110 for seem (0.14 sec)

  1. src/cmd/go/go_test.go

    		tg.t.Log(msg)
    		tg.t.Fatalf("pattern %v found unexpectedly in standard output or standard error", match)
    	}
    }
    
    // doGrepCount counts the number of times a regexp is seen in a buffer.
    func (tg *testgoData) doGrepCount(match string, b *bytes.Buffer) int {
    	tg.t.Helper()
    	if !tg.ran {
    		tg.t.Fatal("internal testsuite error: doGrepCount called before run")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    The test binary also accepts flags that control execution of the test; these
    flags are also accessible by 'go test'. See 'go help testflag' for details.
    
    For more about build flags, see 'go help build'.
    For more about specifying packages, see 'go help packages'.
    
    See also: go build, go vet.
    `,
    }
    
    var HelpTestflag = &base.Command{
    	UsageLine: "testflag",
    	Short:     "testing flags",
    	Long: `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

            return emitError(base_loc,
                             "invalid model_control_dependencies metadata"),
                   nullptr;
          }
          continue;
        }
    
        // Skip already seen attributes. Ideally there should be no duplicates here.
        if (!seen_attr.try_emplace(metadata->name).second) continue;
    
        // check if the model is serialized using stablehlo constant tensor
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  4. cmd/batch-handlers.go

    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"bytes"
    	"context"
    	"encoding/binary"
    	"encoding/json"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  5. src/net/http/fs_test.go

    			content = tt.content
    		}
    		for _, method := range []string{"GET", "HEAD"} {
    			//restore content in case it is consumed by previous method
    			if content, ok := content.(*strings.Reader); ok {
    				content.Seek(0, io.SeekStart)
    			}
    
    			servec <- serveParam{
    				name:        filepath.Base(tt.file),
    				content:     content,
    				modtime:     tt.modtime,
    				etag:        tt.serveETag,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  6. src/time/format.go

    	}
    	buf = append(buf, ')')
    	return string(buf)
    }
    
    // Format returns a textual representation of the time value formatted according
    // to the layout defined by the argument. See the documentation for the
    // constant called [Layout] to see how to represent the layout format.
    //
    // The executable example for [Time.Format] demonstrates the working
    // of the layout string in detail and is a good reference.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  7. src/cmd/dist/build.go

    // These require -force flag to build, and also
    // get filtered out of cgoEnabled for 'dist list'.
    // See go.dev/issue/56679.
    var broken = map[string]bool{
    	"linux/sparc64":  true, // An incomplete port. See CL 132155.
    	"openbsd/mips64": true, // Broken: go.dev/issue/58110.
    }
    
    // List of platforms which are first class ports. See go.dev/issue/38874.
    var firstClass = map[string]bool{
    	"darwin/amd64":  true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  8. src/net/http/request.go

    		// address such as Unix domain socket path into a valid, ignored
    		// Host header (see https://go.dev/issue/61431).
    		//
    		// We don't preserve the truncation, because sending an altered
    		// header field opens a smuggling vector. Instead, zero out the
    		// Host header entirely if it isn't valid. (An empty Host is valid;
    		// see RFC 9112 Section 3.2.)
    		//
    		// Return an error if we're sending to a proxy, since the proxy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  9. src/runtime/map.go

    	flags     uint8
    	B         uint8  // log_2 of # of buckets (can hold up to loadFactor * 2^B items)
    	noverflow uint16 // approximate number of overflow buckets; see incrnoverflow for details
    	hash0     uint32 // hash seed
    
    	buckets    unsafe.Pointer // array of 2^B Buckets. may be nil if count==0.
    	oldbuckets unsafe.Pointer // previous bucket array of half the size, non-nil only when growing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  10. src/net/http/transport.go

    	errIdleConnTimeout    = errors.New("http: idle connection timeout")
    
    	// errServerClosedIdle is not seen by users for idempotent requests, but may be
    	// seen by a user if the server shuts down an idle connection and sends its FIN
    	// in flight with already-written POST body bytes from the client.
    	// See https://github.com/golang/go/issues/19943#issuecomment-355607646
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top