Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 339 for ctr1 (0.05 sec)

  1. plugin/pkg/admission/alwayspullimages/admission_test.go

    				{Name: "init4", Image: "image", ImagePullPolicy: api.PullAlways},
    			},
    			Containers: []api.Container{
    				{Name: "ctr1", Image: "image"},
    				{Name: "ctr2", Image: "image", ImagePullPolicy: api.PullNever},
    				{Name: "ctr3", Image: "image", ImagePullPolicy: api.PullIfNotPresent},
    				{Name: "ctr4", Image: "image", ImagePullPolicy: api.PullAlways},
    			},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 30 22:59:57 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  2. pkg/registry/core/pod/storage/storage_test.go

    					Containers: []api.Container{
    						{Name: "ctr1"},
    						{Name: "ctr2", Ports: []api.ContainerPort{{ContainerPort: 9376}}},
    					},
    				},
    				Status: api.PodStatus{PodIPs: []api.PodIP{{IP: expectedIP}}},
    			},
    			query:    "foo",
    			location: expectedIP + ":9376",
    		},
    		{
    			pod: api.Pod{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo"},
    				Spec: api.PodSpec{
    					Containers: []api.Container{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 07:18:44 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  3. src/crypto/cipher/ctr.go

    func (x *ctr) refill() {
    	remain := len(x.out) - x.outUsed
    	copy(x.out, x.out[x.outUsed:])
    	x.out = x.out[:cap(x.out)]
    	bs := x.b.BlockSize()
    	for remain <= len(x.out)-bs {
    		x.b.Encrypt(x.out[remain:], x.ctr)
    		remain += bs
    
    		// Increment counter
    		for i := len(x.ctr) - 1; i >= 0; i-- {
    			x.ctr[i]++
    			if x.ctr[i] != 0 {
    				break
    			}
    		}
    	}
    	x.out = x.out[:remain]
    	x.outUsed = 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/doc.go

    	BC 12, 2, target		<=>	beq cr0, target
    	BC 12, 5, target		<=>	bgt cr1, target
    	BC 12, 30, target		<=>	beq cr7, target
    	BC 4, 6, target		<=>	bne cr1, target
    	BC 4, 1, target		<=>	ble cr1, target
    
    	The following extended opcodes are available for ease of use and readability:
    
    	BNE CR2, target		<=>	bne cr2, target
    	BEQ CR4, target		<=>	beq cr4, target
    	BLT target			<=>	blt target (cr0 default)
    	BGE CR7, target		<=>	bge cr7, target
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  5. src/crypto/aes/asm_ppc64x.s

    #endif
    
    	// Assume len > 0 && len % blockSize == 0.
    	CMPW	ENC, $0
    	P8_LXVB16X(IVP, R0, IVEC)
    	CMPU	ROUNDS, $10, CR1
    	CMPU	ROUNDS, $12, CR2 // Only sizes 10/12/14 are supported.
    
    	// Setup key in VSRs, and set loop count in CTR.
    	LOAD_KEY(KEYP)
    	SRD	$4, LEN
    	MOVD	LEN, CTR
    
    	BEQ	Lcbc_dec
    
    	PCALIGN $16
    Lcbc_enc:
    	P8_LXVB16X(INP, R0, INOUT)
    	ADD	$16, INP
    	VXOR	INOUT, V6, INOUT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/convert_control_to_data_outputs.mlir

      %graph:3 = tf_executor.graph {
        // CHECK: {{.*}}, [[ctrl1:%.*]] = tf_executor.island wraps "tf.Identity"
        // CHECK: {{.*}}, [[ctrl2:%.*]] = tf_executor.island wraps "tf.Identity"
        // CHECK: "tf.Identity"
        %key, %key_control = tf_executor.island wraps "tf.Const"() {value = dense<"">: !tf_str} : () -> !tf_str
        // CHECK: [[exe_ctrl1:%.*]] = tf_executor.island([[ctrl1]]) wraps "tf.TPUExecuteAndUpdateVariables"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 18:35:00 UTC 2024
    - 68.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/x86/x86asm/plan9x.go

    	CS:   "CS",
    	SS:   "SS",
    	DS:   "DS",
    	ES:   "ES",
    	FS:   "FS",
    	GS:   "GS",
    	GDTR: "GDTR",
    	IDTR: "IDTR",
    	LDTR: "LDTR",
    	MSW:  "MSW",
    	TASK: "TASK",
    	CR0:  "CR0",
    	CR1:  "CR1",
    	CR2:  "CR2",
    	CR3:  "CR3",
    	CR4:  "CR4",
    	CR5:  "CR5",
    	CR6:  "CR6",
    	CR7:  "CR7",
    	CR8:  "CR8",
    	CR9:  "CR9",
    	CR10: "CR10",
    	CR11: "CR11",
    	CR12: "CR12",
    	CR13: "CR13",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  8. pkg/kubelet/pod/testing/mock_manager.go

    type MockManager struct {
    	ctrl     *gomock.Controller
    	recorder *MockManagerMockRecorder
    }
    
    // MockManagerMockRecorder is the mock recorder for MockManager.
    type MockManagerMockRecorder struct {
    	mock *MockManager
    }
    
    // NewMockManager creates a new mock instance.
    func NewMockManager(ctrl *gomock.Controller) *MockManager {
    	mock := &MockManager{ctrl: ctrl}
    	mock.recorder = &MockManagerMockRecorder{mock}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. pkg/kubelet/status/testing/mock_pod_status_provider.go

    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "GetMirrorPodByPod", arg0)
    	ret0, _ := ret[0].(*v1.Pod)
    	ret1, _ := ret[1].(bool)
    	return ret0, ret1
    }
    
    // GetMirrorPodByPod indicates an expected call of GetMirrorPodByPod.
    func (mr *MockPodManagerMockRecorder) GetMirrorPodByPod(arg0 any) *gomock.Call {
    	mr.mock.ctrl.T.Helper()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. pkg/kubelet/cadvisor/testing/cadvisor_mock.go

    type MockInterface struct {
    	ctrl     *gomock.Controller
    	recorder *MockInterfaceMockRecorder
    }
    
    // MockInterfaceMockRecorder is the mock recorder for MockInterface.
    type MockInterfaceMockRecorder struct {
    	mock *MockInterface
    }
    
    // NewMockInterface creates a new mock instance.
    func NewMockInterface(ctrl *gomock.Controller) *MockInterface {
    	mock := &MockInterface{ctrl: ctrl}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top