Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for req_dn (0.36 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. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/match_test.go

    			Parts:             []string{"goodrscs", "eman"},
    		},
    		User: ui,
    	}
    	reqN := RequestDigest{
    		RequestInfo: &request.RequestInfo{
    			IsResourceRequest: false,
    			Path:              "/openapi/v2",
    			Verb:              "goodverb",
    		},
    		User: ui,
    	}
    	checkRules(t, true, reqRN, []flowcontrol.PolicyRulesWithSubjects{{
    		Subjects: []flowcontrol.Subject{{Kind: flowcontrol.SubjectKindUser,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbTransportImpl.java

                int reqLen = negotiateWrite(smb2neg, first != null);
                boolean doPreauth = getContext().getConfig().getMaximumVersion().atLeast(DialectVersion.SMB311);
                if ( doPreauth ) {
                    negoReqBuffer = new byte[reqLen];
                    System.arraycopy(this.sbuf, 4, negoReqBuffer, 0, reqLen);
                }
    
                negotiatePeek();
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top