Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 173 for deduplicated (0.22 sec)

  1. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLifecycleRegistry.java

                lifecycle.phases().forEach(phase -> {
                    if (!set.add(phase.name())) {
                        throw new IllegalArgumentException(
                                "Found duplicated phase '" + phase.name() + "' in '" + lifecycle.id() + "' lifecycle");
                    }
                });
            }
        }
    
        @Override
        public Iterator<Lifecycle> iterator() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. src/mdo/reader-stax.vm

                break;
            default:
                if (!parsed.add(tagName)) {
                    throw new XMLStreamException("Duplicated tag: '" + tagName + "'", parser.getLocation(), null);
                }
            }
    #else
            if (!parsed.add(tagName)) {
                throw new XMLStreamException("Duplicated tag: '" + tagName + "'", parser.getLocation(), null);
            }
    #end
            return tagName;
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  3. pkg/scheduler/apis/config/validation/validation_test.go

    			config: invalidPluginArgs,
    			wantErrs: field.ErrorList{
    				&field.Error{
    					Type:  field.ErrorTypeInvalid,
    					Field: "profiles[0].pluginConfig[0].args",
    				},
    			},
    		},
    		"duplicated-plugin-config": {
    			config: duplicatedPluginConfig,
    			wantErrs: field.ErrorList{
    				&field.Error{
    					Type:  field.ErrorTypeDuplicate,
    					Field: "profiles[0].pluginConfig[1]",
    				},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. src/go/types/mono.go

    	w.vertices = append(w.vertices, monoVertex{obj: obj})
    	w.nameIdx[obj] = idx
    	return idx
    }
    
    func (w *monoGraph) addEdge(dst, src, weight int, pos token.Pos, typ Type) {
    	// TODO(mdempsky): Deduplicate redundant edges?
    	w.edges = append(w.edges, monoEdge{
    		dst:    dst,
    		src:    src,
    		weight: weight,
    
    		pos: pos,
    		typ: typ,
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_metadata_utils.cc

                                 arg->mutable_sharding())))
          return failure();
    
        // Populate set_is_same_data_across_replicas
        // Note: this information is duplicated and can be removed from the proto
        // and here once MLIR bridge phase 2 doesn't fallback to the old bridge.
        auto attr = op.getFuncOp().getArgAttrOfType<mlir::BoolAttr>(
            index, replication_attr_name);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. tensorflow/cc/ops/while_loop.cc

    //       Merge<---------------------------+
    //       ^
    //       |
    //    Enter
    //      ^
    //      |
    //   (input)
    //
    // If there are multiple loop variables, each of the control flow ops is
    // duplicated for each loop variable.
    // TODO(skyewm): link to public version of design doc
    Status BuildWhileLoop(const Scope& scope, const std::vector<Output>& inputs,
                          const CondGraphBuilderFn& cond,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 01:01:21 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/mono.go

    	w.vertices = append(w.vertices, monoVertex{obj: obj})
    	w.nameIdx[obj] = idx
    	return idx
    }
    
    func (w *monoGraph) addEdge(dst, src, weight int, pos syntax.Pos, typ Type) {
    	// TODO(mdempsky): Deduplicate redundant edges?
    	w.edges = append(w.edges, monoEdge{
    		dst:    dst,
    		src:    src,
    		weight: weight,
    
    		pos: pos,
    		typ: typ,
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 00:05:29 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/LocalFileDependencyBackedArtifactSetCodec.kt

                // This currently uses a dummy set of variants to calculate the mappings.
                // Do not write this if it will not be used
                // TODO - simplify extracting the mappings
                // TODO - deduplicate this data, as the mapping is project scoped and almost always the same across all projects of a given type
                val artifactType = value.requestAttributes.getAttribute(ARTIFACT_TYPE_ATTRIBUTE)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  9. callbacks.go

    		// show warning message the callback name already exists
    		if idx := getRIndex(names, c.name); idx > -1 && !c.replace && !c.remove && !cs[idx].remove {
    			c.processor.db.Logger.Warn(context.Background(), "duplicated callback `%s` from %s\n", c.name, utils.FileWithLineNum())
    		}
    		names = append(names, c.name)
    	}
    
    	sortCallback = func(c *callback) error {
    		if c.before != "" { // if defined before callback
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Mar 26 03:33:36 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. pkg/kubelet/container/helpers_test.go

    					port("", v1.ProtocolTCP, 80, 8080, "127.0.0.1"),
    					port("", v1.ProtocolTCP, 443, 4343, "192.168.0.1"),
    					port("foo", v1.ProtocolUDP, 555, 5555, ""),
    					// Duplicated, should be ignored.
    					port("foo", v1.ProtocolUDP, 888, 8888, ""),
    					// Duplicated with different address family, shouldn't be ignored
    					port("", v1.ProtocolTCP, 80, 8080, "::"),
    					// No address family specified
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 01:55:46 UTC 2024
    - 24.5K bytes
    - Viewed (0)
Back to top