Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 98 for patching (0.18 sec)

  1. src/cmd/go/alldocs.go

    //	    element in the sequence, if any. Possible parents of matches
    //	    are run with b.N=1 to identify sub-benchmarks. For example,
    //	    given -bench=X/Y, top-level benchmarks matching X are run
    //	    with b.N=1 to find any sub-benchmarks matching Y, which are
    //	    then run in full.
    //
    //	-benchtime t
    //	    Run enough iterations of each benchmark to take t, specified
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. pkg/controller/job/job_controller.go

    	jm.updateStatusHandler = jm.updateJobStatus
    	jm.patchJobHandler = jm.patchJob
    	jm.syncHandler = jm.syncJob
    
    	metrics.Register()
    
    	return jm, nil
    }
    
    // Run the main goroutine responsible for watching and syncing jobs.
    func (jm *Controller) Run(ctx context.Context, workers int) {
    	defer utilruntime.HandleCrash()
    	logger := klog.FromContext(ctx)
    
    	// Start events processing pipeline.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    	Namespaces krt.Collection[*v1.Namespace],
    	o metav1.ObjectMeta,
    ) *Waypoint {
    	// namespace to be used when the annotation doesn't include a namespace
    	fallbackNamespace := o.Namespace
    	// try fetching the waypoint defined on the object itself
    	wp, isNone := getUseWaypoint(o, fallbackNamespace)
    	if isNone {
    		// we've got a local override here opting out of waypoint
    		return nil
    	}
    	if wp != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. 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)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

            waitForChangesToBePickedUpBeforeExecution();
        }
    
        private void waitForChangesToBePickedUpBeforeExecution() {
            // File system watching is now on by default, so we need to wait for changes to be picked up before each execution.
            beforeExecute(executer -> {
                try {
                    FileSystemWatchingHelper.waitForChangesToBePickedUp();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. subprojects/core/build.gradle.kts

        api(project(":enterprise-logging"))
        api(project(":enterprise-operations"))
        api(project(":execution"))
        api(project(":file-collections"))
        api(project(":file-temp"))
        api(project(":file-watching"))
        api(project(":files"))
        api(project(":functional"))
        api(project(":hashing"))
        api(project(":internal-instrumentation-api"))
        api(project(":jvm-services"))
        api(project(":logging"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. 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)
Back to top