Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 382 for ca (8.87 sec)

  1. src/main/java/org/codelibs/fess/es/log/cbean/ca/ClickLogCA.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.es.log.cbean.ca;
    
    import org.codelibs.fess.es.log.cbean.ca.bs.BsClickLogCA;
    
    /**
     * @author ESFlute (using FreeGen)
     */
    public class ClickLogCA extends BsClickLogCA {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 816 bytes
    - Viewed (0)
  2. cmd/config-dir.go

    	defaultMinioConfigDir = ".minio"
    
    	// Directory contains below files/directories for HTTPS configuration.
    	certsDir = "certs"
    
    	// Directory contains all CA certificates other than system defaults for HTTPS.
    	certsCADir = "CAs"
    
    	// Public certificate file for HTTPS.
    	publicCertFile = "public.crt"
    
    	// Private key file for HTTPS.
    	privateKeyFile = "private.key"
    )
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Jan 02 17:15:06 GMT 2022
    - 3K bytes
    - Viewed (0)
  3. manifests/charts/gateways/istio-egress/values.yaml

          - name: egressgateway-certs
            secretName: istio-egressgateway-certs
            mountPath: /etc/istio/egressgateway-certs
          - name: egressgateway-ca-certs
            secretName: istio-egressgateway-ca-certs
            mountPath: /etc/istio/egressgateway-ca-certs
    
          configVolumes: []
          additionalContainers: []
    
          serviceAccount:
            # Annotations to add to the service account
            annotations: {}
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  4. manifests/charts/gateways/istio-ingress/values.yaml

          - name: ingressgateway-certs
            secretName: istio-ingressgateway-certs
            mountPath: /etc/istio/ingressgateway-certs
          - name: ingressgateway-ca-certs
            secretName: istio-ingressgateway-ca-certs
            mountPath: /etc/istio/ingressgateway-ca-certs
    
          customService: false
          externalTrafficPolicy: ""
    
          ingressPorts: []
          additionalContainers: []
          configVolumes: []
    
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 13K bytes
    - Viewed (0)
  5. internal/event/target/nats_tls_contrib_test.go

    			Name:      "localhost",
    			Port:      (xnet.Port(opts.Port)),
    			IsPortSet: true,
    		},
    		Subject:       "test",
    		Secure:        true,
    		CertAuthority: path.Join("testdata", "contrib", "certs", "root_ca_cert.pem"),
    	}
    
    	con, err := clientConfig.connectNats()
    	if err != nil {
    		t.Errorf("Could not connect to nats: %v", err)
    	}
    	defer con.Close()
    }
    
    func TestNatsConnTLSClientAuthorization(t *testing.T) {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Sep 04 19:57:37 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsElevateWordToLabelCB.java

    import org.codelibs.fess.es.config.bsentity.dbmeta.ElevateWordToLabelDbm;
    import org.codelibs.fess.es.config.cbean.ElevateWordToLabelCB;
    import org.codelibs.fess.es.config.cbean.ca.ElevateWordToLabelCA;
    import org.codelibs.fess.es.config.cbean.ca.bs.BsElevateWordToLabelCA;
    import org.codelibs.fess.es.config.cbean.cq.ElevateWordToLabelCQ;
    import org.codelibs.fess.es.config.cbean.cq.bs.BsElevateWordToLabelCQ;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/values.yaml

          # When a CSR is sent from Istio Agent to the CA (e.g. Istiod), this aud is to make sure the
          # JWT is intended for the CA.
          token:
            aud: istio-ca
    
        sts:
          # The service port used by Security Token Service (STS) server to handle token exchange requests.
          # Setting this port to a non-zero value enables STS server.
          servicePort: 0
    
        # The name of the CA for workload certificates.
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 22:00:40 GMT 2024
    - 20.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/dcerpc/UnicodeString.java

            }
        }
    
    
        @Override
        public String toString () {
            int len = this.length / 2 - ( this.zterm ? 1 : 0 );
            char[] ca = new char[len];
            for ( int i = 0; i < len; i++ ) {
                ca[ i ] = (char) this.buffer[ i ];
            }
            return new String(ca, 0, len);
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.5K bytes
    - Viewed (0)
  9. manifests/charts/gateways/istio-ingress/templates/deployment.yaml

          - emptyDir: {}
            name: credential-socket
          - emptyDir: {}
            name: workload-certs
    {{- if eq .Values.global.pilotCertProvider "istiod" }}
          - name: istiod-ca-cert
            configMap:
              name: istio-ca-root-cert
    {{- end }}
          - name: podinfo
            downwardAPI:
              items:
                - path: "labels"
                  fieldRef:
                    fieldPath: metadata.labels
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 12.1K bytes
    - Viewed (1)
  10. manifests/charts/istio-control/istio-discovery/files/kube-gateway.yaml

                  expirationSeconds: 43200
                  audience: {{ .Values.global.sds.token.aud }}
          {{- if eq .Values.global.pilotCertProvider "istiod" }}
          - name: istiod-ca-cert
            configMap:
              name: istio-ca-root-cert
          {{- end }}
          {{- if .Values.global.imagePullSecrets }}
          imagePullSecrets:
            {{- range .Values.global.imagePullSecrets }}
            - name: {{ . }}
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Fri Apr 19 15:10:43 GMT 2024
    - 12.1K bytes
    - Viewed (0)
Back to top