Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 214 for facets (0.1 sec)

  1. tools/istio-iptables/pkg/capture/run.go

    ) {
    	// TODO: add ip6 as well
    	for _, uid := range split(proxyUID) {
    		// Packets with dst port 53 from istio to zone 1. These are Istio calls to upstream resolvers
    		f.Run("-p", "udp", "--dport", "53", "-m", "owner", "--uid-owner", uid, "-j", constants.CT, "--zone", "1")
    		// Packets with src port 15053 from istio to zone 2. These are Istio response packets to application clients
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/tls/BasicTrustRootIndex.kt

    /** A simple index that of trusted root certificates that have been loaded into memory. */
    class BasicTrustRootIndex(vararg caCerts: X509Certificate) : TrustRootIndex {
      private val subjectToCaCerts: Map<X500Principal, Set<X509Certificate>>
    
      init {
        val map = mutableMapOf<X500Principal, MutableSet<X509Certificate>>()
        for (caCert in caCerts) {
          map.getOrPut(caCert.subjectX500Principal) { mutableSetOf() }.add(caCert)
        }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/ctrlflow/ctrlflow.go

    	// Cycles in the static call graph are broken
    	// arbitrarily but deterministically.
    	// We create noReturn facts as discovered.
    	for _, fn := range decls {
    		c.buildDecl(fn, funcDecls[fn])
    	}
    
    	// Build CFGs for literal functions.
    	// These aren't relevant to facts (since they aren't named)
    	// but are required for the CFGs.FuncLit API.
    	for _, lit := range lits {
    		li := funcLits[lit]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. releasenotes/notes/43104.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    issue:
      - 43104
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 16 02:57:18 UTC 2023
    - 253 bytes
    - Viewed (0)
  5. src/strings/strings_test.go

    	{abcd, "", -1, []string{"a", "b", "c", "d"}},
    	{commas, ",", -1, []string{"1,", "2,", "3,", "4"}},
    	{dots, "...", -1, []string{"1...", ".2...", ".3...", ".4"}},
    	{faces, "☹", -1, []string{"☺☻☹", ""}},
    	{faces, "~", -1, []string{faces}},
    	{faces, "", -1, []string{"☺", "☻", "☹"}},
    	{"1 2 3 4", " ", 3, []string{"1 ", "2 ", "3 4"}},
    	{"1 2 3", " ", 3, []string{"1 ", "2 ", "3"}},
    	{"1 2", " ", 3, []string{"1 ", "2"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  6. tests/integration/security/util/cert/cert.go

    		certs = append(certs, s)
    	}
    	return certs
    }
    
    // CreateCASecret creates a k8s secret "cacerts" to store the CA key and cert.
    func CreateCASecret(ctx resource.Context) error {
    	return CreateCustomCASecret(ctx,
    		"ca-cert.pem", "ca-key.pem",
    		"cert-chain.pem", "root-cert.pem")
    }
    
    // CreateCASecretAlt creates a k8s secret "cacerts" to store the CA key and cert using an alternative set of certs.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 16:44:37 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. subprojects/core/src/main/resources/org/gradle/initialization/converted-types.txt

    org.gradle.plugins.ide.eclipse.model.EclipseWtp
    org.gradle.plugins.ide.eclipse.model.EclipseWtpComponent
    org.gradle.plugins.ide.eclipse.model.EclipseWtpFacet
    org.gradle.plugins.ide.eclipse.model.Facet
    org.gradle.plugins.ide.eclipse.model.Facet$FacetType
    org.gradle.plugins.ide.eclipse.model.Link
    org.gradle.plugins.ide.eclipse.model.Output
    org.gradle.plugins.ide.eclipse.model.Project
    org.gradle.plugins.ide.eclipse.model.WbDependentModule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 08 10:41:04 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/tls/CertificateChainCleaner.kt

        fun get(trustManager: X509TrustManager): CertificateChainCleaner {
          return Platform.get().buildCertificateChainCleaner(trustManager)
        }
    
        fun get(vararg caCerts: X509Certificate): CertificateChainCleaner {
          return BasicCertificateChainCleaner(BasicTrustRootIndex(*caCerts))
        }
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. pkg/proxy/metrics/metrics.go

    		},
    	)
    
    	// iptablesCTStateInvalidDroppedPacketsDescription describe the metrics for the number of packets dropped
    	// by iptables which were marked INVALID by conntrack.
    	iptablesCTStateInvalidDroppedPacketsDescription = metrics.NewDesc(
    		"kubeproxy_iptables_ct_state_invalid_dropped_packets_total",
    		"packets dropped by iptables to work around conntrack problems",
    		nil, nil, metrics.ALPHA, "")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. security/pkg/pki/ca/ca.go

    			// 2. if `istio-ca-secret` not exist and use cacerts enabled, fallback to fetch `cacerts`
    			if useCacertsSecretName {
    				caCertName = CACertsSecret
    				err := loadSelfSignedCaSecret(client, namespace, caCertName, rootCertFile, caOpts)
    				if err == nil {
    					return nil
    				} else if apierror.IsNotFound(err) { // if neither `istio-ca-secret` nor `cacerts` exists, we create a `cacerts`
    					// continue to create `cacerts`
    				} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 17.2K bytes
    - Viewed (0)
Back to top