Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 118 for Ra (0.02 sec)

  1. security/pkg/pki/ra/leak_test.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package ra
    
    import (
    	"testing"
    
    	"istio.io/istio/tests/util/leak"
    )
    
    func TestMain(m *testing.M) {
    	// CheckMain asserts that no goroutines are leaked after a test package exits.
    	leak.CheckMain(m)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 02 00:23:49 UTC 2022
    - 787 bytes
    - Viewed (0)
  2. hack/lib/golang.sh

    # This overrides any entry in KUBE_STATIC_BINARIES.
    IFS=" " read -ra KUBE_CGO_OVERRIDES_LIST <<< "${KUBE_CGO_OVERRIDES:-}"
    readonly KUBE_CGO_OVERRIDES_LIST
    # KUBE_STATIC_OVERRIDES is a space-separated list of binaries which should be
    # built with CGO disabled. This is in addition to the list in
    # KUBE_STATIC_BINARIES.
    IFS=" " read -ra KUBE_STATIC_OVERRIDES_LIST <<< "${KUBE_STATIC_OVERRIDES:-}"
    readonly KUBE_STATIC_OVERRIDES_LIST
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  3. src/debug/macho/file_test.go

    func openObscured(name string) (*File, error) {
    	ra, err := readerAtFromObscured(name)
    	if err != nil {
    		return nil, err
    	}
    	ff, err := NewFile(ra)
    	if err != nil {
    		return nil, err
    	}
    	return ff, nil
    }
    
    func openFatObscured(name string) (*FatFile, error) {
    	ra, err := readerAtFromObscured(name)
    	if err != nil {
    		return nil, err
    	}
    	ff, err := NewFatFile(ra)
    	if err != nil {
    		return nil, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 12.4K bytes
    - Viewed (0)
  4. security/pkg/pki/ra/common.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    package ra
    
    import (
    	"fmt"
    	"time"
    
    	clientset "k8s.io/client-go/kubernetes"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pkg/slices"
    	raerror "istio.io/istio/security/pkg/pki/error"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 19:57:30 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. src/syscall/netlink_linux.go

    	}
    	var attrs []NetlinkRouteAttr
    	for len(b) >= SizeofRtAttr {
    		a, vbuf, alen, err := netlinkRouteAttrAndValue(b)
    		if err != nil {
    			return nil, err
    		}
    		ra := NetlinkRouteAttr{Attr: *a, Value: vbuf[:int(a.Len)-SizeofRtAttr]}
    		attrs = append(attrs, ra)
    		b = b[alen:]
    	}
    	return attrs, nil
    }
    
    func netlinkRouteAttrAndValue(b []byte) (*RtAttr, []byte, int, error) {
    	a := (*RtAttr)(unsafe.Pointer(&b[0]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. security/pkg/pki/ra/fuzz_test.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package ra
    
    import (
    	"testing"
    
    	fuzz "github.com/AdaLogics/go-fuzz-headers"
    )
    
    func FuzzValidateCSR(f *testing.F) {
    	f.Fuzz(func(t *testing.T, csrPEM, subjectIDsData []byte) {
    		ff := fuzz.NewConsumer(subjectIDsData)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 12 14:51:41 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  7. src/main/resources/fess_indices/fess/hu/stopwords.txt

    mindig
    mint
    mintha
    mivel
    most
    nagy
    nagyobb
    nagyon
    ne
    néha
    nekem
    neki
    nem
    néhány
    nélkül
    nincs
    olyan
    ott
    össze
    ő
    ők
    őket
    pedig
    persze
    
    s
    saját
    sem
    semmi
    sok
    sokat
    sokkal
    számára
    szemben
    szerint
    szinte
    talán
    tehát
    teljes
    tovább
    továbbá
    több
    úgy
    ugyanis
    új
    újabb
    újra
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/k8sgateway-selector.yaml

      containers:
      - image: proxyv2:1.3.1
        name: istio-proxy
    ---
    # only selector is set, should be ineffective
    apiVersion: security.istio.io/v1
    kind: RequestAuthentication
    metadata:
      namespace: default
      name: ra-ineffective
    spec:
      selector:
        matchLabels:
          gateway.networking.k8s.io/gateway-name: bookinfo-gateway
    ---
    # only selector is set, should be ineffective
    apiVersion: security.istio.io/v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 01:19:33 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. src/net/fd_unix.go

    	}
    	return fd.net + ":" + ls + "->" + rs
    }
    
    func (fd *netFD) connect(ctx context.Context, la, ra syscall.Sockaddr) (rsa syscall.Sockaddr, ret error) {
    	// Do not need to call fd.writeLock here,
    	// because fd is not yet accessible to user,
    	// so no concurrent operations are possible.
    	switch err := connectFunc(fd.pfd.Sysfd, ra); err {
    	case syscall.EINPROGRESS, syscall.EALREADY, syscall.EINTR:
    	case nil, syscall.EISCONN:
    		select {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 20:19:46 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. src/cmd/internal/buildid/rewrite.go

    		copy(p[cstart:cend], zeros)
    	}
    	r.off += int64(n)
    	return n, err
    }
    
    func findMachoCodeSignature(r any) (*macho.File, codesign.CodeSigCmd, bool) {
    	ra, ok := r.(io.ReaderAt)
    	if !ok {
    		return nil, codesign.CodeSigCmd{}, false
    	}
    	f, err := macho.NewFile(ra)
    	if err != nil {
    		return nil, codesign.CodeSigCmd{}, false
    	}
    	cmd, ok := codesign.FindCodeSigCmd(f)
    	return f, cmd, ok
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 5.1K bytes
    - Viewed (0)
Back to top