Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 303 for deduplicated (0.17 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/EdgeState.java

                selector.getTargetModule().decreaseHardEdgeCount(removalSource);
            }
        }
    
        @Override
        public boolean equals(Object o) {
            return this == o;
            // Edge states are deduplicated, this is a performance optimization
        }
    
        @Override
        public int hashCode() {
            return hashCode;
        }
    
        DependencyState getDependencyState() {
            return dependencyState;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  2. pkg/registry/core/service/portallocator/controller/repair.go

    	}
    	return nil
    }
    
    // collectServiceNodePorts returns nodePorts specified in the Service.
    // Please note that:
    //  1. same nodePort with *same* protocol will be duplicated as it is
    //  2. same nodePort with *different* protocol will be deduplicated
    func collectServiceNodePorts(service *corev1.Service) []int {
    	var servicePorts []int
    	// map from nodePort to set of protocols
    	seen := make(map[int]sets.String)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/link/internal/ld/pcln.go

    	state.filetab = state.addGeneratedSym(ctxt, "runtime.filetab", fileSize, writeFiletab)
    
    	return cuOffsets
    }
    
    // generatePctab creates the runtime.pctab variable, holding all the
    // deduplicated pcdata.
    func (state *pclntab) generatePctab(ctxt *Link, funcs []loader.Sym) {
    	ldr := ctxt.loader
    
    	// Pctab offsets of 0 are considered invalid in the runtime. We respect
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/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.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. cmd/metacache-entries_test.go

    	}
    }
    
    func Test_metaCacheEntries_merge(t *testing.T) {
    	org := loadMetacacheSampleEntries(t)
    	a, b := org.shallowClone(), org.shallowClone()
    	be := b.entries()
    	for i := range be {
    		//  Modify b so it isn't deduplicated.
    		be[i].metadata = []byte("something-else")
    	}
    	// Merge b into a
    	a.merge(b, -1)
    	//nolint:gocritic
    	want := append(loadMetacacheSampleNames, loadMetacacheSampleNames...)
    	sort.Strings(want)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 31.6K bytes
    - Viewed (0)
  10. 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)
Back to top