Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for v$1 (0.04 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    					[]interface{}{
    						map[string]interface{}{"k": "a", "v": "1"},
    						map[string]interface{}{"k": "b", "v": "2"},
    					},
    					[]interface{}{
    						map[string]interface{}{"k": "b", "v": "2"},
    						map[string]interface{}{"k": "a", "v": "1"},
    					},
    					[]interface{}{
    						map[string]interface{}{"k": "b", "v": "3"},
    						map[string]interface{}{"k": "a", "v": "1"},
    					},
    					[]interface{}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  2. src/reflect/all_test.go

    	// slice to array
    	{V([]byte(nil)), V([0]byte{})},
    	{V([]byte{}), V([0]byte{})},
    	{V([]byte{1}), V([1]byte{1})},
    	{V([]byte{1, 2}), V([2]byte{1, 2})},
    	{V([]byte{1, 2, 3}), V([3]byte{1, 2, 3})},
    	{V(MyBytes([]byte(nil))), V([0]byte{})},
    	{V(MyBytes{}), V([0]byte{})},
    	{V(MyBytes{1}), V([1]byte{1})},
    	{V(MyBytes{1, 2}), V([2]byte{1, 2})},
    	{V(MyBytes{1, 2, 3}), V([3]byte{1, 2, 3})},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/proxier_test.go

    	remainingVirtualServers, _ := fp.ipvs.GetVirtualServers()
    	if len(remainingVirtualServers) != 1 {
    		t.Errorf("Expected number of remaining IPVS services after cleanup to be %v. Got %v", 1, len(remainingVirtualServers))
    	}
    
    	if remainingVirtualServers[0] != currentServices["ipvs2"] {
    		t.Logf("actual virtual server: %v", remainingVirtualServers[0])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

          "tf_saved_model.global_tensor"() { sym_name = "v" ... }
          func @f(%arg0 {tf_saved_model.bound_input = @v}) {
            %1 = "tf.ReadVariableOp"(%arg0)
            ...
          }
    
          to
    
          func @f(%arg0 {tf_saved_model.bound_input = @v}) {
            %0 = "tf.VarHandleOp"(sym_name = "v")
            %1 = "tf.ReadVariableOp"(%0)
            ...
          }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm64/asm7.go

    	}
    	if v > 0xfff000+0xfff<<shift {
    		return 0, 0, fmt.Errorf("%d is too large for a scaled 24 bit unsigned immediate", v)
    	}
    	if v&((1<<shift)-1) != 0 {
    		return 0, 0, fmt.Errorf("%d is not a multiple of %d", v, 1<<shift)
    	}
    	lo := (v >> shift) & 0xfff
    	hi := v - (lo << shift)
    	if hi > 0xfff000 {
    		hi = 0xfff000
    		lo = (v - hi) >> shift
    	}
    	if hi & ^0xfff000 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  6. pkg/volume/util/operationexecutor/operation_generator.go

    					nodeName,
    					areAttachedErr)
    				continue
    			}
    
    			for spec, check := range attached {
    				if !check {
    					actualStateOfWorld.MarkVolumeAsDetached(volumeSpecMap[spec], nodeName)
    					klog.V(1).Infof("VerifyVolumesAreAttached determined volume %q (spec.Name: %q) is no longer attached to node %q, therefore it was marked as detached.",
    						volumeSpecMap[spec], spec.Name(), nodeName)
    				}
    			}
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/tests/opens2s_gnmt_mixed_precision.pbtxt.gz

    ޻�4�4�����󊎾���sL�Wջ�U�~/^U5$H���|�帞$� *��� �}J��w_�מM{a�ꦯ%�g�y���O��W�����O� �����$�?��������g�kx-�c���֮��kk�x��ܫ��8�q7����9��7���^�sPC��2�n�=�-������`������S5�~!a������+�=��ߤ!�f Ӱ~3���J0ؾ��]*�j- �-n�5���� ���WT;3b+����K�*�uӞ�� �V�.)�1���L��kN���kq_��T��[���2�iT^��Y��#]ӐiEq�^����]�]/�K��+�u���u�����:��z����z!��=�.�/�J���3�E��D������f���LSȳ��[������-_Fs�f3���0e����g$Ψ\&$U!������i�q>&�q�c�������D�����9{O�3v��7{�:=�����σ���N�a��C\ #xx��S䦁���J=_j� QV>2��x�...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 18:14:27 UTC 2019
    - 195.5K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/ppc64/asm9.go

    			v = 0xff
    		} else if p.To.Offset != 0 { // MOVFL gpr, constant
    			v = uint32(p.To.Offset)
    		} else { // p.To.Reg == REG_CRx
    			v = 1 << uint(7-(p.To.Reg&7))
    		}
    		// Use mtocrf form if only one CR field moved.
    		if bits.OnesCount32(v) == 1 {
    			v |= 1 << 8
    		}
    
    		o1 = AOP_RRR(OP_MTCRF, uint32(p.From.Reg), 0, 0) | uint32(v)<<12
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/s390x/asmz.go

    			if (v & 1) != 0 {
    				c.ctxt.Diag("cannot use LARL with odd offset: %v", v)
    			}
    		} else {
    			c.addrilreloc(p.From.Sym, int64(v))
    			v = 0
    		}
    		zRIL(_b, op_LARL, uint32(p.To.Reg), uint32(v>>1), asm)
    
    	case 86: // load address
    		d := c.vregoff(&p.From)
    		x := p.From.Index
    		b := p.From.Reg
    		if b == 0 {
    			b = REGSP
    		}
    		switch p.As {
    		case ALA:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet.go

    	if !ok {
    		// If the pod no longer exists, ignore the update.
    		klog.V(4).InfoS("SyncLoop (probe): ignore irrelevant update", "probe", probe, "status", status, "update", update)
    		return
    	}
    	klog.V(1).InfoS("SyncLoop (probe)", "probe", probe, "status", status, "pod", klog.KObj(pod))
    	handler.HandlePodSyncs([]*v1.Pod{pod})
    }
    
    // HandlePodAdditions is the callback in SyncHandler for pods being added from
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top