Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for ocsp (0.21 sec)

  1. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      <mime-type type="application/news-groupinfo"/>
      <mime-type type="application/news-transmission"/>
      <mime-type type="application/nss"/>
      <mime-type type="application/ocsp-request"/>
      <mime-type type="application/ocsp-response"/>
    
      <mime-type type="application/octet-stream">
        <magic priority="50">
          <match value="#\ This\ is\ a\ shell\ archive" type="string" offset="10"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.12.md

    * kubernetes-worker juju charm: Added support for setting the --enable-ssl-chain-completion option on the ingress proxy.  "action required": if your installation relies on supplying incomplete certificate chains and using OCSP to fill them in, you must set "ingress-ssl-chain-completion" to "true" in your juju configuration. ([#63845](https://github.com/kubernetes/kubernetes/pull/63845), [@paulgear](https://github.com/paulgear))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    			return nil
    		}
    
    	case ir.OLEN, ir.OCAP:
    		n := n.(*ir.UnaryExpr)
    		switch {
    		case n.X.Type().IsSlice():
    			op := ssa.OpSliceLen
    			if n.Op() == ir.OCAP {
    				op = ssa.OpSliceCap
    			}
    			return s.newValue1(op, types.Types[types.TINT], s.expr(n.X))
    		case n.X.Type().IsString(): // string; not reachable for OCAP
    			return s.newValue1(ssa.OpStringLen, types.Types[types.TINT], s.expr(n.X))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewrite386.go

    		v.Aux = symToAux(s)
    		v.AddArg(x)
    		return true
    	}
    	// match: (ADDLconst [c] x:(SP))
    	// result: (LEAL [c] x)
    	for {
    		c := auxIntToInt32(v.AuxInt)
    		x := v_0
    		if x.Op != OpSP {
    			break
    		}
    		v.reset(Op386LEAL)
    		v.AuxInt = int32ToAuxInt(c)
    		v.AddArg(x)
    		return true
    	}
    	// match: (ADDLconst [c] (LEAL1 [d] {s} x y))
    	// cond: is32Bit(int64(c)+int64(d))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewritePPC64.go

    		v.AddArg(x)
    		return true
    	}
    	// match: (ADDconst [c] x:(SP))
    	// cond: is32Bit(c)
    	// result: (MOVDaddr [int32(c)] x)
    	for {
    		c := auxIntToInt64(v.AuxInt)
    		x := v_0
    		if x.Op != OpSP || !(is32Bit(c)) {
    			break
    		}
    		v.reset(OpPPC64MOVDaddr)
    		v.AuxInt = int32ToAuxInt(int32(c))
    		v.AddArg(x)
    		return true
    	}
    	// match: (ADDconst [c] (SUBFCconst [d] x))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteS390X.go

    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (OffPtr [off] ptr:(SP))
    	// result: (MOVDaddr [int32(off)] ptr)
    	for {
    		off := auxIntToInt64(v.AuxInt)
    		ptr := v_0
    		if ptr.Op != OpSP {
    			break
    		}
    		v.reset(OpS390XMOVDaddr)
    		v.AuxInt = int32ToAuxInt(int32(off))
    		v.AddArg(ptr)
    		return true
    	}
    	// match: (OffPtr [off] ptr)
    	// cond: is32Bit(off)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewriteARM.go

    	v_0 := v.Args[0]
    	// match: (OffPtr [off] ptr:(SP))
    	// result: (MOVWaddr [int32(off)] ptr)
    	for {
    		off := auxIntToInt64(v.AuxInt)
    		ptr := v_0
    		if ptr.Op != OpSP {
    			break
    		}
    		v.reset(OpARMMOVWaddr)
    		v.AuxInt = int32ToAuxInt(int32(off))
    		v.AddArg(ptr)
    		return true
    	}
    	// match: (OffPtr [off] ptr)
    	// result: (ADDconst [int32(off)] ptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
Back to top