Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 493 for place (0.43 sec)

  1. pkg/slices/slices.go

    // This sort is not guaranteed to be stable.
    // The slice is modified in place but returned.
    func SortFunc[E any](x []E, less func(a, b E) int) []E {
    	if len(x) <= 1 {
    		return x
    	}
    	slices.SortFunc(x, less)
    	return x
    }
    
    // SortStableFunc sorts the slice x while keeping the original order of equal element.
    // The slice is modified in place but returned.
    // Please refer to SortFunc for usage instructions.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v2/cluster_tf.h

    // API. Users that need clustering with the Session API should use the v1 Bridge
    // API. These transformations take as input a Tensorflow Graph as an MLIR Module
    // and transforms the module in place to cluster the given ops for compilation
    // that is compatible with the given device_type. The MLIR should be in the TF
    // Executor Dialect for graph nodes and edges or be in TF Functional already.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 16 23:11:04 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/core-plugins/ear_plugin.adoc

    descriptor file
    
    You may already have appropriate settings in a `application.xml` file and want to use that instead of configuring the `ear.deploymentDescriptor` section of the build script. To accommodate that goal, place the `META-INF/application.xml` in the right place inside your source folders (see the `appDirName` property). The file contents will be used and the explicit configuration in the `ear.deploymentDescriptor` will be ignored....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. subprojects/build-events/build.gradle.kts

        integTestImplementation(project(":enterprise-operations"))
    
        integTestDistributionRuntimeOnly(project(":distributions-basics"))  {
            because("Requires ':toolingApiBuilders': Event handlers are in the wrong place, and should live in this project")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-declaringCapabilities/tests/dependencyReportReplaced.out

        | org.gradle.jvm.environment     |          | standard-jvm |
        | org.gradle.jvm.version         |          | 11           |
       Selection reasons:
          - By conflict resolution: On capability log4j:log4j use slf4j in place of log4j
    
    log4j:log4j:1.2.16 -> org.slf4j:log4j-over-slf4j:1.7.10
    \--- org.apache.zookeeper:zookeeper:3.4.9
         \--- compileClasspath
    
    org.slf4j:log4j-over-slf4j:1.7.10
    \--- compileClasspath
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. docs/distributed/SIZING.md

    protection bits added automatically to provide the regular safety for these objects up to 50% of the number of drives.
    This will allow normal write operations to take place on systems that exceed the write tolerance.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/execarchive.go

    	"os"
    	"os/exec"
    	"path/filepath"
    	"syscall"
    )
    
    const syscallExecSupported = true
    
    // execArchive invokes the archiver tool with syscall.Exec(), with
    // the expectation that this is the last thing that takes place
    // in the linking operation.
    func (ctxt *Link) execArchive(argv []string) {
    	var err error
    	argv0 := argv[0]
    	if filepath.Base(argv0) == argv0 {
    		argv0, err = exec.LookPath(argv0)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 876 bytes
    - Viewed (0)
  8. hack/verify-vendor.sh

    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    
    # create a nice clean place to put our new vendor tree
    _tmpdir="$(kube::realpath "$(mktemp -d -t "$(basename "$0").XXXXXX")")"
    
    if [[ -z ${KEEP_TMP:-} ]]; then
        KEEP_TMP=false
    fi
    
    function cleanup {
      # make go module dirs writeable
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:45 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. pkg/kubelet/apis/podresources/constants.go

    	// It's at least unlikely that there is a legitimate need to query podresources
    	// more than 100 times per second, the other subsystems are not guaranteed to react
    	// so fast in the first place.
    	DefaultQPS = 100
    
    	// DefaultBurstTokens is determined by empirically reviewing known consumers of the API.
    	// See the documentation of DefaultQPS, same caveats apply.
    	DefaultBurstTokens = 10
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 07:22:23 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/filesystem/BUILD

    # Experimental filesystem C APIs for TensorFlow.
    # Will be moved in proper place once all filesystems are converted to the
    # modular framework.
    load("//tensorflow:tensorflow.bzl", "tf_cc_test")
    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    )
    
    # This is only for plugins
    cc_library(
        name = "filesystem_interface",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top