Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/internal/obj/ppc64/doc.go

    of the expected endian order. If 'BR' is used then zero extend is assumed.
    
    Memory references n(Ra) indicate the address in Ra + n. When used with an update form
    of an opcode, the value in Ra is incremented by n.
    
    Memory references (Ra+Rb) or (Ra)(Rb) indicate the address Ra + Rb, used by indexed
    loads or stores. Both forms are accepted. When used with an update then the base register
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/istio_ca.go

    	"istio.io/istio/security/pkg/cmd"
    	"istio.io/istio/security/pkg/pki/ca"
    	"istio.io/istio/security/pkg/pki/ra"
    	caserver "istio.io/istio/security/pkg/server/ca"
    	"istio.io/istio/security/pkg/server/ca/authenticate"
    	"istio.io/istio/security/pkg/util"
    )
    
    type caOptions struct {
    	ExternalCAType   ra.CaExternalType
    	ExternalCASigner string
    	// domain to use in SPIFFE identity URLs
    	TrustDomain      string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/asm9.go

    			opset(ASRD, r0)
    			opset(ASRDCC, r0)
    			opset(AROTL, r0)
    
    		case ASRAW: /* sraw Rb,Rs,Ra; srawi sh,Rs,Ra */
    			opset(ASRAWCC, r0)
    
    		case AEXTSWSLI:
    			opset(AEXTSWSLICC, r0)
    
    		case ASRAD: /* sraw Rb,Rs,Ra; srawi sh,Rs,Ra */
    			opset(ASRADCC, r0)
    
    		case ASUB: /* SUB Ra,Rb,Rd => subf Rd,ra,rb */
    			opset(ASUB, r0)
    
    			opset(ASUBCC, r0)
    			opset(ASUBV, r0)
    			opset(ASUBVCC, r0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  4. src/test/java/jcifs/tests/FileOperationsTest.java

                          SmbFile t = new SmbFile(d1, makeRandomName()) ) {
                        try {
                            try ( SmbRandomAccessFile ra = f.openRandomAccess("rw") ) {
                                ra.setLength(length);
                            }
    
                            f.copyTo(t);
                            assertTrue(f.exists());
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:17:59 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top