Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 109 for RB (0.02 sec)

  1. 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)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  2. plugin/pkg/admission/imagepolicy/certs_test.go

    b+h/Den5z8bEf4ygWOL4UtqHUgQrrCw+KpNvxjxtsUoiu+mrjLf0fGYs7iq8bd73
    1dWzkIECgYEAi6P/LzMC6orbyONmwlscqO1Ili8ZBkUjJ/wThkiNMMA3pyKmb68W
    yt56Yh0rs+WnuVUN90cG87k+CY35dQ7FAOVUJi9LWGA3Oq9fGkoOB7f4dzaUu/rB
    dtit2KPCxiKpZsxqSf4+S8AXYF48abNPLYK3DCCSqAah09gYOrqYlW4=
    -----END RSA PRIVATE KEY-----`)
    
    var serverCert = []byte(`-----BEGIN CERTIFICATE-----
    MIIDCzCCAfOgAwIBAgIJAMvo2rkGpEUQMA0GCSqGSIb3DQEBCwUAMCExHzAdBgNV
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 14 12:41:21 UTC 2021
    - 8.6K bytes
    - Viewed (0)
  3. src/os/file_windows.go

    		return "", err
    	}
    
    	rdb := (*windows.REPARSE_DATA_BUFFER)(unsafe.Pointer(&rdbbuf[0]))
    	switch rdb.ReparseTag {
    	case syscall.IO_REPARSE_TAG_SYMLINK:
    		rb := (*windows.SymbolicLinkReparseBuffer)(unsafe.Pointer(&rdb.DUMMYUNIONNAME))
    		s := rb.Path()
    		if rb.Flags&windows.SYMLINK_FLAG_RELATIVE != 0 {
    			return s, nil
    		}
    		return normaliseLinkPath(s)
    	case windows.IO_REPARSE_TAG_MOUNT_POINT:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. docs/site-replication/run-multi-site-oidc.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
    minio server --address ":9001" --console-address ":10000" /tmp/minio1/{1...4} >/tmp/minio1_1.log 2>&1 &
    sleep 200
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/doc.go

    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
    is updated by the value in the index register.
    
    Examples:
    
    	MOVD (R3), R4		<=>	ld r4,0(r3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  6. src/net/dial_test.go

    			t.Fatal(err)
    		}
    
    		// The server should echo the line, and close the connection.
    		rb := bufio.NewReader(c)
    		line, err := rb.ReadString('\n')
    		if err != nil {
    			t.Fatal(err)
    		}
    		if line != message {
    			t.Errorf("got %q; want %q", line, message)
    		}
    		if _, err := rb.ReadByte(); err != io.EOF {
    			t.Errorf("got %v; want %v", err, io.EOF)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  7. docs/site-replication/run-multi-site-ldap.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
    minio server --config-dir /tmp/minio-ldap --address ":9001" /tmp/minio-ldap-idp1/{1...4} >/tmp/minio1_1.log 2>&1 &
    sleep 200
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 10.1K bytes
    - Viewed (2)
  8. 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)
  9. platforms/documentation/docs-asciidoctor-extensions-base/src/main/java/org/gradle/docs/asciidoctor/SampleIncludeProcessor.java

            map.put("gradle", "groovy");
            map.put("kt", "kotlin");
            map.put("kts", "kotlin");
            map.put("py", "python");
            map.put("sh", "bash");
            map.put("rb", "ruby");
            return Collections.unmodifiableMap(map);
        }
    
        @Override
        public boolean handles(String target) {
            return target.equals(SAMPLE);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 10:45:07 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    					// return the result
    					return rslt;
    				};
    				$.jstree._fn[i].old = val.old;
    				$.jstree._fn[i].plugin = pname;
    			});
    		},
    		rollback : function (rb) {
    			if(rb) {
    				if(!$.isArray(rb)) { rb = [ rb ]; }
    				$.each(rb, function (i, val) {
    					instances[val.i].set_rollback(val.h, val.d);
    				});
    			}
    		}
    	};
    	// set the prototype for all instances
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
Back to top