Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 259 for dedupes (1.85 sec)

  1. 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)
  2. 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)
  3. 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)
  4. staging/src/k8s.io/apiserver/pkg/storageversion/manager.go

    	// Sorting the list to make sure we have a consistent dedup result, and
    	// therefore avoid creating unnecessarily duplicated StorageVersion objects.
    	// For example, extensions.ingresses and networking.k8s.io.ingresses share
    	// the same underlying storage. Without sorting, in an HA cluster, one
    	// apiserver may dedup and update StorageVersion for extensions.ingresses,
    	// while another apiserver may dedup and update StorageVersion for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 17:47:19 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/PartialEvaluatorTest.kt

    import org.junit.Assert.fail
    import org.junit.Test
    
    
    class PartialEvaluatorTest {
    
        @Test
        fun `Project target - top-level - empty`() {
    
            assertThat(
                "reduces to static program that applies default plugin requests and base plugins",
                partialEvaluationOf(
                    Program.Empty,
                    ProgramKind.TopLevel,
                    ProgramTarget.Project
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 38.9K 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. 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)
  9. 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)
  10. 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)
Back to top