Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 109 for RB (0.02 sec)

  1. src/internal/fuzz/mutators_byteslice.go

    	copy(b[dst+n:], b[dst:])
    	rb := byte(m.rand(256))
    	for i := dst; i < dst+n; i++ {
    		b[i] = rb
    	}
    	return b
    }
    
    // byteSliceOverwriteConstantBytes overwrites a chunk of b with constant bytes.
    func byteSliceOverwriteConstantBytes(m *mutator, b []byte) []byte {
    	if len(b) <= 1 {
    		return nil
    	}
    	dst := m.rand(len(b))
    	n := m.chooseLen(len(b) - dst)
    	rb := byte(m.rand(256))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 19 18:23:43 UTC 2021
    - 7.7K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/asm9_gtables.go

    	}
    	out[0] = o0
    }
    
    // lxvpx XTp,RA,RB
    func type_lxvpx(c *ctxt9, p *obj.Prog, t *Optab, out *[5]uint32) {
    	o0 := GenOpcodes[p.As-AXXSETACCZ]
    	o0 |= uint32((p.To.Reg>>5)&0x1) << 21 // TX
    	o0 |= uint32((p.To.Reg>>1)&0xf) << 22 // Tp
    	o0 |= uint32(p.From.Index&0x1f) << 16 // RA
    	o0 |= uint32(p.From.Reg&0x1f) << 11   // RB
    	out[0] = o0
    }
    
    // lxvrwx XT,RA,RB
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 20:18:50 UTC 2022
    - 42.6K bytes
    - Viewed (0)
  3. docs/sts/client-grants.py

                                       '0Z4VTG8uJBSekn42HE40DK9vQb4a'),
    )
    
    boto3_session = Session(botocore_session=bc_session)
    s3 = boto3_session.resource('s3', endpoint_url='http://localhost:9000')
    
    with open('/etc/hosts', 'rb') as data:
        s3.meta.client.upload_fileobj(data,
                                      'testbucket',
                                      'hosts',
                                      ExtraArgs={'ServerSideEncryption': 'AES256'})
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/tests/ir/fallback_opt.mlir

    }
    
    // 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}
    
      // CHECK: tfrt_fallback_async.set_resource {{%.*}}, {{%.*}} {device = "cpu", index = 0 : 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)
  5. cmd/kubeadm/app/phases/addons/proxy/proxy.go

    			{
    				Verbs:         []string{"get"},
    				APIGroups:     []string{""},
    				Resources:     []string{"configmaps"},
    				ResourceNames: []string{constants.KubeProxyConfigMap},
    			},
    		},
    	}
    
    	rb := &rbac.RoleBinding{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      KubeProxyConfigMapRoleName,
    			Namespace: metav1.NamespaceSystem,
    		},
    		RoleRef: rbac.RoleRef{
    			APIGroup: rbac.GroupName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 13:23:44 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.go

    func xgetbv() (eax, edx uint32) {
    	var a, d uint32
    	gccgoXgetbv(&a, &d)
    	return a, d
    }
    
    // gccgo doesn't build on Darwin, per:
    // https://github.com/Homebrew/homebrew-core/blob/HEAD/Formula/gcc.rb#L76
    func darwinSupportsAVX512() bool {
    	return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 795 bytes
    - Viewed (0)
  7. tests/test_datastructures.py

        @app.post("/uploadfile/")
        def create_upload_file(file: UploadFile):
            testing_file_store.append(file)
            return {"filename": file.filename}
    
        client = TestClient(app)
        with path.open("rb") as file:
            response = client.post("/uploadfile/", files={"file": file})
        assert response.status_code == 200, response.text
        assert response.json() == {"filename": "test.txt"}
    
        assert testing_file_store
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Oct 18 12:36:40 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. src/net/mockserver_test.go

    		if perr := parseWriteError(err); perr != nil {
    			ch <- perr
    		}
    		ch <- err
    		return
    	}
    	if n != len(wb) {
    		ch <- fmt.Errorf("wrote %d; want %d", n, len(wb))
    	}
    	rb := make([]byte, len(wb))
    	n, err = c.Read(rb)
    	if err != nil {
    		if perr := parseReadError(err); perr != nil {
    			ch <- perr
    		}
    		ch <- err
    		return
    	}
    	if n != len(wb) {
    		ch <- fmt.Errorf("read %d; want %d", n, len(wb))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. cluster/addons/fluentd-gcp/event-exporter.yaml

        k8s-app: event-exporter
        kubernetes.io/cluster-service: "true"
        addonmanager.kubernetes.io/mode: Reconcile
    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRoleBinding
    metadata:
      name: event-exporter-rb
      namespace: kube-system
      labels:
        k8s-app: event-exporter
        kubernetes.io/cluster-service: "true"
        addonmanager.kubernetes.io/mode: Reconcile
    roleRef:
      apiGroup: rbac.authorization.k8s.io
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 13 18:40:41 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  10. pkg/apis/rbac/helpers_test.go

    // that did not match, reconciliation would incorrectly add duplicate data to the cluster's RBAC policy.
    func TestHelpersRoundTrip(t *testing.T) {
    	rb := rbac.NewRoleBinding("role", "ns").Groups("g").SAs("ns", "sa").Users("u").BindingOrDie()
    	rbcr := rbac.NewRoleBindingForClusterRole("role", "ns").Groups("g").SAs("ns", "sa").Users("u").BindingOrDie()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top