Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for cOnTaInEr_NaMe (0.24 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. cluster/addons/fluentd-gcp/fluentd-gcp-configmap.yaml

        # the container ID.
        # The record reformer is used to extract pod_name, namespace_name and
        # container_name from the tag and set them in a local_resource_id in the
        # format of:
        # 'k8s_container.<NAMESPACE_NAME>.<POD_NAME>.<CONTAINER_NAME>'.
        # The reformer also changes the tags to 'stderr' or 'stdout' based on the
        # value of 'stream'.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 18.3K bytes
    - Viewed (0)
  5. 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)
  6. pkg/kubelet/reason_cache.go

    	"k8s.io/apimachinery/pkg/types"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    )
    
    // ReasonCache stores the failure reason of the latest container start
    // in a string, keyed by <pod_UID>_<container_name>. The goal is to
    // propagate this reason to the container status. This endeavor is
    // "best-effort" for two reasons:
    //  1. The cache is not persisted.
    //  2. We use an LRU cache to avoid extra garbage collection work. This
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  7. pkg/kubelet/prober/common_test.go

    	statustest "k8s.io/kubernetes/pkg/kubelet/status/testing"
    	kubeletutil "k8s.io/kubernetes/pkg/kubelet/util"
    	"k8s.io/kubernetes/pkg/probe"
    	"k8s.io/utils/exec"
    )
    
    const (
    	testContainerName = "cOnTaInEr_NaMe"
    	testPodUID        = "pOd_UiD"
    )
    
    var testContainerID = kubecontainer.ContainerID{Type: "test", ID: "cOnTaInEr_Id"}
    
    func getTestRunningStatus() v1.PodStatus {
    	return getTestRunningStatusWithStarted(true)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 12 16:57:26 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. cluster/addons/fluentd-gcp/fluentd-gcp-configmap-old.yaml

          @type tail
          path /var/log/containers/*.log
          pos_file /var/log/gcp-containers.log.pos
          # Tags at this point are in the format of:
          # reform.var.log.containers.<POD_NAME>_<NAMESPACE_NAME>_<CONTAINER_NAME>-<CONTAINER_ID>.log
          tag reform.*
          read_from_head true
          <parse>
            @type multi_format
            <pattern>
              format json
              time_key time
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 16.3K bytes
    - Viewed (0)
  9. 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)
  10. 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