Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 174 for dedupes (0.14 sec)

  1. pilot/pkg/trustbundle/trustbundle_test.go

    		t.Errorf("Basic trustbundle update test failed. Callback value is %v", cbCounter)
    	}
    
    	// Add Second Cert update
    	// ensure intermediate CA certs accepted, it replaces the first completely, and lib dedupes duplicate cert
    	err = tb.UpdateTrustAnchor(&TrustAnchorUpdate{
    		TrustAnchorConfig: TrustAnchorConfig{Certs: []string{intermediateCACert, intermediateCACert}},
    		Source:            SourceMeshConfig,
    	})
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/TestsForSetsInJavaUtil.java

                    final String[] deduped = dedupe(elements);
                    return new AbstractSet<String>() {
                      @Override
                      public int size() {
                        return deduped.length;
                      }
    
                      @Override
                      public Iterator<String> iterator() {
                        return MinimalCollection.of(deduped).iterator();
                      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/TestsForSetsInJavaUtil.java

                    final String[] deduped = dedupe(elements);
                    return new AbstractSet<String>() {
                      @Override
                      public int size() {
                        return deduped.length;
                      }
    
                      @Override
                      public Iterator<String> iterator() {
                        return MinimalCollection.of(deduped).iterator();
                      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/internal/configurer/HierarchicalElementDeduplicatorTest.groovy

            elementName("root:foo") == "foo"
            elementName("root:foo:app") == "foo-app"
            elementName("root:bar") == "bar"
            elementName("root:bar:app") == "bar-app"
        }
    
        def "dedups child element with same name as parent element"() {
            given:
            element("root") {
                element("app") {
                    element("app") {}
                }
            }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/AbstractIdeDeduplicationIntegrationTest.groovy

            projectName("foo") == "foo"
            projectName("foo/app") == "foo-app"
            projectName("bar") == "bar"
            projectName("bar/app") == "bar-app"
        }
    
        @ToBeFixedForConfigurationCache
        def "dedups child project with same name as parent project"() {
            given:
            project("root") {
                project("app") {
                    project("app") {}
                }
            }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest_test.go

    					UID:        "1",
    				},
    			},
    		},
    	}
    	for _, tc := range testCases {
    		t.Run(tc.name, func(t *testing.T) {
    			deduped, _ := dedupOwnerReferences(tc.ownerReferences)
    			if !apiequality.Semantic.DeepEqual(deduped, tc.expected) {
    				t.Errorf("diff: %v", cmp.Diff(deduped, tc.expected))
    			}
    		})
    	}
    }
    
    func TestParseYAMLWarnings(t *testing.T) {
    	yamlNoErrs := `---
    apiVersion: foo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  7. src/go/ast/import.go

    	})
    
    	// Dedup. Thanks to our sorting, we can just consider
    	// adjacent pairs of imports.
    	deduped := specs[:0]
    	for i, s := range specs {
    		if i == len(specs)-1 || !collapse(s, specs[i+1]) {
    			deduped = append(deduped, s)
    		} else {
    			p := s.Pos()
    			fset.File(p).MergeLine(lineAt(fset, p))
    		}
    	}
    	specs = deduped
    
    	// Fix up comment positions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. okhttp-hpacktests/src/test/java/okhttp3/internal/http2/HpackDecodeTestBase.kt

            result.addAll(stories)
          }
          return result
        }
    
        /**
         * Checks if `expected` and `observed` are equal when viewed as a set and headers are
         * deduped.
         *
         * TODO: See if duped headers should be preserved on decode and verify.
         */
        private fun assertSetEquals(
          message: String,
          expected: List<Header>,
          observed: List<Header>,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. cmd/veeam-sos-api.go

    //     Optional value, default 1000, range: 1-unlimited (S3 standard maximum is 1000 and should not be set higher)
    //
    //   - <StorageConcurrentTasksLimit>
    //     Setting reduces the parallel Repository Task slots that offload or write data to object storage. The same user interface
    //     setting overwrites the storage-defined setting.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 20 18:54:52 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. doc/next/6-stdlib/99-minor/text/template/57646.md

    Templates now support the new "else with" action, which reduces template complexity in some use cases....
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 20:49:22 UTC 2024
    - 103 bytes
    - Viewed (0)
Back to top