Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 173 for deduplicated (0.29 sec)

  1. src/go/types/instantiate.go

    // equivalent, so that instantiating distinct (but possibly identical)
    // signatures will yield different instances. The use of a shared context does
    // not guarantee that identical instances are deduplicated in all cases.
    //
    // If validate is set, Instantiate verifies that the number of type arguments
    // and parameters match, and that the type arguments satisfy their respective
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. src/net/lookup_test.go

    	) ([]IPAddr, error) {
    		select {
    		case <-unblockLookup:
    		default:
    			// Start a concurrent LookupIPAddr for the same host while the caller is
    			// still blocked, and sleep a little to give it time to be deduplicated
    			// before we cancel (and unblock) the caller.
    			// (If the timing doesn't quite work out, we'll end up testing sequential
    			// calls instead of concurrent ones, but the test should still pass.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ImmutableSet.java

            dedupedElements = Arrays.copyOf(dedupedElements, newCapacity);
          }
        }
    
        /** Adds e to the insertion-order array of deduplicated elements. Calls ensureCapacity. */
        final void addDedupedElement(E e) {
          ensureCapacity(distinct + 1);
          dedupedElements[distinct++] = e;
        }
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  4. cmd/server-main.go

    }
    
    // Return the list of address that MinIO server needs to listen on:
    //   - Returning 127.0.0.1 is necessary so Console will be able to send
    //     requests to the local S3 API.
    //   - The returned List needs to be deduplicated as well.
    func getServerListenAddrs() []string {
    	// Use a string set to avoid duplication
    	addrs := set.NewStringSet()
    	// Listen on local interface to receive requests from Console
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (1)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/api/core/v1/generated.proto

      // This will be appended to the base nameservers generated from DNSPolicy.
      // Duplicated nameservers will be removed.
      // +optional
      // +listType=atomic
      repeated string nameservers = 1;
    
      // 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.
      // +optional
      // +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  10. doc/next/6-stdlib/2-unique.md

    `Make[T]` function, which produces a reference to a canonical copy of
    the value in the form of a `Handle[T]`.
    Two `Handle[T]` are equal if and only if the values used to produce the
    handles are equal, allowing programs to deduplicate values and reduce
    their memory footprint.
    Comparing two `Handle[T]` values is efficient, reducing down to a simple
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:13 UTC 2024
    - 566 bytes
    - Viewed (0)
Back to top