Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for deduplicated (0.48 sec)

  1. 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)
  2. pilot/pkg/model/push_context.go

    	if pr == nil {
    		return other
    	}
    	if other == nil {
    		return pr
    	}
    
    	// Keep the first (older) start time
    
    	// Merge the two reasons. Note that we shouldn't deduplicate here, or we would under count
    	if len(other.Reason) > 0 {
    		if pr.Reason == nil {
    			pr.Reason = make(map[TriggerReason]int)
    		}
    		pr.Reason.Merge(other.Reason)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    	if kind != reflect.Map {
    		if mergeOptions.MergeParallelList && isDeleteList {
    			return deleteFromSlice(original, patch), nil
    		}
    		// Maybe in the future add a "concat" mode that doesn't
    		// deduplicate.
    		both := append(original, patch...)
    		merged = deduplicateScalars(both)
    
    	} else {
    		if mergeKey == "" {
    			return nil, fmt.Errorf("cannot merge lists without merge key for %s", schema.Name())
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    }
    
    // findVersionsWithUnchangedSchemas finds each version that is in the new CRD object and differs from that of the old CRD object.
    // It returns a set of the names of mutated versions.
    // This function does not check for duplicated versions, top-level version not in versions, or coexistence of
    // top-level and per-version schemas, as further validations will check for these problems.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  5. cmd/erasure-object.go

    // DeleteObjects deletes objects/versions in bulk, this function will still automatically split objects list
    // into smaller bulks if some object names are found to be duplicated in the delete list, splitting
    // into smaller bulks will avoid holding twice the write lock of the duplicated object names.
    func (er erasureObjects) DeleteObjects(ctx context.Context, bucket string, objects []ObjectToDelete, opts ObjectOptions) ([]DeletedObject, []error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        const absl::flat_hash_map<const Node*, Node*>& node_images,
        Graph* graph_out) {
      // Set of edges already added to the output graph, represented as (src, dst)
      // pairs. We use the set to deduplicate edges; multiple edges in the input
      // graph may map to one edge in the output graph.
      absl::flat_hash_set<std::pair<OutputTensor, InputTensor>,
                          OutputInputTensorPairHasher>
          edges_added;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    			Resolution:     model.ClientSideLB,
    			DefaultAddress: constants.UnspecifiedIP,
    		})
    	}
    	allocateAndValidate()
    
    	// Now add service with duplicated hostname validate that IPs are retained for original services and duplicated reuse the same IP
    	addServices := map[string]bool{
    		"i.com": true,
    	}
    
    	for k := range addServices {
    		inServices = append(inServices, &model.Service{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

            // We only check for groupId/artifactId/version/classifier cause if there is another
            // module with the same groupId/artifactId/version/classifier this will fail the build
            // earlier like "Project '...' is duplicated in the reactor.
            // So it is sufficient to check only groupId/artifactId/version/classifier and not the
            // packaging type.
            for (Dependency dependency : dependencies) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

            // We only check for groupId/artifactId/version/classifier cause if there is another
            // module with the same groupId/artifactId/version/classifier this will fail the build
            // earlier like "Project '...' is duplicated in the reactor.
            // So it is sufficient to check only groupId/artifactId/version/classifier and not the
            // packaging type.
            for (Dependency dependency : dependencies) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	}
    	eventMessage := message
    	if len(args) > 0 {
    		eventMessage = fmt.Sprintf(message, args...)
    	}
    	// this is a hack, but often the error from the runtime includes the containerID
    	// which kills our ability to deduplicate events.  this protection makes a huge
    	// difference in the number of unique events
    	if containerID != "" {
    		eventMessage = strings.Replace(eventMessage, containerID, container.Name, -1)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
Back to top