Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 303 for deduplicated (0.18 sec)

  1. src/net/http/request_test.go

    	2: {"", io.EOF.Error(), nil},
    	3: {
    		in:     "HEAD / HTTP/1.1\r\n\r\n",
    		header: Header{},
    	},
    
    	// Multiple Content-Length values should either be
    	// deduplicated if same or reject otherwise
    	// See Issue 16490.
    	4: {
    		in:  "POST / HTTP/1.1\r\nContent-Length: 10\r\nContent-Length: 0\r\n\r\nGopher hey\r\n",
    		err: "cannot contain multiple Content-Length headers",
    	},
    	5: {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/configurer/HierarchicalElementDeduplicator.java

                    prefixes.put(element, getParent(element));
                }
                while (!getDuplicateNames().isEmpty()) {
                    deduplicate();
                }
                simplifyNames();
            }
    
            private void deduplicate() {
                for (String duplicateName : getDuplicateNames()) {
                    Collection<T> duplicatedElements = elementsByName.get(duplicateName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loader/loader.go

    			log.Fatalf("duplicated definition of symbol %s, from %s and %s", name, r.unit.Lib.Pkg, oldr.unit.Lib.Pkg)
    		}
    		l.objSyms[oldi] = objSym{r.objidx, li}
    	} else {
    		// old symbol overwrites new symbol.
    		typ := sym.AbiSymKindToSymKind[objabi.SymKind(oldsym.Type())]
    		if !typ.IsData() { // only allow overwriting data symbol
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          }
        }
    
        int buffer_index = buffers_.size();
        // If a constant is returned as subgraph's output, this constant cannot be
        // deduplicated.
        const bool not_returned_by_subgraph = llvm::none_of(
            value.getUsers(),
            [](Operation* user) { return llvm::isa<mlir::func::ReturnOp>(user); });
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"searches":    "A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. 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)
  9. pkg/registry/core/service/portallocator/controller/repair_test.go

    		expected    []int
    	}{
    		{
    			name: "no duplicated nodePorts",
    			serviceSpec: corev1.ServiceSpec{
    				Ports: []corev1.ServicePort{
    					{NodePort: 111, Protocol: corev1.ProtocolTCP},
    					{NodePort: 112, Protocol: corev1.ProtocolUDP},
    					{NodePort: 113, Protocol: corev1.ProtocolUDP},
    				},
    			},
    			expected: []int{111, 112, 113},
    		},
    		{
    			name: "duplicated nodePort with TCP protocol",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  10. releasenotes/notes/36806.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 36805
    releaseNotes:
      - |
        **Fixed** an issue that if duplicated cipher suites configured in Gateway, it will be pushed to Envoy configuration. With this fix, duplicated cipher
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 02 19:51:18 UTC 2022
    - 302 bytes
    - Viewed (0)
Back to top