Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 48 for RB (0.02 sec)

  1. docs/site-replication/run-multi-site-minio-idp.sh

    # create a new bucket on minio2. This should replicate to minio1 after it comes online.
    ./mc mb minio2/newbucket2
    
    # delete bucket2 on minio2. This should replicate to minio1 after it comes online.
    ./mc rb minio2/bucket2
    
    # Restart minio1 instance
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. pilot/pkg/networking/grpcgen/grpcgen_test.go

    	// This does not attempt to resolve CDS or EDS.
    	t.Run("gRPC-resolve", func(t *testing.T) {
    		rb := xdsresolver
    		stateCh := make(chan resolver.State, 1)
    		errorCh := make(chan error, 1)
    		_, err := rb.Build(resolver.Target{URL: url.URL{
    			Scheme: "xds",
    			Path:   "/" + net.JoinHostPort(testSvcHost, xdsPorts),
    		}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:04:02 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. common/Makefile.common.mk

    lint-markdown:
    	@${FINDFILES} -name '*.md' -not -path './manifests/addons/dashboards/*' -print0 | ${XARGS} mdl --ignore-front-matter --style common/config/mdl.rb
    
    lint-links:
    	@${FINDFILES} -name '*.md' -print0 | ${XARGS} awesome_bot --skip-save-results --allow_ssl --allow-timeout --allow-dupe --allow-redirect --white-list ${MARKDOWN_LINT_ALLOWLIST}
    
    lint-sass:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/riscv/obj.go

    		// Handle register to register moves.
    		switch p.As {
    		case AMOV: // MOV Ra, Rb -> ADDI $0, Ra, Rb
    			ins.as, ins.rs1, ins.rs2, ins.imm = AADDI, uint32(p.From.Reg), obj.REG_NONE, 0
    		case AMOVW: // MOVW Ra, Rb -> ADDIW $0, Ra, Rb
    			ins.as, ins.rs1, ins.rs2, ins.imm = AADDIW, uint32(p.From.Reg), obj.REG_NONE, 0
    		case AMOVBU: // MOVBU Ra, Rb -> ANDI $255, Ra, Rb
    			ins.as, ins.rs1, ins.rs2, ins.imm = AANDI, uint32(p.From.Reg), obj.REG_NONE, 255
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  5. src/crypto/tls/testdata/Client-TLSv13-ALPN

    00000280  df af cd 15 e7 30 2d 28  a1 24 80 ab 3e 71 83 e3  |.....0-(.$..>q..|
    00000290  5c 9a b7 6b f2 d0 1e 55  2c 1c ac 5d 21 64 a2 d2  |\..k...U,..]!d..|
    000002a0  a9 dd a8 49 7c 22 26 8e  ca 75 a3 ef 52 42 d0 38  |...I|"&..u..RB.8|
    000002b0  f4 02 60 af ee 33 30 46  90 a5 b3 7a 66 c8 ab 10  |..`..30F...zf...|
    000002c0  3f 76 d1 76 aa 5d da c4  29 ca d7 22 c4 44 b4 e8  |?v.v.]..)..".D..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. src/crypto/tls/boring_test.go

    QzI4LJ1joTHhM29fLJ5aZN0TPFdTFVo3QDROPjHNN4VONDPBbLfIpSPOuobdr3JU
    qP6I7KKKRPzawu01e8u80li0AE379aFQ3pj2Z+UXinKlfJdey5uwTIXj0igjQ81e
    I4WmQh7VsVbt5z8+DAP+7YdQMfm88iQXBefblFIBzHPtzPXSKrj+YN+rB/vDRWGe
    7rafqqBrKWRc27Rq5iJ+xzJJ3Dztyp2Tjl8jSeZQVdaeaBmON4bPaQRtgKWg0mbt
    aEjosRZNJv1nDEl5qG9XN3FC9zb5FrGSFmTTUvR4f4tUHr7wifNSS2dtgQ6+jU6f
    m9o6fukaP7t5VyOXuV7FIO/Hdg2lqW+xU1LowZpVd6ANZ5rAZXtMhWe3+mjfFtju
    TAnR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ppc64/asm.go

    			ldr.Errorf(s, "R_POWER_TLS reloc only supports XO form ADD, not %08X", val)
    		}
    		// Verify RB is R13 in ADD RA,RB,RT.
    		if (val>>11)&0x1F != 13 {
    			// If external linking is made to support this, it may expect the linker to rewrite RB.
    			ldr.Errorf(s, "R_POWER_TLS reloc requires R13 in RB (%08X).", uint32(val))
    		}
    		return val, nExtReloc, true
    
    	case objabi.R_POWER_TLS_IE:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  8. src/cmd/internal/objabi/reloctype.go

    	// simpler thread-pointer relative relocation. See table 3.26 and 3.28 in the
    	// ppc64 elfv2 1.4 ABI on this transformation.  Likewise, the second argument
    	// (usually called RB in X-form instructions) is assumed to be R13.
    	R_POWER_TLS
    
    	// R_POWER_TLS_IE_PCREL34 is similar to R_POWER_TLS_IE, but marks a single MOVD
    	// which has been assembled as a single prefixed load doubleword without using the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  9. src/encoding/xml/xml.go

    func (d *Decoder) switchToReader(r io.Reader) {
    	// Get efficient byte at a time reader.
    	// Assume that if reader has its own
    	// ReadByte, it's efficient enough.
    	// Otherwise, use bufio.
    	if rb, ok := r.(io.ByteReader); ok {
    		d.r = rb
    	} else {
    		d.r = bufio.NewReader(r)
    	}
    }
    
    // Parsing state - stack holds old name space translations
    // and the current set of open elements. The translations to pop when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  10. src/net/http/cookie_test.go

    		``,
    	},
    	{
    		&Cookie{Name: "\r"},
    		``,
    	},
    	{
    		&Cookie{Name: "a\nb", Value: "v"},
    		``,
    	},
    	{
    		&Cookie{Name: "a\nb", Value: "v"},
    		``,
    	},
    	{
    		&Cookie{Name: "a\rb", Value: "v"},
    		``,
    	},
    	// Quoted values (issue #46443)
    	{
    		&Cookie{Name: "cookie", Value: "quoted", Quoted: true},
    		`cookie="quoted"`,
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top