Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for ast1 (0.04 sec)

  1. test/typeparam/issue48191.go

    			m0 map[G2]byte
    			s1 G3
    		}{st3.st1.st3.i1: m2[<-m4[i8_1]][st5.st1.st3.i1-st3.st1.st3.i1-i2]}
    		st1 = struct {
    		}{}
    		pi64_0 = pi64_1
    		m4 = m6
    		as7 = as7
    		m6[(i8_0+i8_0)&^i8_1&^i8_1] = m5[G1(96)^i8_1]
    		st2 = struct {
    		}{}
    		st1 = struct {
    		}{}
    		am10 = []map[uint]int64{am9[len((*st4.pm2)[int64(65)].s0)+i], am11[st4.st1.st3.i1%st4.st1.st3.i1^i1]}
    		i2 = st5.st1.st3.i1*i - st5.st1.st3.i1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/cryptobyte/asn1/asn1.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package asn1 contains supporting types for parsing and building ASN.1
    // messages with the cryptobyte package.
    package asn1 // import "golang.org/x/crypto/cryptobyte/asn1"
    
    // Tag represents an ASN.1 identifier octet, consisting of a tag number
    // (indicating a type) and class (such as context-specific or constructed).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 20:28:54 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  3. src/cmd/vet/testdata/asm/asm1.s

    Russ Cox <******@****.***> 1613743292 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 20 03:54:48 UTC 2021
    - 883 bytes
    - Viewed (0)
  4. pkg/config/schema/ast/ast.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package ast
    
    import (
    	"encoding/json"
    	"fmt"
    
    	"sigs.k8s.io/yaml"
    
    	"istio.io/istio/pkg/config/validation"
    	// Force-import a function.
    	_ "istio.io/istio/pkg/config/validation/envoyfilter"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. security/pkg/pki/util/san.go

    	rawValues := []asn1.RawValue{}
    	for _, i := range identites {
    		tag, ok := oidTagMap[i.Type]
    		if !ok {
    			return nil, fmt.Errorf("unsupported identity type: %v", i.Type)
    		}
    
    		rawValues = append(rawValues, asn1.RawValue{
    			Bytes: i.Value,
    			Class: asn1.ClassContextSpecific,
    			Tag:   tag,
    		})
    	}
    
    	bs, err := asn1.Marshal(rawValues)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 14 06:50:22 UTC 2022
    - 6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/optimize.td

    // This pattern optimizes:
    //   (x + cst1) + cst2 -> x + cst
    //   (x - cst1) - cst2 -> x - cst
    // Where: cst = cst1 + cst2
    foreach BinaryOp = [TF_AddV2Op, TF_SubOp] in {
      def OptimizeConsecutive#BinaryOp : Pat<
        (BinaryOp
          (BinaryOp $x, (TF_ConstOp:$cst1 $cst1_value)),
          (TF_ConstOp:$cst2 $cst2_value)),
        (BinaryOp
          $x, (TF_AddV2Op $cst1, $cst2))>;
    }
    
    // This pattern optimizes:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. src/crypto/x509/sec1.go

    // most cases it is not.
    type ecPrivateKey struct {
    	Version       int
    	PrivateKey    []byte
    	NamedCurveOID asn1.ObjectIdentifier `asn1:"optional,explicit,tag:0"`
    	PublicKey     asn1.BitString        `asn1:"optional,explicit,tag:1"`
    }
    
    // ParseECPrivateKey parses an EC private key in SEC 1, ASN.1 DER form.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. src/crypto/x509/pkcs1.go

    	var priv pkcs1PrivateKey
    	rest, err := asn1.Unmarshal(der, &priv)
    	if len(rest) > 0 {
    		return nil, asn1.SyntaxError{Msg: "trailing data"}
    	}
    	if err != nil {
    		if _, err := asn1.Unmarshal(der, &ecPrivateKey{}); err == nil {
    			return nil, errors.New("x509: failed to parse private key (use ParseECPrivateKey instead for this key format)")
    		}
    		if _, err := asn1.Unmarshal(der, &pkcs8{}); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/spnego/NegTokenTarg.java

    import java.util.Enumeration;
    
    import org.bouncycastle.asn1.ASN1EncodableVector;
    import org.bouncycastle.asn1.ASN1Encoding;
    import org.bouncycastle.asn1.ASN1Enumerated;
    import org.bouncycastle.asn1.ASN1InputStream;
    import org.bouncycastle.asn1.ASN1ObjectIdentifier;
    import org.bouncycastle.asn1.ASN1OctetString;
    import org.bouncycastle.asn1.ASN1OutputStream;
    import org.bouncycastle.asn1.ASN1Sequence;
    import org.bouncycastle.asn1.ASN1TaggedObject;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 04 04:18:31 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  10. src/crypto/x509/pkcs8.go

    func ParsePKCS8PrivateKey(der []byte) (key any, err error) {
    	var privKey pkcs8
    	if _, err := asn1.Unmarshal(der, &privKey); err != nil {
    		if _, err := asn1.Unmarshal(der, &ecPrivateKey{}); err == nil {
    			return nil, errors.New("x509: failed to parse private key (use ParseECPrivateKey instead for this key format)")
    		}
    		if _, err := asn1.Unmarshal(der, &pkcs1PrivateKey{}); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top