Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,284 for mergeFn (0.21 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/api/services/model/InheritanceAssembler.java

     */
    public interface InheritanceAssembler {
    
        /**
         * Merges values from the specified parent model into the given child model. Implementations are expected to keep
         * parent and child completely decoupled by injecting deep copies of objects into the child rather than the original
         * objects from the parent.
         *
         * @param child The child model into which to merge the values inherited from the parent, must not be
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. pilot/pkg/model/destination_rule.go

    )
    
    // This function merges one or more destination rules for a given host string
    // into a single destination rule. Note that it does not perform inheritance style merging.
    // IOW, given three dest rules (*.foo.com, *.foo.com, *.com) without selectors, calling this function for
    // each config will result in a final dest rule set (*.foo.com, and *.com).
    //
    // The following is the merge logic:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 07:22:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. operator/pkg/translate/translate.go

    	// keys with the items in the overlay list
    	merged := make(map[portWithProtocol]*v1.ServicePort)
    	for _, p := range base {
    		key := portWithProtocol{port: p.Port, protocol: p.Protocol}
    		merged[key] = p
    	}
    	for _, p := range overlay {
    		key := portWithProtocol{port: p.Port, protocol: p.Protocol}
    		merged[key] = p
    	}
    	res := make([]*v1.ServicePort, 0, len(merged))
    	for _, pv := range merged {
    		res = append(res, pv)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/IncrementalResultStoringCompiler.java

            Map<String, Set<String>> merged = new HashMap<>(previousSourceClassesMapping);
            merged.keySet().removeAll(changedClasses);
            for (Map.Entry<String, Set<String>> entry : newSourceClassesMapping.entrySet()) {
                merged.computeIfAbsent(entry.getKey(), key -> new HashSet<>()).addAll(entry.getValue());
            }
            return merged;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  5. pkg/kubelet/config/mux.go

    // pushed via channels and sent to the merge function.
    type mux struct {
    	// Invoked when an update is sent to a source.
    	merger merger
    
    	// Sources and their lock.
    	sourceLock sync.RWMutex
    	// Maps source names to channels
    	sources map[string]chan interface{}
    }
    
    // newMux creates a new mux that can merge changes from multiple sources.
    func newMux(merger merger) *mux {
    	mux := &mux{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 30 20:02:23 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    func combineProfiles(profiles []*profile.Profile, msrcs []plugin.MappingSources) (*profile.Profile, plugin.MappingSources, error) {
    	// Merge profiles.
    	//
    	// The merge call below only treats exactly matching sample type lists as
    	// compatible and will fail otherwise. Make the profiles' sample types
    	// compatible for the merge, see CompatibilizeSampleTypes() doc for details.
    	if err := profile.CompatibilizeSampleTypes(profiles); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. tensorflow/cc/saved_model/image_format/internal_api.cc

          metrics::SavedModelReadCount(
              saved_model::GetWriteVersion(*saved_model_proto))
              .IncrementBy(1);
        }
        return result;
      }
    #endif
    
      // TODO(b/295208714): add pbtxt support to Merger::Read
      const std::string saved_model_pbtxt_path =
          absl::StrCat(file_prefix, ".pbtxt");
      auto saved_model_pbtxt_exists =
          internal::FileExists(Env::Default(), saved_model_pbtxt_path);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 30 21:50:27 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. pilot/pkg/config/file/util/kubeyaml/kubeyaml_test.go

    )
    
    var joinCases = []struct {
    	merged string
    	split  []string
    }{
    	{
    		merged: "",
    		split:  nil,
    	},
    	{
    		merged: `yaml: foo`,
    		split: []string{
    			`yaml: foo`,
    		},
    	},
    	{
    		merged: `
    yaml: foo
    ---
    bar: boo
    `,
    		split: []string{
    			`
    yaml: foo
    `,
    			`bar: boo
    `,
    		},
    	},
    	{
    		merged: `
    yaml: foo
    ---
    bar: boo
    `,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/ops/xla_ops.cc

          c->set_output(0, c->input(0));
          return absl::OkStatus();
        })
        .Doc(R"(XLA Merge Op. For use by the XLA JIT only.
    
    Merges the outputs from the PartitionedCall node and the _XlaRun node.
    Unlike the TensorFlow Merge op, which requires inputs of some types to be
    placed on the host, the _XlaMerge op can merge inputs of all types when
    placed on the device. This prevents the need for copy operations, in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 09:08:06 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/merge-probers.yaml.injected

    John Howard <******@****.***> 1697239654 -0500
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 13 23:27:34 UTC 2023
    - 8.1K bytes
    - Viewed (0)
Back to top