Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for Ra (0.02 sec)

  1. src/encoding/gob/timing_test.go

    	err := enc.Encode(a)
    	if err != nil {
    		b.Fatal(err)
    	}
    
    	ra := reflect.ValueOf(a)
    	rt := ra.Type()
    	b.ResetTimer()
    
    	b.ReportAllocs()
    	b.RunParallel(func(pb *testing.PB) {
    		// TODO(#19025): Move per-thread allocation before ResetTimer.
    		rp := reflect.New(rt)
    		rp.Elem().Set(reflect.MakeSlice(rt, ra.Len(), ra.Cap()))
    		p := rp.Interface()
    
    		bbuf := benchmarkBuf{data: buf.Bytes()}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 04 07:16:59 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/virtualservice/jwtclaimroute.go

    		ns := r.Metadata.FullName.Namespace.String()
    		if _, found := requestAuthNByNamespace[ns]; !found {
    			requestAuthNByNamespace[ns] = []klabels.Selector{}
    		}
    		ra := r.Message.(*v1beta1.RequestAuthentication)
    		raSelector := klabels.SelectorFromSet(ra.GetSelector().GetMatchLabels())
    		requestAuthNByNamespace[ns] = append(requestAuthNByNamespace[ns], raSelector)
    		return true
    	})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 16:38:57 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/tests/ir/fallback_opt.mlir

      // CHECK: tfrt.return [[ch]]
      tfrt.return %out_ch: !tfrt.chain
    }
    
    // CHECK-LABEL: func @fallback_resource
    func.func @fallback_resource(%ch0: !tfrt.chain) -> !tfrt.chain {
    
      %ra = tfrt_fallback_async.const_dense_tensor dense<0.0> : tensor<f32> {_tfrt_cost = 1 : i64}
      %rb = tfrt_fallback_async.const_dense_tensor dense<0.5> : tensor<f32> {_tfrt_cost = 1 : i64}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 11:03:04 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top