Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for jsonmerge (0.28 sec)

  1. pilot/pkg/config/kube/crdclient/client.go

    // Using istio/client-go directly will cache objects marshaled, allowing us to have cheap Get/List calls,
    // at the expense of some code gen.
    package crdclient
    
    import (
    	"fmt"
    	"sync"
    	"time"
    
    	jsonmerge "github.com/evanphx/json-patch/v5"
    	"go.uber.org/atomic"
    	"gomodules.xyz/jsonpatch/v2"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	klabels "k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/runtime"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    	MergeParallelList bool
    	// IgnoreUnmatchedNulls indicates if we should process the unmatched nulls.
    	IgnoreUnmatchedNulls bool
    }
    
    // The following code is adapted from github.com/openshift/origin/pkg/util/jsonmerge.
    // Instead of defining a Delta that holds an original, a patch and a set of preconditions,
    // the reconcile method accepts a set of preconditions as an argument.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
Back to top