Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 57 for Overlapping (0.19 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/config/analysis/analyzers/testdata/telemetry-selector.yaml

    ---
    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: overlap-1
      namespace: default
    spec:
      selector:
        matchLabels:
          app: ratings-app # Multiple telemetries select overlapping workloads, should generate errors for both
      metrics:
        - providers:
            - name: prometheus
          overrides:
            - match:
                metric: ALL_METRICS
              disabled: false
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 06:56:06 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. src/compress/flate/dict_decoder.go

    	dstBase := dd.wrPos
    	dstPos := dstBase
    	srcPos := dstPos - dist
    	endPos := dstPos + length
    	if endPos > len(dd.hist) {
    		endPos = len(dd.hist)
    	}
    
    	// Copy non-overlapping section after destination position.
    	//
    	// This section is non-overlapping in that the copy length for this section
    	// is always less than or equal to the backwards distance. This can occur
    	// if a distance refers to data that wraps-around in the buffer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6K bytes
    - Viewed (0)
  8. releasenotes/notes/inbound-cluster-rename.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: bug-fix
    issue:
    - 29199
    
    releaseNotes:
    - |
      **Fixed** a regression in Istio 1.8.0 causing workloads with multiple Services with overlapping ports to send
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 02 16:23:59 UTC 2020
    - 232 bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/typeinst1.go

    	~rune
    }
    
    // Type sets may contain each type at most once.
    type _ interface {
    	~int|~ /* ERROR "overlapping terms ~int" */ int
    	~int|int /* ERROR "overlapping terms int" */
    	int|int /* ERROR "overlapping terms int" */
    }
    
    type _ interface {
    	~struct{f int} | ~struct{g int} | ~ /* ERROR "overlapping terms" */ struct{f int}
    }
    
    // Interface term lists can contain any type, incl. *Named types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/sidecar-selector.yaml

        labels:
          app: ratings-app # Multiple sidecars select overlapping workloads, should generate errors for both
      egress:
      - hosts:
        - "./*"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: overlap-2
      namespace: default
    spec:
      workloadSelector:
        labels:
          myapp: ratings-myapp # Multiple sidecars select overlapping workloads, should generate errors for both
      egress:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 2.3K bytes
    - Viewed (0)
Back to top