Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 96 for ulong (0.11 sec)

  1. src/net/http/transport_test.go

    		if r.URL.Path == "/long" {
    			w.Header().Set("Long", strings.Repeat("a", 1<<20))
    		}
    	})).ts
    	c := ts.Client()
    	c.Transport.(*Transport).MaxResponseHeaderBytes = 512 << 10
    
    	if res, err := c.Get(ts.URL); err != nil {
    		t.Fatal(err)
    	} else {
    		res.Body.Close()
    	}
    
    	res, err := c.Get(ts.URL + "/long")
    	if err == nil {
    		defer res.Body.Close()
    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. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        if (fc_op.getFusedActivationFunction() != "NONE") return failure();
    
        // Broadcast the constant operand of Mul if it isn't compatible to the
        // filter input. We only support broadcasting the operand along the depth
        // dimension, when the operand's depth is 1.
        rewriter.setInsertionPoint(q_op);
        Location loc = fc_op.getLoc();
        Value broadcasted_gamma;
        if (isa<TFL::Conv2DOp>(mul_op_lhs)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    // 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"
    	crand "crypto/rand"
    	"crypto/rsa"
    	"crypto/subtle"
    	"crypto/x509"
    	"encoding/base64"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    type. enum: - ANY - ROUTE - REDIRECT - DIRECT_RESPONSE type: string name: description: The Route objects generated by default are named as default. type: string type: object type: object type: object type: object patch: description: The patch to apply along with the operation. properties: filterClass: description: Determines the filter insertion order. enum: - UNSPECIFIED - AUTHN - AUTHZ - STATS type: string operation: description: Determines how the patch should be applied. enum: - INVALID - MERGE -...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm64/asm7.go

    	{AMOVK, C_VCON, C_NONE, C_NONE, C_ZREG, C_NONE, 33, 4, 0, 0, 0},
    	{AMOVD, C_AACON, C_NONE, C_NONE, C_RSP, C_NONE, 4, 4, REGFROM, 0, 0},
    	{AMOVD, C_AACON2, C_NONE, C_NONE, C_RSP, C_NONE, 4, 8, REGFROM, NOTUSETMP, 0},
    
    	/* load long effective stack address (load int32 offset and add) */
    	{AMOVD, C_LACON, C_NONE, C_NONE, C_RSP, C_NONE, 34, 8, REGSP, LFROM, 0},
    
    	// Load a large constant into a vector register.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  7. src/crypto/x509/x509_test.go

    				ThisUpdate: time.Time{}.Add(time.Hour * 24),
    				NextUpdate: time.Time{}.Add(time.Hour * 48),
    			},
    			expectedError: "x509: template contains nil Number field",
    		},
    		{
    			name: "long Number",
    			key:  ec256Priv,
    			issuer: &Certificate{
    				KeyUsage: KeyUsageCRLSign,
    				Subject: pkix.Name{
    					CommonName: "testing",
    				},
    				SubjectKeyId: []byte{1, 2, 3},
    			},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/load/pkg.go

    			what := "file"
    			info, err := fsys.Lstat(file)
    			if err != nil {
    				return nil, nil, err
    			}
    			if info.IsDir() {
    				what = "directory"
    			}
    
    			// Check that directories along path do not begin a new module
    			// (do not contain a go.mod).
    			for dir := file; len(dir) > len(pkgdir)+1 && !dirOK[dir]; dir = filepath.Dir(dir) {
    				if _, err := fsys.Stat(filepath.Join(dir, "go.mod")); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/CacheTest.kt

      ) {
        this.server = server
        this.server2 = server2
        platform.assumeNotOpenJSSE()
        server.protocolNegotiationEnabled = false
        fileSystem.emulateUnix()
        cache = Cache(fileSystem, "/cache/".toPath(), Long.MAX_VALUE)
        client =
          clientTestRule.newClientBuilder()
            .cache(cache)
            .cookieJar(JavaNetCookieJar(cookieManager))
            .build()
      }
    
      @AfterEach
      fun tearDown() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  10. pkg/apis/batch/validation/validation_test.go

    			}
    		})
    	}
    	negative := int32(-1)
    	negative64 := int64(-1)
    	errorCases := map[string]struct {
    		opts JobValidationOptions
    		job  batch.Job
    	}{
    		`spec.managedBy: Too long: may not be longer than 63`: {
    			opts: JobValidationOptions{RequirePrefixedLabels: true},
    			job: batch.Job{
    				ObjectMeta: validJobObjectMeta,
    				Spec: batch.JobSpec{
    					Selector:  validGeneratedSelector,
    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