Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 148 for Overlapping (0.25 sec)

  1. releasenotes/notes/45415-overlapping-wildcards.yaml

    issue:
      - 45415
    
    releaseNotes:
      - |
        **Fixed** a bug where overlapping wildcard hosts in a VirtualService would produce incorrect routing configuration when wildcard services were selected (e.g. in ServiceEntries).
    
    upgradeNotes:
      - title: Overlapping Wildcard Conflicts
        content: |
          This fix changes the behavior of overlapping wildcard hosts in VirtualService. Previously, the oldest VirtualService would take precedence
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Dec 09 14:22:50 UTC 2023
    - 786 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/build-cache/overlapping-outputs-timeline.png

    overlapping-outputs-timeline.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 94.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/build-cache/overlapping-outputs-input-comparison.png

    overlapping-outputs-input-comparison.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 63.7K bytes
    - Viewed (0)
  4. pkg/controller/servicecidrs/servicecidrs_controller_test.go

    				makeServiceCIDR("overlapping", "192.168.0.0/24", "2001:db2::/64"),
    				makeServiceCIDR("overlapping2", "192.168.0.0/26", "2001:db2::/96"),
    				makeServiceCIDR("unrelated", "10.0.0.0/24", ""),
    				makeServiceCIDR("unrelated2", "10.0.0.0/16", ""),
    			},
    			ip:   makeIPAddress("192.168.0.23"),
    			want: []string{defaultservicecidr.DefaultServiceCIDRName, "overlapping", "overlapping2"},
    		}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 22K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/rules/OverlappingOutputsIntegrationTest.groovy

                    delete second
                }
            """
            return [":first", file("build/overlap/first.txt"),
                    ":second", file("build/overlap/second.txt")]
        }
    
        def "overlapping output directory with first, second then first, second"() {
            def (String first, TestFile firstOutput,
            String second, TestFile secondOutput) = useOverlappingOutputDirectories()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:54:14 UTC 2024
    - 30K bytes
    - Viewed (0)
  6. src/cmd/trace/pprof.go

    			delete(tracking, id)
    
    			overlapping := pprofOverlappingDuration(gToIntervals, id, interval{startEv.Time(), ev.Time()})
    			if overlapping > 0 {
    				rec := stacks.getOrAdd(startEv.Stack())
    				rec.Count++
    				rec.Time += overlapping
    			}
    		}
    		return stacks.profile(), nil
    	}
    }
    
    // pprofOverlappingDuration returns the overlapping duration between
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/ExecutionOutputState.java

         */
        boolean isSuccessful();
    
        /**
         * Snapshots of the roots of output properties.
         *
         * In the presence of overlapping outputs this might be different from
         * {@link BeforeExecutionState#getOutputFileLocationSnapshots()},
         * as this does not include overlapping outputs not produced by the work.
         */
        ImmutableSortedMap<String, FileSystemSnapshot> getOutputFilesProducedByWork();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:29 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/OutputSnapshotUtil.java

    public class OutputSnapshotUtil {
    
        /**
         * Finds outputs that are still present since the last execution when overlapping outputs are present.
         *
         * Note: when there are no overlapping outputs, all outputs currently existing in the output locations
         * are considered outputs of the work.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. pkg/proxy/endpointslicecache_test.go

    					&BaseEndpointInfo{ip: "10.0.2.3", port: 80, endpoint: "10.0.2.3:80", isLocal: false, ready: true, serving: true, terminating: false},
    				},
    			},
    		},
    		// 2 slices, with some overlapping endpoints, result should be a union
    		// of the 2.
    		"2 overlapping slices, same port": {
    			namespacedName: types.NamespacedName{Name: "svc1", Namespace: "ns1"},
    			endpointSlices: []*discovery.EndpointSlice{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/union.go

    				}
    				continue // terms with interface types are not subject to the no-overlap rule
    			}
    
    			// Report overlapping (non-disjoint) terms such as
    			// a|a, a|~a, ~a|~a, and ~a|A (where under(A) == a).
    			if j := overlappingTerm(terms[:i], t); j >= 0 {
    				check.softErrorf(tlist[i], InvalidUnion, "overlapping terms %s and %s", t, terms[j])
    			}
    		}
    	}).describef(uexpr, "check term validity %s", uexpr)
    
    	return u
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 16:16:58 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top