Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for mergeFn (0.18 sec)

  1. cmd/metacache-entries.go

    			// Same, discard one.
    			merged = append(merged, a[0])
    			a = a[1:]
    			b = b[1:]
    		case a[0].name < b[0].name:
    			merged = append(merged, a[0])
    			a = a[1:]
    		default:
    			merged = append(merged, b[0])
    			b = b[1:]
    		}
    		if limit > 0 && len(merged) >= limit {
    			break
    		}
    	}
    	// Append anything left.
    	if limit < 0 || len(merged) < limit {
    		merged = append(merged, a...)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 04:34:26 UTC 2024
    - 24K 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. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonProcessState.java

            // Merge the daemon services into the build process services
            // It would be better to separate these into different scopes, but many things still assume that daemon services are available in the global scope,
            // so keep them merged as a migration step
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

                task merge(type: InputFilesTask) {
                    inFiles.addAll(files.elements)
                    outFile = file("merge.txt")
                }
            """
    
            when:
            run("merge")
    
            then:
            result.assertTasksExecuted(":produce1", ":produce2", ":merge")
            file("merge.txt").text == "one,two"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  5. platforms/core-runtime/tooling-api-provider/src/main/java/org/gradle/tooling/internal/provider/DefaultConnection.java

            LoggingServiceRegistry loggingServices = LoggingServiceRegistry.newEmbeddableLogging();
            // Merge the connection services into the build process services
            // It would be better to separate these into different scopes, but many things still assume that connection services are available in the global scope,
            // so keep them merged as a migration step
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. pilot/pkg/networking/util/util.go

    		return nil, err
    	}
    
    	// get an object of type used by this message
    	srcX, err := src.UnmarshalNew()
    	if err != nil {
    		return nil, err
    	}
    
    	// Merge the two typed protos
    	merge.Merge(dstX, srcX)
    
    	// Convert the merged proto back to dst
    	retVal := protoconv.MessageToAny(dstX)
    
    	return retVal, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tf_data_optimization.td

         (TF_ConstOp (GetI64ScalarElementsAttr<1>)), $drop_remainder, $f,
            $batch_output_types, $batch_output_shapes, $preserve_cardinality,
            // TODO(kramm): Should we merge batch_dataset_metadata and
            //              map_dataset_metadata?
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/go.mod

    	gopkg.in/yaml.v3 v3.0.1 // indirect
    	k8s.io/klog/v2 v2.120.1 // indirect
    	k8s.io/utils v0.0.0-20230726121419-3b25d923346b // indirect
    	sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
    	sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
    	sigs.k8s.io/yaml v1.4.0 // indirect
    )
    
    replace (
    	k8s.io/api => ../api
    	k8s.io/apimachinery => ../apimachinery
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/go.mod

    	k8s.io/klog/v2 v2.120.1
    	k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340
    	k8s.io/utils v0.0.0-20230726121419-3b25d923346b
    	sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd
    	sigs.k8s.io/structured-merge-diff/v4 v4.4.1
    	sigs.k8s.io/yaml v1.4.0
    )
    
    require (
    	github.com/go-logr/logr v1.4.1 // indirect
    	github.com/go-openapi/jsonpointer v0.19.6 // indirect
    	github.com/go-openapi/jsonreference v0.20.2 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Walks tf_executor::GraphOp and merges individual tf_executor::IslandOps.";
      let description = [{
        This pass performs whole graph analysis for a graph encapsulated into tf_executor::GraphOp.
        The analysis identifies all IslandOps within the graph which could be merged together.
        The goal is to merge as many islands as possible.
        Once analysis is completed, the pass merges all IslandOps in a single scan.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top