Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,892 for place (0.05 sec)

  1. maven-core/src/site/apt/inheritance.apt

     of models you may specify:
    
     all of the models that you specify are collected to produce a lineage and then the super model is place at
     the top of that lineage to provide default values.
    
     The super model is where we place all the values which we believe to be standard, values that can be shared and
     utilized across all your Maven projects.
    
    +-----+
     m0 <- m1 <- m2
    +-----+
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 17:22:19 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  2. ci/README.md

    > effort to improve the structure of CI and build related files within the
    > TensorFlow repo. This warning will be removed when the contents of this
    > directory are stable and appropriate documentation around its usage is in
    > place.
    
    Maintainer: TensorFlow DevInfra
    
    ********************************************************************************
    
    The CI folder contains the configuration files and scripts used to build, test,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 21:00:01 UTC 2023
    - 825 bytes
    - Viewed (0)
  3. test/typeparam/tparam1.go

    // license that can be found in the LICENSE file.
    
    // Basic type parameter list type-checking (not syntax) errors.
    
    package tparam1
    
    // The predeclared identifier "any" may be used in place of interface{}.
    var _ any
    
    func _(_ any)
    
    type _[_ any] struct{}
    
    const N = 10
    
    type (
    	_                     []struct{}  // slice
    	_                     [N]struct{} // array
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. tensorflow/c/experimental/ops/README.md

    autogenerated from the registered Op and API definitions.
    
    To regenerate them, run the script in this directory, `update_cpp_ops.sh`, with
    no arguments. This script will overwrite the existing ops in-place at
    ***tensorflow/c/experimental/ops/\*_ops.{cc,h}***.
    
    Run this `update_cpp_ops.sh` script when Op definitions change in the registry.
    
    To generate additional operators, extend the lists in this script. Note that
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 28 17:21:01 UTC 2021
    - 993 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. cmd/kubeadm/app/cmd/phases/join/checketcd.go

    	// Checks that the etcd cluster is healthy
    	// NB. this check cannot be implemented before because it requires the admin.conf and all the certificates
    	//     for connecting to etcd already in place
    	client, err := data.Client()
    	if err != nil {
    		return err
    	}
    
    	return etcdphase.CheckLocalEtcdClusterStatus(client, data.CertificateWriteDir())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 02 11:25:47 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  10. 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)
Back to top