Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 193 for overlapping (0.52 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. src/internal/types/testdata/fixedbugs/issue51607.go

    	_ interface{int | int /* ERROR "overlapping terms int and int" */ }
    	_ interface{int | ~ /* ERROR "overlapping terms ~int and int" */ int}
    	_ interface{~int | int /* ERROR "overlapping terms int and ~int" */ }
    	_ interface{~int | ~ /* ERROR "overlapping terms ~int and ~int" */ int}
    
    	_ interface{T1 | bool | string | T1 | bool /* ERROR "overlapping terms bool and bool" */ | string /* ERROR "overlapping terms string and string" */ }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. 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)
  7. src/internal/types/testdata/examples/constraints.go

    	union interface{int|~string}
    
    	// Union terms must describe disjoint (non-overlapping) type sets.
    	_ interface{int|int /* ERROR "overlapping terms int" */ }
    	_ interface{int|~ /* ERROR "overlapping terms ~int" */ int }
    	_ interface{~int|~ /* ERROR "overlapping terms ~int" */ int }
    	_ interface{~int|MyInt /* ERROR "overlapping terms p.MyInt and ~int" */ }
    	_ interface{int|any}
    	_ interface{int|~string|union}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/virtualservice_overlappingmatches.yaml

          method:
            exact: GET
        route:
        - destination:
            host: sample.foo.svc.cluster.local
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: overlapping-in-single-match
    spec:
      hosts:
      - sample.baz.svc.cluster.local
      http:
      - name: "send product to sample.foo"
        match:
        - uri:
            prefix: "/api/v1/product"
          method:
            exact: GET
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top