Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 52 for Seal (0.24 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	at.printDimension(ps)
    }
    
    // Print the array dimension.
    func (at *ArrayType) printDimension(ps *printState) {
    	space := " "
    	for len(ps.inner) > 0 {
    		// We haven't gotten to the real type yet.  Use
    		// parentheses around that type, except that if it is
    		// an array type we print it as a multi-dimensional
    		// array
    		in := ps.inner[len(ps.inner)-1]
    		if twq, ok := in.(*TypeWithQualifiers); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  2. src/reflect/all_test.go

    			// The pause needs to be big enough to let the select block before
    			// we run the helper, but if we lose that race once in a while it's okay: the
    			// select will just proceed immediately. Not a big deal.
    			// For short tests we can grow [sic] the timeout a bit without fear of taking too long
    			pause := 10 * time.Microsecond
    			if testing.Short() {
    				pause = 100 * time.Microsecond
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  3. src/net/http/server.go

    // (3) even in chunking mode if the write size from (1) is over some
    // threshold and nothing is in (2).  The answer might be mostly making
    // bufferBeforeChunkingSize smaller and having bufio's fast-paths deal
    // with this instead.
    func (w *response) Write(data []byte) (n int, err error) {
    	return w.write(len(data), data, "")
    }
    
    func (w *response) WriteString(data string) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

                    //
                    // Debuggability heuristics:
                    // 1. Names that end in digits are likely to be internal aliases
                    // to the "real" names.
                    // 2. Longer names are more likely to be internal aliases.
                    //
                    // Example set of object names created by Keras for the weight
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods_test.go

    		assert.Equal(t, containerID, fakeCommandRunner.ContainerID, "(testError=%v) ID", testError)
    		assert.Equal(t, cmd, fakeCommandRunner.Cmd, "(testError=%v) command", testError)
    		// this isn't 100% foolproof as a bug in a real CommandRunner where it fails to copy to stdout/stderr wouldn't be caught by this test
    		assert.Equal(t, "foo", string(actualOutput), "(testError=%v) output", testError)
    		assert.Equal(t, err, testError, "(testError=%v) err", testError)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  6. pkg/ctrlz/assets/static/css/bootstrap-4.0.0.min.css

     * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 141.5K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/asm9.go

    //	Portions Copyright © 2009 The Go Authors. All rights reserved.
    //
    // Permission is hereby granted, free of charge, to any person obtaining a copy
    // of this software and associated documentation files (the "Software"), to deal
    // in the Software without restriction, including without limitation the rights
    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1beta3_openapi.json

    small positive number that configures the shuffle sharding of requests into queues.  When enqueuing a request at this priority level the request's flow identifier (a string pair) is hashed and the hash value is used to shuffle the list of queues and deal a hand of the size specified here.  The request is put into one of the shortest queues in that hand. `handSize` must be no larger than `queues`, and should be significantly smaller (so that a few heavy flows do not saturate most of the queues).  See...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 232.7K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1_openapi.json

    small positive number that configures the shuffle sharding of requests into queues.  When enqueuing a request at this priority level the request's flow identifier (a string pair) is hashed and the hash value is used to shuffle the list of queues and deal a hand of the size specified here.  The request is put into one of the shortest queues in that hand. `handSize` must be no larger than `queues`, and should be significantly smaller (so that a few heavy flows do not saturate most of the queues).  See...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 231.7K bytes
    - Viewed (0)
  10. src/net/http/serve_test.go

    			}
    		}
    	}), func(ts *httptest.Server) {
    		ts.Config.ErrorLog = log.New(io.Discard, "", 0)
    	}).ts
    
    	// Connect an idle TCP connection to this server before we run
    	// our real tests. This idle connection used to block forever
    	// in the TLS handshake, preventing future connections from
    	// being accepted. It may prevent future accidental blocking
    	// in newConn.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top