Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for pfx (0.03 sec)

  1. src/cmd/internal/src/pos.go

    }
    
    func (x lico) lineNumberHTML() string {
    	if x.IsStmt() == PosDefaultStmt {
    		return fmt.Sprintf("%d", x.Line())
    	}
    	style, pfx := "b", "+"
    	if x.IsStmt() == PosNotStmt {
    		style = "s" // /strike not supported in HTML5
    		pfx = ""
    	}
    	return fmt.Sprintf("<%s>%s%d</%s>", style, pfx, x.Line(), style)
    }
    
    func (x lico) atColumn1() lico {
    	return makeLico(x.Line(), 1).withIsStmt()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  2. docs/tls/README.md

    * 3.4 [Use GnuTLS (for Windows) to Generate a Certificate](#using-gnu-tls)
    
    **Note:**
    
    * MinIO only supports keys and certificates in PEM format on Linux and Windows.
    * MinIO doesn't currently support PFX certificates.
    
    ### 3.1 Use `certgen` to Generate a Certificate
    
    Download [`certgen`](https://github.com/minio/certgen/releases/latest) for your specific operating system and platform.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  3. cmd/server_test.go

    	response, err = s.client.Do(enableVersioningBucketRequest)
    	c.Assert(err, nil)
    	c.Assert(response.StatusCode, http.StatusOK)
    
    	for _, objectName := range []string{"pfx/a/1.txt", "pfx/b/2.txt", "pfx/", "pfx2/c/3.txt", "pfx2/d/3.txt", "pfx1/1.txt", "pfx2/", "pfx3/", "pfx4/"} {
    		buffer := bytes.NewReader([]byte(""))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  4. cmd/erasure-server-pool-decom.go

    	// Last bucket/object decommissioned.
    	Bucket string `json:"-" msg:"bkt"`
    	// Captures prefix that is currently being
    	// decommissioned inside the 'Bucket'
    	Prefix string `json:"-" msg:"pfx"`
    	Object string `json:"-" msg:"obj"`
    
    	// Verbose information
    	ItemsDecommissioned     int64 `json:"objectsDecommissioned" msg:"id"`
    	ItemsDecommissionFailed int64 `json:"objectsDecommissionedFailed" msg:"idf"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 14:30:43 UTC 2024
    - 41.5K bytes
    - Viewed (1)
  5. cluster/gce/gci/configure-helper.sh

      local -r prefix="${2:-}"
      local -r suffix="${3:-}"
      local -r dirname=$(dirname "${file}")
      local -r tmpfile=$(mktemp "${dirname}/filtered.XXXX")
    
      touch "${file}"
      awk -v pfx="${prefix}" 'substr($0,1,length(pfx)) != pfx { print }' "${file}" > "${tmpfile}"
      echo "${prefix}${suffix}" >> "${tmpfile}"
      mv "${tmpfile}" "${file}"
    }
    
    function write-pki-data {
      local data="${1}"
      local path="${2}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func PFXImportCertStore(pfx *CryptDataBlob, password *uint16, flags uint32) (store Handle, err error) {
    	r0, _, e1 := syscall.Syscall(procPFXImportCertStore.Addr(), 3, uintptr(unsafe.Pointer(pfx)), uintptr(unsafe.Pointer(password)), uintptr(flags))
    	store = Handle(r0)
    	if store == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	CertDuplicateCertificateContext(certContext *CertContext) (dupContext *CertContext) = crypt32.CertDuplicateCertificateContext
    //sys	PFXImportCertStore(pfx *CryptDataBlob, password *uint16, flags uint32) (store Handle, err error) = crypt32.PFXImportCertStore
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  8. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        <magic>
          <match value="PDS_VERSION_ID" type="string" offset="0"/>
        </magic>
      </mime-type>
      <mime-type type="application/x-pkcs12">
        <glob pattern="*.p12"/>
        <glob pattern="*.pfx"/>
      </mime-type>
      <mime-type type="application/x-pkcs7-certificates">
        <glob pattern="*.p7b"/>
        <glob pattern="*.spc"/>
      </mime-type>
      <mime-type type="application/x-pkcs7-certreqresp">
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
Back to top