Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for req_dn (0.12 sec)

  1. tools/certs/common.mk

    	@echo "x509_extensions = req_ext" >> $@
    	@echo "distinguished_name = req_dn" >> $@
    	@echo "[ req_ext ]" >> $@
    	@echo "subjectKeyIdentifier = hash" >> $@
    	@echo "basicConstraints = critical, CA:true" >> $@
    	@echo "keyUsage = critical, digitalSignature, nonRepudiation, keyEncipherment, keyCertSign" >> $@
    	@echo "[ req_dn ]" >> $@
    	@echo "O = $(ROOTCA_ORG)" >> $@
    	@echo "CN = $(ROOTCA_CN)" >> $@
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 20 08:51:56 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. pkg/test/cert/ca/root.go

    utf8 = yes
    default_md = sha256
    default_bits = 4096
    req_extensions = req_ext
    x509_extensions = req_ext
    distinguished_name = req_dn
    [ req_ext ]
    subjectKeyIdentifier = hash
    basicConstraints = critical, CA:true
    keyUsage = critical, digitalSignature, nonRepudiation, keyEncipherment, keyCertSign
    [ req_dn ]
    O = Istio
    CN = Root CA`
    
    // Root contains the cryptographic files for a self-signed root CA.
    type Root struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 03 18:09:59 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  3. pkg/test/cert/ca/intermediate.go

    )
    
    const (
    	istioConfTemplate = `
    [ req ]
    encrypt_key = no
    prompt = no
    utf8 = yes
    default_md = sha256
    default_bits = 4096
    req_extensions = req_ext
    x509_extensions = req_ext
    distinguished_name = req_dn
    [ req_ext ]
    subjectKeyIdentifier = hash
    basicConstraints = critical, CA:true, pathlen:0
    keyUsage = critical, digitalSignature, nonRepudiation, keyEncipherment, keyCertSign
    subjectAltName=@san
    [ san ]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/a.out.go

    const (
    	REG_NONE = 0
    )
    
    const (
    	REG_AL = obj.RBaseAMD64 + iota
    	REG_CL
    	REG_DL
    	REG_BL
    	REG_SPB
    	REG_BPB
    	REG_SIB
    	REG_DIB
    	REG_R8B
    	REG_R9B
    	REG_R10B
    	REG_R11B
    	REG_R12B
    	REG_R13B
    	REG_R14B
    	REG_R15B
    
    	REG_AX
    	REG_CX
    	REG_DX
    	REG_BX
    	REG_SP
    	REG_BP
    	REG_SI
    	REG_DI
    	REG_R8
    	REG_R9
    	REG_R10
    	REG_R11
    	REG_R12
    	REG_R13
    	REG_R14
    	REG_R15
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 31 20:28:39 UTC 2021
    - 6.8K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/asm_test.go

    		{memAddr(REG_AL, REG_NONE), Ym},
    		{memAddr(REG_AL, REG_SI), Ym},
    		{memAddr(REG_SI, REG_CX), Ym},
    		{memAddr(REG_DI, REG_X0), Yxvm},
    		{memAddr(REG_DI, REG_X7), Yxvm},
    		{memAddr(REG_DI, REG_Y0), Yyvm},
    		{memAddr(REG_DI, REG_Y7), Yyvm},
    		{memAddr(REG_DI, REG_Z0), Yzvm},
    		{memAddr(REG_DI, REG_Z7), Yzvm},
    	}
    
    	oclassTestsAMD64 = []*oclassTest{
    		{immAddr(-200), Ys32},
    		{immAddr(500), Ys32},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 28 19:39:51 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/passes/merge_fusion_with_dequantize.cc

        rewriter.setInsertionPoint(req_op);
        Value new_result = rewriter.create<mlir::stablehlo::UniformDequantizeOp>(
            req_op.getLoc(), func_op.getResultTypes()[0], req_op.getOperand());
        if (func_name.contains("_relu6_")) {
          auto min = rewriter.create<mlir::stablehlo::ConstantOp>(
              req_op.getLoc(), rewriter.getF32FloatAttr(0));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. src/net/http/fcgi/fcgi.go

    	return err
    }
    
    func (c *conn) writeEndRequest(reqId uint16, appStatus int, protocolStatus uint8) error {
    	b := make([]byte, 8)
    	binary.BigEndian.PutUint32(b, uint32(appStatus))
    	b[4] = protocolStatus
    	return c.writeRecord(typeEndRequest, reqId, b)
    }
    
    func (c *conn) writePairs(recType recType, reqId uint16, pairs map[string]string) error {
    	w := newWriter(c, recType, reqId)
    	b := make([]byte, 8)
    	for k, v := range pairs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 18:51:39 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. src/runtime/defs_solaris_amd64.go

    	REG_R14    = C.REG_R14
    	REG_R15    = C.REG_R15
    	REG_RBP    = C.REG_RBP
    	REG_RBX    = C.REG_RBX
    	REG_RAX    = C.REG_RAX
    	REG_GS     = C.REG_GS
    	REG_FS     = C.REG_FS
    	REG_ES     = C.REG_ES
    	REG_DS     = C.REG_DS
    	REG_TRAPNO = C.REG_TRAPNO
    	REG_ERR    = C.REG_ERR
    	REG_RIP    = C.REG_RIP
    	REG_CS     = C.REG_CS
    	REG_RFLAGS = C.REG_RFL
    	REG_RSP    = C.REG_RSP
    	REG_SS     = C.REG_SS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1004 bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/doc/c4/lib/C4.puml

    !define Rel_D(e_from,e_to, e_label) Rel_(e_from,e_to, e_label, "-DOWN->")
    !define Rel_D(e_from,e_to, e_label, e_techn) Rel_(e_from,e_to, e_label, e_techn, "-DOWN->")
    !define Rel_Down(e_from,e_to, e_label) Rel_D(e_from,e_to, e_label)
    !define Rel_Down(e_from,e_to, e_label, e_techn) Rel_D(e_from,e_to, e_label, e_techn)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/x86/ggen.go

    		p = pp.Append(p, obj.ADUFFZERO, obj.TYPE_NONE, 0, 0, obj.TYPE_ADDR, 0, 1*(128-cnt/int64(types.RegSize)))
    		p.To.Sym = ir.Syms.Duffzero
    	} else {
    		p = pp.Append(p, x86.AMOVL, obj.TYPE_CONST, 0, cnt/int64(types.RegSize), obj.TYPE_REG, x86.REG_CX, 0)
    		p = pp.Append(p, x86.ALEAL, obj.TYPE_MEM, x86.REG_SP, off, obj.TYPE_REG, x86.REG_DI, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:38:47 UTC 2020
    - 1.5K bytes
    - Viewed (0)
Back to top