Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 69 for RAW (0.08 sec)

  1. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

         $input,
         (Arith_ConstantOp I32ElementsAttr:$axis),
         ConstBoolAttrFalse,
         $reverse),
      (replaceWithValue $input),
      [(AreInputDimensionsOneInAxes $input, $axis)]>;
    
    // Fusing raw computation of GELU op into one native tfl_gelu op.
    //
    // Requires constants to be exact match and only one use of all of the
    // intermediate results.
    //
    // For GeluApproximate, replaces
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/xcoff.go

    type XcoffScnHdr64 struct {
    	Sname    [8]byte // Section Name
    	Spaddr   uint64  // Physical Address
    	Svaddr   uint64  // Virtual Address
    	Ssize    uint64  // Section Size
    	Sscnptr  uint64  // File Offset To Raw Data
    	Srelptr  uint64  // File Offset To Relocation
    	Slnnoptr uint64  // File Offset To Line Numbers
    	Snreloc  uint32  // Number Of Relocation Entries
    	Snlnno   uint32  // Number Of Line Number Entries
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_server_test.go

    	if len(peerCerts) == len(test.expectedPeerCerts) {
    		for i, peerCert := range peerCerts {
    			block, _ := pem.Decode([]byte(test.expectedPeerCerts[i]))
    			if !bytes.Equal(block.Bytes, peerCert.Raw) {
    				t.Fatalf("%s: mismatch on peer cert %d", test.name, i+1)
    			}
    		}
    	} else {
    		t.Fatalf("%s: mismatch on peer list length: %d (wanted) != %d (got)", test.name, len(test.expectedPeerCerts), len(peerCerts))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  4. src/crypto/tls/conn.go

    	clientFinished [12]byte
    	serverFinished [12]byte
    
    	// clientProtocol is the negotiated ALPN protocol.
    	clientProtocol string
    
    	// input/output
    	in, out   halfConn
    	rawInput  bytes.Buffer // raw input, starting with a record header
    	input     bytes.Reader // application data waiting to be read, from rawInput.Next
    	hand      bytes.Buffer // handshake data waiting to be read
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        return success();
      }
    
      bool enable_dynamic_update_slice;
    };
    
    // Rewrites op of the template type initializing a TensorList with a list of ops
    // to generate an equivalent raw tensor. Derived classes are required to
    // override GetNumElements method.
    template <typename OpT>
    struct ConvertTensorListInitOp : public TensorListOpConverterBase<OpT> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  6. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    			pvcStatusSize: resource.MustParse("10G"),
    			newPVSize:     resource.MustParse("15G"),
    			oldPVSize:     resource.MustParse("10G"),
    		},
    		{
    			name:          "expand-raw-block",
    			volumeMode:    &blockMode,
    			pvName:        "pv",
    			pvcSize:       resource.MustParse("10G"),
    			pvcStatusSize: resource.MustParse("10G"),
    			newPVSize:     resource.MustParse("15G"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  7. src/net/http/request.go

    		// in TestParseMultipartFormOrder and others.
    	}
    	return
    }
    
    // ParseForm populates r.Form and r.PostForm.
    //
    // For all requests, ParseForm parses the raw query from the URL and updates
    // r.Form.
    //
    // For POST, PUT, and PATCH requests, it also reads the request body, parses it
    // as a form and puts the results into both r.PostForm and r.Form. Request body
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  8. src/net/http/httputil/reverseproxy_test.go

    		body, _ := io.ReadAll(res.Body)
    		wantQuery := test.rawQuery
    		if wantCleanQuery {
    			wantQuery = test.cleanQuery
    		}
    		if got, want := string(body), wantQuery; got != want {
    			t.Errorf("proxy forwarded raw query %q as %q, want %q", test.rawQuery, got, want)
    		}
    	}
    }
    
    type testResponseWriter struct {
    	h           http.Header
    	writeHeader func(int)
    	write       func([]byte) (int, error)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  9. src/crypto/tls/common.go

    	GetConfigForClient func(*ClientHelloInfo) (*Config, error)
    
    	// VerifyPeerCertificate, if not nil, is called after normal
    	// certificate verification by either a TLS client or server. It
    	// receives the raw ASN.1 certificates provided by the peer and also
    	// any verified chains that normal processing found. If it returns a
    	// non-nil error, the handshake is aborted and that error results.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  10. src/html/template/exec_test.go

    	_, err := New("X").Parse("hello\n\n{{`unterminated\n\n\n\n}}\n some more\n\n")
    	if err == nil {
    		t.Fatal("expected error")
    	}
    	str := err.Error()
    	if !strings.Contains(str, "X:3: unterminated raw quoted string") {
    		t.Fatalf("unexpected error: %s", str)
    	}
    }
    
    const alwaysErrorText = "always be failing"
    
    var alwaysError = errors.New(alwaysErrorText)
    
    type ErrorWriter int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
Back to top