Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 259 for dedupes (0.11 sec)

  1. staging/src/k8s.io/apiserver/pkg/quota/v1/resources_test.go

    		"b has extra": {
    			a:        []corev1.ResourceName{corev1.ResourceCPU},
    			b:        []corev1.ResourceName{corev1.ResourceCPU, corev1.ResourceMemory},
    			expected: []corev1.ResourceName{corev1.ResourceCPU},
    		},
    		"dedupes": {
    			a:        []corev1.ResourceName{corev1.ResourceCPU, corev1.ResourceCPU, corev1.ResourceMemory, corev1.ResourceMemory},
    			b:        []corev1.ResourceName{corev1.ResourceCPU},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 12 01:57:38 UTC 2021
    - 15.6K bytes
    - Viewed (0)
  2. 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)
  3. pkg/config/analysis/diag/messages.go

    		if len(deduped) != 0 && deduped[len(deduped)-1].String() == m.String() {
    			continue
    		}
    		deduped = append(deduped, m)
    	}
    	return deduped
    }
    
    // SetDocRef sets the doc URL reference tracker for the messages
    func (ms *Messages) SetDocRef(docRef string) *Messages {
    	for i := range *ms {
    		(*ms)[i].DocRef = docRef
    	}
    	return ms
    }
    
    // FilterOutLowerThan only keeps messages at or above the specified output level
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 02:47:46 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest.go

    		return
    	}
    	refs := accessor.GetOwnerReferences()
    	deduped, duplicates := dedupOwnerReferences(refs)
    	if len(duplicates) > 0 {
    		// NOTE: For CREATE and UPDATE requests the API server dedups both before and after mutating admission.
    		// For PATCH request the API server only dedups after mutating admission.
    		format := DuplicateOwnerReferencesWarningFormat
    		if afterMutatingAdmission {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 17K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/link/internal/ld/go_test.go

    import (
    	_ "net"
    )
    
    //go:cgo_import_dynamic _ _ "libc.so"
    
    func main() {}`
    	if err := os.WriteFile(srcFile, []byte(src), 0644); err != nil {
    		t.Fatal(err)
    	}
    
    	exe := filepath.Join(dir, "deduped.exe")
    	out, err := testenv.Command(t, testenv.GoToolPath(t), "build", "-o", exe, srcFile).CombinedOutput()
    	if err != nil {
    		t.Fatalf("build failure: %s\n%s\n", err, string(out))
    	}
    
    	// Result should be runnable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:22:14 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  10. releasenotes/notes/dedupe-mismatch-output.yaml

    Xiaopeng Han <******@****.***> 1676471329 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 15 14:28:49 UTC 2023
    - 247 bytes
    - Viewed (0)
Back to top