Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 109 for deduplicated (0.2 sec)

  1. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseScopeAttributeIntegrationTest.groovy

            classpath.sourceDir('src/main/resources').assertOutputLocation('out/res')
        }
    
        @ToBeFixedForConfigurationCache
        def "Overlapping default and source folder output paths are deduplicated"() {
            setup:
            buildFile << """
                apply plugin: 'java'
                apply plugin: 'eclipse'
    
                sourceSets {
                    "default" {
                        java {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 10 13:19:47 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/instantiate_test.go

    	const src = "package p; type T[P any] int"
    	pkg1 := mustTypecheck(src, nil, nil)
    	pkg2 := mustTypecheck(src, nil, nil)
    	// We consider T1 and T2 to be distinct types, so their instances should not
    	// be deduplicated by the context.
    	T1 := pkg1.Scope().Lookup("T").Type().(*Named)
    	T2 := pkg2.Scope().Lookup("T").Type().(*Named)
    	ctxt := NewContext()
    	res1, err := Instantiate(ctxt, T1, []Type{Typ[Int]}, false)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 28 17:58:07 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. src/go/types/instantiate_test.go

    	const src = "package p; type T[P any] int"
    	pkg1 := mustTypecheck(src, nil, nil)
    	pkg2 := mustTypecheck(src, nil, nil)
    	// We consider T1 and T2 to be distinct types, so their instances should not
    	// be deduplicated by the context.
    	T1 := pkg1.Scope().Lookup("T").Type().(*Named)
    	T2 := pkg2.Scope().Lookup("T").Type().(*Named)
    	ctxt := NewContext()
    	res1, err := Instantiate(ctxt, T1, []Type{Typ[Int]}, false)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. pkg/kube/controllers/queue.go

    	"istio.io/istio/pkg/config"
    	istiolog "istio.io/istio/pkg/log"
    )
    
    type ReconcilerFn func(key types.NamespacedName) error
    
    // Queue defines an abstraction around Kubernetes' workqueue.
    // Items enqueued are deduplicated; this generally means relying on ordering of events in the queue is not feasible.
    type Queue struct {
    	queue       workqueue.RateLimitingInterface
    	initialSync *atomic.Bool
    	name        string
    	maxAttempts int
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. src/testing/match.go

    type matcher struct {
    	filter    filterMatch
    	skip      filterMatch
    	matchFunc func(pat, str string) (bool, error)
    
    	mu sync.Mutex
    
    	// subNames is used to deduplicate subtest names.
    	// Each key is the subtest name joined to the deduplicated name of the parent test.
    	// Each value is the count of the number of occurrences of the given subtest name
    	// already seen.
    	subNames map[string]int32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 27 22:07:13 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  6. cmd/importverifier/importverifier.go

    	return !strings.HasPrefix(relPath, ".."), nil
    }
    
    // forbiddenImportsFor determines all of the forbidden
    // imports for a package given the import restrictions
    // and returns a deduplicated list of them
    func (i *ImportRestriction) forbiddenImportsFor(pkg Package) []string {
    	forbiddenImportSet := map[string]struct{}{}
    	imports := pkg.Imports
    	if !i.ExcludeTests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:16 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. src/internal/pkgbits/encoder.go

    func (w *Encoder) Code(c Code) {
    	w.Sync(c.Marker())
    	w.Len(c.Value())
    }
    
    // String encodes and writes a string value into the element
    // bitstream.
    //
    // Internally, strings are deduplicated by adding them to the strings
    // section (if not already present), and then writing a relocation
    // into the element bitstream.
    func (w *Encoder) String(s string) {
    	w.StringRef(w.p.StringIdx(s))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 10 23:26:58 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  8. releasenotes/notes/duplicated-extra-stats-tag.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: telemetry
    issue:
    - 31270
    releaseNotes:
    - |
      **Fixed** an issue where envoy does not start up properly when
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 16 16:30:56 UTC 2021
    - 203 bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureWriteIntegTest/duplicated.keys

    Tom Tresansky <******@****.***> 1696954098 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/batch_function_deduplicate.mlir

    // RUN: tf-tfrt-opt -tfrt-deduplicate-functions-invoked-by-batch-function %s | FileCheck %s
    
    // This test verifies the function `compute_1` will be removed to deduplicate
    // the functions invoked by BatchFunction with the same shared_name and the
    // function `compute_2` will not be removed as the shared_name is different.
    
    // CHECK-LABEL: func private @batch_0
    // CHECK: f = @compute_0
    func.func private @batch_0(%arg0: tensor<?x?xi32>) -> tensor<*xi32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top