Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 109 for deduplicated (0.17 sec)

  1. releasenotes/notes/36806.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 36805
    releaseNotes:
      - |
        **Fixed** an issue that if duplicated cipher suites configured in Gateway, it will be pushed to Envoy configuration. With this fix, duplicated cipher
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 02 19:51:18 UTC 2022
    - 302 bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/CompilationStateSerializer.java

            fileSerializer = new BaseSerializerFactory().getSerializerFor(File.class);
        }
    
        @Override
        public CompilationState read(Decoder decoder) throws Exception {
            // Deduplicates the include file states, as these are often shared between source files
            Map<Integer, IncludeFileEdge> ids = new HashMap<Integer, IncludeFileEdge>();
            int sourceFileCount = decoder.readSmallInt();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. pilot/pkg/networking/plugin/authn/util_test.go

    )
    
    func TestTrustDomainsForValidation(t *testing.T) {
    	tests := []struct {
    		name       string
    		meshConfig *meshconfig.MeshConfig
    		want       []string
    	}{
    		{
    			name: "No duplicated trust domain in mesh config",
    			meshConfig: &meshconfig.MeshConfig{
    				TrustDomain:        "cluster.local",
    				TrustDomainAliases: []string{"alias-1.domain", "some-other-alias-1.domain", "alias-2.domain"},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 16:11:07 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. doc/next/6-stdlib/2-unique.md

    `Make[T]` function, which produces a reference to a canonical copy of
    the value in the form of a `Handle[T]`.
    Two `Handle[T]` are equal if and only if the values used to produce the
    handles are equal, allowing programs to deduplicate values and reduce
    their memory footprint.
    Comparing two `Handle[T]` values is efficient, reducing down to a simple
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:13 UTC 2024
    - 566 bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/ActionsTest.groovy

            }
    
            when:
            def set = Actions.set(b, a)
            set.execute(called)
    
            then:
            called == ['b', 'a']
        }
    
        def "deduplicates entries"() {
            given:
            def called = []
            Action<?> a = Mock() {
                execute(_) >> { args -> args[0] << 'a' }
            }
            Action<?> b = Mock() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. releasenotes/notes/48595.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 22:21:47 UTC 2024
    - 161 bytes
    - Viewed (0)
  7. releasenotes/notes/49965.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 49965
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 22 04:25:21 UTC 2024
    - 192 bytes
    - Viewed (0)
  8. test/directive2.go

    type (
    	T4 int
    )
    
    //go:noinline // ERROR "misplaced compiler directive"
    type ()
    
    type T5 int
    
    func g() {} //go:noinline // ERROR "misplaced compiler directive"
    
    // ok: attached to f (duplicated yes, but ok)
    //go:noinline
    
    //go:noinline
    func f() {
    	//go:noinline // ERROR "misplaced compiler directive"
    	x := 1
    
    	//go:noinline // ERROR "misplaced compiler directive"
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 06:22:23 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  9. releasenotes/notes/29894.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - 29026
    
    releaseNotes:
    - |
      **Added** `WorkloadEntry` resources will be read from all clusters in multi-cluster installations and do not need to be duplicated.
      Makes Virtual Machine auto-registration compatible with multi-primary multi-cluster. This feature is diabled by default and can be
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 14 20:15:28 UTC 2021
    - 461 bytes
    - Viewed (0)
  10. releasenotes/notes/manifest-base-cleanup.yaml

    upgradeNotes:
      - title: "`base` Helm Chart removals"
        content: |
          A number of configurations previously present in the the `base` Helm chart were *copied* to the `istiod` chart in a previous releases.
    
          In this release, the duplicated configurations are fully removed from the `base` chart.
    
          Below shows a mapping of old configuration to new configuration:
    
          | Old                                     | New                                     |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 04:26:43 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top