Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 152 for ast1 (0.05 sec)

  1. src/crypto/x509/parser.go

    }
    
    func parseExtKeyUsageExtension(der cryptobyte.String) ([]ExtKeyUsage, []asn1.ObjectIdentifier, error) {
    	var extKeyUsages []ExtKeyUsage
    	var unknownUsages []asn1.ObjectIdentifier
    	if !der.ReadASN1(&der, cryptobyte_asn1.SEQUENCE) {
    		return nil, nil, errors.New("x509: invalid extended key usages")
    	}
    	for !der.Empty() {
    		var eku asn1.ObjectIdentifier
    		if !der.ReadASN1ObjectIdentifier(&eku) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  2. src/cmd/vet/testdata/asm/asm.go

    // Copyright 2010 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file contains declarations to test the assembly in asm1.s.
    
    package testdata
    
    func arg1(x int8, y uint8)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 05 01:01:31 UTC 2019
    - 310 bytes
    - Viewed (0)
  3. src/encoding/asn1/asn1_test.go

    		b    []byte
    		v    any
    		want string
    	}{
    		{b: []byte{0x05, 0x00}, v: nil, want: "asn1: Unmarshal recipient value is nil"},
    		{b: []byte{0x05, 0x00}, v: RawValue{}, want: "asn1: Unmarshal recipient value is non-pointer asn1.RawValue"},
    		{b: []byte{0x05, 0x00}, v: (*RawValue)(nil), want: "asn1: Unmarshal recipient value is nil *asn1.RawValue"},
    	}
    
    	for _, test := range tests {
    		_, err := Unmarshal(test.b, test.v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 29 18:24:36 UTC 2023
    - 43.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/tests/control_flow.mlir

    // CHECK-NEXT: %[[CAST1:.*]] = "tfr.cast"(%arg1) : (tensor<2x3xf32>) -> !tfr.tensor
    // CHECK-NEXT: %[[CAST2:.*]] = "tfr.cast"(%arg2) : (tensor<2x3xf32>) -> !tfr.tensor
    // CHECK-NEXT: %[[EX0:.*]] = tfr.call @tf__expand_dims(%[[CAST0]], %[[AXIS]]) : (!tfr.tensor, i32) -> !tfr.tensor
    // CHECK-NEXT: %[[EX1:.*]] = tfr.call @tf__expand_dims(%[[CAST1]], %[[AXIS]]) : (!tfr.tensor, i32) -> !tfr.tensor
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 10:58:25 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SpnegoContext.java

    package jcifs.smb;
    
    
    import java.io.ByteArrayOutputStream;
    import java.io.IOException;
    import java.util.Arrays;
    
    import org.bouncycastle.asn1.ASN1Encoding;
    import org.bouncycastle.asn1.ASN1ObjectIdentifier;
    import org.bouncycastle.asn1.ASN1OutputStream;
    import org.bouncycastle.asn1.DERSequence;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import jcifs.CIFSException;
    import jcifs.Configuration;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 04 04:18:31 UTC 2021
    - 14.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/cast_bf16.mlir

    ^bb0(%arg0: tensor<4x5xbf16>):
      // CHECK-LABEL: @main
      // CHECK:  (tensor<4x5xbf16>) -> tensor<4x5xf32>
      // CHECK-NEXT:  (tensor<4x5xf32>) -> tensor<4x5xbf16>
      %0 = "tfl.cast" (%arg0) : (tensor<4x5xbf16>) -> tensor<4x5xf32> loc("cast1")
      %1 = "tfl.cast" (%0) : (tensor<4x5xf32>) -> tensor<4x5xbf16> loc("cast2")
      func.return %1 : tensor<4x5xbf16>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 18 21:28:19 UTC 2024
    - 596 bytes
    - Viewed (0)
  7. src/crypto/rsa/boring_test.go

    package rsa
    
    import (
    	"crypto"
    	"crypto/rand"
    	"encoding/asn1"
    	"encoding/hex"
    	"math/big"
    	"runtime"
    	"runtime/debug"
    	"sync"
    	"testing"
    )
    
    func TestBoringASN1Marshal(t *testing.T) {
    	k, err := GenerateKey(rand.Reader, 128)
    	if err != nil {
    		t.Fatal(err)
    	}
    	_, err = asn1.Marshal(k.PublicKey)
    	if err != nil {
    		t.Fatal(err)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 00:16:30 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_patterns.td

              [(ValueEquals<"0.0"> $cst),
               (ValueEquals<"0.0"> $cst1),
               (ValueEquals<"0.0"> $cst2),
               (SameValue $rem, $rem1),
               (SameValue $rem, $rem2),
               (SameValue $rem, $rem3),
               (SameTypeOrDefaultCompare $compare_type, $cst),
               (SameTypeOrDefaultCompare $compare_type1, $cst1)]>;
    
    // Converts a dag of HLOs representing floor_mod with a constant to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 03 08:58:22 UTC 2024
    - 34K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/end2end/if_op.pbtxt

              dim {
                size: 4
              }
            }
            float_val: 1.0
            float_val: 2.0
            float_val: 3.0
            float_val: 4.0
          }
        }
      }
    }
    node {
      name: "cst1"
      op: "Const"
      attr {
        key: "dtype"
        value {
          type: DT_FLOAT
        }
      }
      attr {
        key: "value"
        value {
          tensor {
            dtype: DT_FLOAT
            tensor_shape {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 16 15:29:56 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  10. pkg/test/echo/server/forwarder/config.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package forwarder
    
    import (
    	"crypto/tls"
    	"crypto/x509"
    	"crypto/x509/pkix"
    	"encoding/asn1"
    	"fmt"
    	"net/http"
    	"net/url"
    	"os"
    	"strings"
    	"time"
    
    	"istio.io/istio/pkg/test/echo/common"
    	"istio.io/istio/pkg/test/echo/common/scheme"
    	"istio.io/istio/pkg/test/echo/proto"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 9.8K bytes
    - Viewed (0)
Back to top