Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for rs1 (0.02 sec)

  1. src/cmd/internal/obj/riscv/obj.go

    			shift1, shift2 = shift2, shift1
    		}
    		return []*instruction{
    			&instruction{as: ASUB, rs1: REG_ZERO, rs2: ins.rs2, rd: REG_TMP},
    			&instruction{as: shift2, rs1: ins.rs1, rs2: REG_TMP, rd: REG_TMP},
    			&instruction{as: shift1, rs1: ins.rs1, rs2: ins.rs2, rd: ins.rd},
    			&instruction{as: AOR, rs1: REG_TMP, rs2: ins.rd, rd: ins.rd},
    		}
    
    	case ARORI, ARORIW:
    		// ROR -> OR (SLLI -x y) (SRLI x y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/podtopologyspread/scoring_test.go

    			},
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node-a").Label("planet", "mars").Obj(),
    			},
    			objs: []runtime.Object{
    				&appsv1.ReplicaSet{ObjectMeta: metav1.ObjectMeta{Namespace: "default", Name: "rs1"}, Spec: appsv1.ReplicaSetSpec{Selector: st.MakeLabelSelector().Exists("tar").Obj()}},
    			},
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			_, ctx := ktesting.NewTestContext(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 60K bytes
    - Viewed (0)
  3. pkg/controller/replicaset/replica_set_test.go

    	fakeHandler.ValidateRequestCount(t, 2)
    }
    
    func TestGetReplicaSetsWithSameController(t *testing.T) {
    	someRS := newReplicaSet(1, map[string]string{"foo": "bar"})
    	someRS.Name = "rs1"
    	relatedRS := newReplicaSet(1, map[string]string{"foo": "baz"})
    	relatedRS.Name = "rs2"
    	unrelatedRS := newReplicaSet(1, map[string]string{"foo": "quux"})
    	unrelatedRS.Name = "rs3"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
Back to top