Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 303 for deduplicated (0.23 sec)

  1. pilot/pkg/security/trustdomain/bundle.go

    			if err != nil {
    				authzLog.Errorf("Failed to replace trust domain with %s from principal %s: %v", td, principal, err)
    				continue
    			}
    		}
    		// Check to make sure we don't generate duplicated principals. This happens when trust domain
    		// has a * prefix. For example, "*-td" can match with "old-td" and "new-td", but we only want
    		// to keep the principal as-is in the generated config, .i.e. *-td.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 23 15:48:01 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. 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)
  3. test-site/activator

      JAVA_OPTS          Environment variable, if unset uses ""
      SBT_OPTS           Environment variable, if unset uses ""
      ACTIVATOR_OPTS     Environment variable, if unset uses ""
    
    In the case of duplicated or conflicting options, the order above
    shows precedence: environment variables lowest, command line options highest.
    EOM
    }
    
    ###  ------------------------------- ###
    ###  Main script                     ###
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 9.3K bytes
    - Viewed (0)
  4. tests/testdata/config/none.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: https
      namespace: none
    spec:
      hosts:
      # TODO: Bug: without isolation (in the main test) it causes 'duplicated cluster', envoy rejects config
      # This will happen if this is defined in multiple namespaces in 1.0
      - www1.googleapis.com
      - api1.facebook.com
      location: MESH_EXTERNAL
      ports:
      - number: 2443
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 21:13:54 UTC 2020
    - 8.8K 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. 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)
  8. 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)
  9. 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)
  10. pkg/util/taints/taints.go

    			}
    			// validate if taint is unique by <key, effect>
    			if len(uniqueTaints[newTaint.Effect]) > 0 && uniqueTaints[newTaint.Effect].Has(newTaint.Key) {
    				return nil, nil, fmt.Errorf("duplicated taints with the same key and effect: %v", newTaint)
    			}
    			// add taint to existingTaints for uniqueness check
    			if len(uniqueTaints[newTaint.Effect]) == 0 {
    				uniqueTaints[newTaint.Effect] = sets.String{}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 09:23:35 UTC 2022
    - 8.4K bytes
    - Viewed (0)
Back to top