Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for cOnTaInEr_NaMe (0.3 sec)

  1. tensorflow/c/experimental/next_pluggable_device/c_api.cc

      auto cc_status =
          cc_ctx->resource_manager()->Create<tensorflow::PluginResource>(
              container_name, plugin_resource_name, cc_resource_ptr);
      status->status = cc_status;
    }
    
    void TF_LookupOrCreatePluginResource(
        TF_OpKernelContext* ctx, const char* container_name,
        const char* plugin_resource_name, void** result_plugin_resource,
        void* (*create_func)(void*), void* create_func_args,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 05:48:24 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/next_pluggable_device/c_api.h

    // for ResourceMgr to clean up the resource. `status` will be set.
    TF_CAPI_EXPORT extern void TF_CreatePluginResource(
        TF_OpKernelContext* ctx, const char* container_name,
        const char* plugin_resource_name, void* plugin_resource,
        void (*delete_func)(void*), TF_Status* status);
    
    // If the ResourceMgr provided by the `ctx` has a resource
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 20:01:06 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/host_runtime/tfrt_ops.td

        serialization.
    
        This Op will restore the tensors asynchronously. There are N restored tensors
        corresponding to N $var_handle. Each restored tensor is given a unique name,
        typically a concatenation of `container_name` and `shared_name` from a `var_handle`.
        The runtime shall handle the possibility that the tensors are not ready when requested
        because the tensors are loaded asynchronously.
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. build/common.sh

    function kube::build::run_build_command_ex() {
      [[ $# != 0 ]] || { echo "Invalid input - please specify a container name." >&2; return 4; }
      local container_name="${1}"
      shift
    
      local -a docker_run_opts=(
        "--name=${container_name}"
        "--user=$(id -u):$(id -g)"
        "--hostname=${HOSTNAME}"
        "-e=GOPROXY=${GOPROXY}"
        "${DOCKER_MOUNT_ARGS[@]}"
      )
    
      local detach=false
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  5. cluster/gce/windows/k8s-node-setup.psm1

    [INPUT]
        Name             tail
        Alias            kube_containers
        Tag              kube_<namespace_name>_<pod_name>_<container_name>
        Tag_Regex        (?<pod_name>[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*)_(?<namespace_name>[^_]+)_(?<container_name>.+)-
        Mem_Buf_Limit    5MB
        Skip_Long_Lines  On
        Refresh_Interval 5
        Path             C:\var\log\containers\*.log
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  6. pkg/kubelet/images/image_manager_test.go

    	container = &v1.Container{
    		Name:            "container_name",
    		Image:           c.containerImage,
    		ImagePullPolicy: c.policy,
    	}
    
    	backOff := flowcontrol.NewBackOff(time.Second, time.Minute)
    	fakeClock = testingclock.NewFakeClock(time.Now())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top