Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 37 for sc_t (0.31 sec)

  1. manifests/charts/gateways/istio-ingress/files/profile-openshift-ambient.yaml

        PILOT_ENABLE_SENDING_HBONE: "true"
        PILOT_ENABLE_SIDECAR_LISTENING_HBONE: "true"
    platform: openshift
    variant: distroless
    seLinuxOptions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 883 bytes
    - Viewed (0)
  2. manifests/charts/istiod-remote/files/profile-openshift-ambient.yaml

        PILOT_ENABLE_SENDING_HBONE: "true"
        PILOT_ENABLE_SIDECAR_LISTENING_HBONE: "true"
    platform: openshift
    variant: distroless
    seLinuxOptions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 883 bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_messages.go

    			if !extData.ReadUint16LengthPrefixed(&sctList) || sctList.Empty() {
    				return false
    			}
    			for !sctList.Empty() {
    				var sct []byte
    				if !readUint16LengthPrefixed(&sctList, &sct) ||
    					len(sct) == 0 {
    					return false
    				}
    				m.scts = append(m.scts, sct)
    			}
    		case extensionSupportedVersions:
    			if !extData.ReadUint16(&m.supportedVersion) {
    				return false
    			}
    		case extensionCookie:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. src/runtime/defs_openbsd_arm64.go

    	tf_tid   *int32
    	tf_stack uintptr
    }
    
    type sigcontext struct {
    	__sc_unused int32
    	sc_mask     int32
    	sc_sp       uintptr
    	sc_lr       uintptr
    	sc_elr      uintptr
    	sc_spsr     uintptr
    	sc_x        [30]uintptr
    	sc_cookie   int64
    }
    
    type siginfo struct {
    	si_signo  int32
    	si_code   int32
    	si_errno  int32
    	pad_cgo_0 [4]byte
    	_data     [120]byte
    }
    
    type stackt struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 17:31:23 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. pkg/kube/multicluster/secretcontroller.go

    }
    
    func (c *Controller) processItem(key types.NamespacedName) error {
    	log.Infof("processing secret event for secret %s", key)
    	scrt := c.secrets.Get(key.Name, key.Namespace)
    	if scrt != nil {
    		log.Debugf("secret %s exists in informer cache, processing it", key)
    		if err := c.addSecret(key, scrt); err != nil {
    			return fmt.Errorf("error adding secret %s: %v", key, err)
    		}
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. pilot/test/xdstest/extract.go

    	}
    	return res
    }
    
    func ExtractTLSSecrets(t test.Failer, secrets []*anypb.Any) map[string]*tls.Secret {
    	res := map[string]*tls.Secret{}
    	for _, a := range secrets {
    		scrt := UnmarshalAny[tls.Secret](t, a)
    		res[scrt.Name] = scrt
    	}
    	return res
    }
    
    func UnmarshalRouteConfiguration(t test.Failer, resp []*anypb.Any) []*route.RouteConfiguration {
    	un := make([]*route.RouteConfiguration, 0, len(resp))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  7. manifests/charts/ztunnel/values.yaml

      seLinuxOptions: {}
      # TODO Ambient inpod - for OpenShift, set to the following to get writable sockets in hostmounts to work, eventually consider CSI driver instead
      #seLinuxOptions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:30 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. src/crypto/x509/root_darwin.go

    			return nil, err
    		}
    	}
    
    	// TODO(roland): we may want to allow passing in SCTs via VerifyOptions and
    	// set them via SecTrustSetSignedCertificateTimestamps, since Apple will
    	// always enforce its SCT requirements, and there are still _some_ people
    	// using TLS or OCSP for that.
    
    	if ret, err := macOS.SecTrustEvaluateWithError(trustObj); err != nil {
    		switch ret {
    		case macOS.ErrSecCertificateExpired:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 00:36:38 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_client_test.go

    				return fmt.Errorf("Got %d scts, wanted %d", n, len(expectedSCTs))
    			}
    			for i, expected := range expectedSCTs {
    				if sct := state.SignedCertificateTimestamps[i]; !bytes.Equal(sct, expected) {
    					return fmt.Errorf("SCT #%d contained %x, expected %x", i, sct, expected)
    				}
    			}
    			return nil
    		},
    	}
    	runClientTestTLS12(t, test)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  10. security/pkg/pki/ca/selfsignedcarootcertrotator.go

    		}
    		return
    	}
    	rootCertRotatorLog.Info("Root certificate rotation is completed successfully.")
    }
    
    // updateRootCertificate updates root certificate in istio-ca-secret, keycertbundle and configmap. It takes a scrt
    // object, cert, and key, and a flag rollForward indicating whether this update is to roll forward root certificate or
    // to roll backward.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 10.4K bytes
    - Viewed (0)
Back to top