Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 97 for dedupes (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. test/typeparam/dedup.out

    Keith Randall <******@****.***> 1628044381 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 04 17:56:00 UTC 2021
    - 20 bytes
    - Viewed (0)
  6. test/typeparam/dedup.go

    Matthew Dempsky <******@****.***> 1646087539 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 437 bytes
    - Viewed (0)
  7. pilot/pkg/networking/plugin/authn/util.go

    	}
    	return dedupTrustDomains(tds)
    }
    
    func dedupTrustDomains(tds []string) []string {
    	known := sets.New[string]()
    	deduped := make([]string, 0, len(tds))
    
    	for _, td := range tds {
    		if td != "" && !known.InsertContains(td) {
    			deduped = append(deduped, td)
    		}
    	}
    	return deduped
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 16:11:07 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. 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)
  9. hack/module-graph.sh

    	# Generating lines of the form " k8s_io_kubernetes -> k8s_io_api"
    	# Use only the directories in staging
    	# Trimming away version info
    	# Replacing non DOT (graph description language) characters with underscores
    	# Dedupe lines
    	# Inserting needed arrow.
    	# Indenting the line appropriately
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 07 08:19:59 UTC 2020
    - 3K bytes
    - Viewed (0)
  10. 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)
Back to top