Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 188 for Overlapping (0.26 sec)

  1. 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)
  2. 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)
  3. tensorflow/cc/gradients/nn_grad.cc

      bool overlapping;
      TF_RETURN_IF_ERROR(
          GetNodeAttr(op.output(0).node()->attrs(), "overlapping", &overlapping));
      auto dx = internal::FractionalAvgPoolGrad(
          scope, Shape(scope, op.input(0), Shape::OutType(DT_INT64)),
          grad_inputs[0], op.output(1), op.output(2),
          internal::FractionalAvgPoolGrad::Overlapping(overlapping));
      grad_outputs->push_back(dx);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 23:34:33 UTC 2022
    - 24.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. releasenotes/notes/vhost-name-generation.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 35676
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 08 17:49:24 UTC 2021
    - 225 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_go_version_mixed.txt

    module m
    go 1.14
    
    -- sub/sub.go --
    package sub
    
    // signed shift counts added in Go 1.13
    func F(l, r int) int { return l << r }
    
    type m1 interface { M() }
    type m2 interface { M() }
    
    // overlapping interfaces added in Go 1.14
    type Alias = interface { m1; m2; M() }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 08 21:27:51 UTC 2019
    - 646 bytes
    - Viewed (0)
  10. 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)
Back to top