Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 412 for patched (0.27 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/generic/matcher.go

    Dr. Stefan Schimanski <******@****.***> 1486027168 +0100
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 03 06:33:43 UTC 2017
    - 1.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/envoyfilter/cluster_patch.go

    func InsertedClusters(pctx networking.EnvoyFilter_PatchContext, efw *model.EnvoyFilterWrapper) []*cluster.Cluster {
    	if efw == nil {
    		return nil
    	}
    	var result []*cluster.Cluster
    	// Add cluster if the operation is add, and patch context matches
    	for _, cp := range efw.Patches[networking.EnvoyFilter_CLUSTER] {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/functional/src/main/java/org/gradle/internal/serialization/Cached.java

     * whose result must be cached even (or specially) at serialization time.
     *
     * @param <T> the resulting type
     */
    public abstract class Cached<T> {
    
        public static <T> Cached<T> of(Callable<T> computation) {
            return new Deferred<>(computation);
        }
    
        public abstract T get();
    
        private static class Deferred<T> extends Cached<T> implements java.io.Serializable {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/utils/fake_quant_utils.h

      bool operator()(TFFakeQuantOp tf_op, AttrType &min_value,
                      AttrType &max_value) const {
        min_value = tf_op.getMinAttr();
        max_value = tf_op.getMaxAttr();
        return true;  // Successfully matched and fetched.
      }
    };
    
    template <class TFFakeQuantOp>
    struct FetchConstantMinMaxInputs {
      using AttrType = DenseFPElementsAttr;
      bool operator()(TFFakeQuantOp tf_op, AttrType &min_value,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. pkg/test/framework/resource/matcher.go

    	"regexp"
    	"strconv"
    	"strings"
    )
    
    // testFilter is a regex matcher on a test. It is split by / following go subtest format
    type testFilter []*regexp.Regexp
    
    type Matcher struct {
    	filters []testFilter
    }
    
    // NewMatcher reimplements the logic of Go's -test.run. The code is mostly directly copied from Go's source.
    func NewMatcher(regexs []string) (*Matcher, error) {
    	filters := []testFilter{}
    	for _, regex := range regexs {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 12 23:30:37 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  6. cni/pkg/nodeagent/cni-watcher.go

    John Howard <******@****.***> 1717709495 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/types/patch.go

    // Similarly to above, these are constants to support HTTP PATCH utilized by
    // both the client and server that didn't make sense for a whole package to be
    // dedicated to.
    type PatchType string
    
    const (
    	JSONPatchType           PatchType = "application/json-patch+json"
    	MergePatchType          PatchType = "application/merge-patch+json"
    	StrategicMergePatchType PatchType = "application/strategic-merge-patch+json"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 04 21:51:48 UTC 2019
    - 1K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/options/constant.go

    	CertificateRenewal = "certificate-renewal"
    
    	// EtcdUpgrade flag instructs kubeadm to execute etcd upgrade during upgrades
    	EtcdUpgrade = "etcd-upgrade"
    
    	// Patches flag sets the folder where kubeadm component patches are stored
    	Patches = "patches"
    
    	// PrintManifest flag instructs kubeadm to print the addon manifests to STDOUT instead of installing them.
    	PrintManifest = "print-manifest"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/plugin/pkg/audit/buffered/buffered.go

    	// MaxBatchSize defines maximum size of a batch.
    	MaxBatchSize int
    	// MaxBatchWait indicates the maximum interval between two batches.
    	MaxBatchWait time.Duration
    
    	// ThrottleEnable defines whether throttling will be applied to the batching process.
    	ThrottleEnable bool
    	// ThrottleQPS defines the allowed rate of batches per second sent to the delegate backend.
    	ThrottleQPS float32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/list_perm.txt

    ! stdout '^example.com/noread$'
    ! stderr 'matched no packages'
    
    ! go list example.com/noread
    ! stdout '^example.com/noread$'
    ! stderr 'matched no packages'
    
    # Check filesystem-relative patterns.
    
    ! go list ./...
    ! stdout '^example.com/noread$'
    ! stderr 'matched no packages'
    stderr '^pattern ./...: '
    
    ! go list ./noread/...
    ! stdout '^example.com/noread$'
    ! stderr 'matched no packages'
    stderr '^pattern ./noread/...: '
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.9K bytes
    - Viewed (0)
Back to top