Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 40 for mapLit (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/common/equality.go

    	// Cached comparison result of DeepEqual of `value` and `thunk.oldValue`
    	comparisonResult *bool
    
    	// Cached map representation of a map-type list, or nil if not map-type list
    	mapList MapList
    
    	// Children spawned by a call to `Validate` on this object
    	// key is either a string or an index, depending upon whether `value` is
    	// a map or a list, respectively.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 21:53:21 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/maplist_test.go

    				"ki": int64(42),
    				"ks": "hello",
    				"v1": "b",
    			},
    		},
    	} {
    		t.Run(tc.name, func(t *testing.T) {
    			mapList := makeMapList(&tc.sts, tc.items)
    			for _, warmUp := range tc.warmUpQueries {
    				mapList.Get(warmUp)
    			}
    			actual := mapList.Get(tc.query)
    			if !reflect.DeepEqual(tc.expected, actual) {
    				t.Errorf("got: %v, expected %v", actual, tc.expected)
    			}
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 18:08:11 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. cmd/local-locker.go

    						for idx := 0; idx < maxDeleteList; idx++ {
    							mapID := formatUUID(uid, idx)
    							if _, ok := l.lockUID[mapID]; !ok {
    								break
    							}
    							delete(l.lockUID, mapID)
    						}
    						continue
    					}
    					l.removeEntry(resource, dsync.LockArgs{UID: uid}, &lris)
    				}
    			}
    			return true, nil
    		}
    
    		idx := 0
    		for {
    			mapID := formatUUID(args.UID, idx)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 19 22:54:46 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. src/compress/lzw/writer.go

    func (w *Writer) Write(p []byte) (n int, err error) {
    	if w.err != nil {
    		return 0, w.err
    	}
    	if len(p) == 0 {
    		return 0, nil
    	}
    	if maxLit := uint8(1<<w.litWidth - 1); maxLit != 0xff {
    		for _, x := range p {
    			if x > maxLit {
    				w.err = errors.New("lzw: input byte too large for the litWidth")
    				return 0, w.err
    			}
    		}
    	}
    	n = len(p)
    	code := w.savedCode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. test/gcgort.go

    	case a.arrayT == nil:
    		return errors.New(a.name + " missing arrayT")
    	case a.sliceT == nil:
    		return errors.New(a.name + " missing sliceT")
    	case a.mapT == nil:
    		return errors.New(a.name + " missing mapT")
    	case a.mapPointerKeyT == nil:
    		return errors.New(a.name + " missing mapPointerKeyT")
    	case a.chanT == nil:
    		return errors.New(a.name + " missing chanT")
    	case a.interfaceT == nil:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 08 21:15:48 UTC 2018
    - 34.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/openapi/adaptor.go

    func SchemaDeclType(s *spec.Schema, isResourceRoot bool) *apiservercel.DeclType {
    	return common.SchemaDeclType(&Schema{Schema: s}, isResourceRoot)
    }
    
    func MakeMapList(sts *spec.Schema, items []interface{}) (rv common.MapList) {
    	return common.MakeMapList(&Schema{Schema: sts}, items)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 10 21:26:55 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. src/encoding/gob/debug.go

    		fmt.Fprintf(os.Stderr, "%selemid %d\n", indent+1, wire.ArrayT.Elem)
    	case wire.MapT != nil:
    		deb.printCommonType(indent, "map", &wire.MapT.CommonType)
    		fmt.Fprintf(os.Stderr, "%skey id=%d\n", indent+1, wire.MapT.Key)
    		fmt.Fprintf(os.Stderr, "%selem id=%d\n", indent+1, wire.MapT.Elem)
    	case wire.SliceT != nil:
    		deb.printCommonType(indent, "slice", &wire.SliceT.CommonType)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 09:34:41 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  8. src/encoding/gob/decode.go

    			op = func(i *decInstr, state *decoderState, value reflect.Value) {
    				state.dec.ignoreArray(state, *elemOp, wire.ArrayT.Len)
    			}
    
    		case wire.MapT != nil:
    			keyId := dec.wireType[wireId].MapT.Key
    			elemId := dec.wireType[wireId].MapT.Elem
    			keyOp := dec.decIgnoreOpFor(keyId, inProgress, depth+1)
    			elemOp := dec.decIgnoreOpFor(elemId, inProgress, depth+1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
  9. src/encoding/gob/type.go

    		return unknown
    	}
    	switch {
    	case w.ArrayT != nil:
    		return w.ArrayT.Name
    	case w.SliceT != nil:
    		return w.SliceT.Name
    	case w.StructT != nil:
    		return w.StructT.Name
    	case w.MapT != nil:
    		return w.MapT.Name
    	case w.GobEncoderT != nil:
    		return w.GobEncoderT.Name
    	case w.BinaryMarshalerT != nil:
    		return w.BinaryMarshalerT.Name
    	case w.TextMarshalerT != nil:
    		return w.TextMarshalerT.Name
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ir/fmt.go

    	OCOPY:             8,
    	ODELETE:           8,
    	OGETG:             8,
    	OLEN:              8,
    	OLITERAL:          8,
    	OMAKESLICE:        8,
    	OMAKESLICECOPY:    8,
    	OMAKE:             8,
    	OMAPLIT:           8,
    	OMAX:              8,
    	OMIN:              8,
    	ONAME:             8,
    	ONEW:              8,
    	ONIL:              8,
    	ONONAME:           8,
    	OPANIC:            8,
    	OPAREN:            8,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
Back to top