Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for patching (0.44 sec)

  1. platforms/software/dependency-management/build.gradle.kts

        doFirst {
            // On daemon crash, read-only cache tests can leave read-only files around.
            // clean now takes care of those files as well
            testFiles.get().asFileTree.matching {
                include("**/read-only-cache/**")
            }.visit { this.file.setWritable(true) }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. pilot/pkg/model/destination_rule.go

    				// if the selectors do not match
    				continue
    			}
    			// If both the destination rules are without a workload selector or with matching workload selectors, simply merge them.
    			// If the incoming rule has a workload selector, it has to be merged with the existing rules with workload selector, and
    			// at the same time added as a unique entry in the processedDestRules.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 07:22:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. pilot/pkg/xds/deltatest.go

    	for _, c := range current {
    		n := newByName[c.Name]
    		if n == nil {
    			// We had a resource, but SotW didn't generate it.
    			if watched.Contains(c.Name) {
    				// We only need to delete it if Envoy is watching. Otherwise, it may have simply unsubscribed
    				wantDeleted.Insert(c.Name)
    			}
    		} else if diff := cmp.Diff(c.Resource, n.Resource, protocmp.Transform()); diff != "" {
    			// Resource was modified
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. pilot/pkg/model/envoyfilter.go

    		} else if cp.Match.Proxy != nil && cp.Match.Proxy.ProxyVersion != "" {
    			// Attempt to convert regex to a simple prefix match for the common case of matching
    			// a standard Istio version. This field should likely be replaced with semver, but for now
    			// we can workaround the performance impact of regex
    			if prefix, f := wellKnownVersions[cp.Match.Proxy.ProxyVersion]; f {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 13:57:28 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/release/notes-template.md

    <a name="FILL-IN-KEY-AREA"></a>
    ### FILL-IN-KEY-AREA improvements
    
    <<<FILL IN CONTEXT FOR KEY AREA>>>
    Example:
    > The [configuration cache](userguide/configuration_cache.html) improves build performance by caching the result of
    > the configuration phase. Using the configuration cache, Gradle can skip the configuration phase entirely when
    > nothing that affects the build configuration has changed.
    
    #### FILL-IN-FEATURE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 14:04:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. common/Makefile.common.mk

    tidy-docker:
    	@docker image prune --all --force --filter="label=io.istio.repo=https://github.com/istio/tools" --filter="label!=io.istio.version=$(IMAGE_VERSION)"
    
    # help works by looking over all Makefile includes matching `target: ## comment` regex and outputting them
    help: ## Show this help
    	@egrep -h '^[a-zA-Z_\.-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort  | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. common/scripts/setup_env.sh

      IMG="$(<<<"$latest" cut -d~ -f2)"
      if [[ "${IMG}" == "" ]]; then
        echo "Attempted to use LATEST_CACHED_IMAGE, but found no images matching ${query}" >&2
        exit 1
      fi
      echo "Using cached image $IMG, created $(<<<"$latest" cut -d~ -f3)" >&2
    fi
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. cmd/batch-job-common-types.go

    func (b BatchJobYamlErr) Error() string {
    	return fmt.Sprintf("%s\n Hint: error near line: %d, col: %d", b.msg, b.line, b.col)
    }
    
    // BatchJobKV is a key-value data type which supports wildcard matching
    type BatchJobKV struct {
    	line, col int
    	Key       string `yaml:"key" json:"key"`
    	Value     string `yaml:"value" json:"value"`
    }
    
    var _ yaml.Unmarshaler = &BatchJobKV{}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration.go

    	Name = names.TaintToleration
    	// preScoreStateKey is the key in CycleState to TaintToleration pre-computed data for Scoring.
    	preScoreStateKey = "PreScore" + Name
    	// ErrReasonNotMatch is the Filter reason status when not matching.
    	ErrReasonNotMatch = "node(s) had taints that the pod didn't tolerate"
    )
    
    // Name returns name of the plugin. It is used in logs, etc.
    func (pl *TaintToleration) Name() string {
    	return Name
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top