Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for MergingList (0.19 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

              mergingList:
                - name: 2
                - name: 1
      - description: sort very nested list of maps
        fieldTypes:
        original:
          mergingList:
            - mergingList:
                - mergingList:
                    - name: 2
                    - name: 1
        sorted:
          mergingList:
            - mergingList:
                - mergingList:
                    - name: 1
                    - name: 2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/testdata/swagger-merge-item-v3.json

                "type": "string"
              },
              "other": {
                "description": "Other field.",
                "type": "string"
              },
              "mergingList": {
                "description": "MergingList field.",
                "type": "array",
                "items": {
                  "default": {},
                  "allOf": [
                    {"$ref": "#/components/schemas/mergeItem"}
                  ]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/testdata/swagger-merge-item.json

              "description": "Value field.",
              "type": "string"
            },
            "other": {
              "description": "Other field.",
              "type": "string"
            },
            "mergingList": {
              "description": "MergingList field.",
              "type": "array",
              "items": {
                "$ref": "#/definitions/mergeItem"
              },
              "x-kubernetes-patch-merge-key": "name",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 20 22:35:14 UTC 2017
    - 4.7K bytes
    - Viewed (0)
  4. src/mdo/merger.vm

            if (src.isEmpty()) {
                return tgt;
            }
    
            MergingList<T> list;
            if (tgt instanceof MergingList) {
                list = (MergingList<T>) tgt;
            } else {
                list = new MergingList<>(computer, src.size() + tgt.size());
                list.mergeAll(tgt, (t, s) -> s);
            }
    
            list.mergeAll(src, remapping);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Sep 05 16:06:44 UTC 2023
    - 12.2K bytes
    - Viewed (0)
Back to top