Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 48 of 48 for Usages (0.21 sec)

  1. cluster/gce/gci/configure-helper.sh

      local container_runtime_name="${CONTAINER_RUNTIME_NAME:-containerd}"
      systemctl stop "$container_runtime_name"
      # Some images remount the container runtime root dir.
      umount "/var/lib/${container_runtime_name}" || true
      # Move the container runtime's directory to the new location to preserve
      # preloaded images.
      if [ ! -d "${ephemeral_mountpoint}/${container_runtime_name}" ]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // partitioned resource variables.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateTPUResourceReadsWritesPartitioningPass();
    
    // Creates a pass that looks for usage of the result of
    // TPUCopyWithDynamicShapeOp and annotate these values to be dynamic shape. This
    // ensures that the generated tpu program has the correct inputs annotation.
    std::unique_ptr<OperationPass<ModuleOp>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/analyzers_test.go

    		inputFiles: []string{"testdata/absolute-envoy-filter-operation.yaml"},
    		analyzer:   &envoyfilter.EnvoyPatchAnalyzer{},
    		expected:   []message{
    			// Test no messages are received for absolute operation usage
    		},
    	},
    	{
    		name:       "EnvoyFilterUsesReplaceOperation",
    		inputFiles: []string{"testdata/envoy-filter-replace-operation.yaml"},
    		analyzer:   &envoyfilter.EnvoyPatchAnalyzer{},
    		expected: []message{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  4. cmd/object-api-utils.go

    // ObjReaderFn is a function type that takes a reader and returns
    // GetObjectReader and an error. Request headers are passed to provide
    // encryption parameters. cleanupFns allow cleanup funcs to be
    // registered for calling after usage of the reader.
    type ObjReaderFn func(inputReader io.Reader, h http.Header, cleanupFns ...func()) (r *GetObjectReader, err error)
    
    // NewGetObjectReader creates a new GetObjectReader. The cleanUpFns
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller.go

    // indexes or invalid indexes or some pods don't have indexes.
    // Sorts candidate pods in the order such that not-ready < ready, unscheduled
    // < scheduled, and pending < running. This ensures that we delete pods
    // in the earlier stages whenever possible.
    func activePodsForRemoval(job *batch.Job, pods []*v1.Pod, rmAtLeast int) []*v1.Pod {
    	var rm, left []*v1.Pod
    
    	if isIndexedJob(job) {
    		rm = make([]*v1.Pod, 0, rmAtLeast)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	result := m.SyncPod(context.Background(), pod, &kubecontainer.PodStatus{}, []v1.Secret{}, backOff)
    	assert.NoError(t, result.Error())
    	assert.Equal(t, 2, len(fakeRuntime.Containers))
    	assert.Equal(t, 2, len(fakeImage.Images))
    	assert.Equal(t, 1, len(fakeRuntime.Sandboxes))
    	for _, sandbox := range fakeRuntime.Sandboxes {
    		assert.Equal(t, runtimeapi.PodSandboxState_SANDBOX_READY, sandbox.State)
    	}
    	for _, c := range fakeRuntime.Containers {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        `tf.entry_function` attribute will not be pruned, as such graphs/functions may
        have been imported from a V1 TensorFlow graph, where feeds/fetches/targets are
        not provided at certain stages of IR transformation (e.g. pre-placement).
    
        Option `ops-to-preserve` allows to specify ops that should not be pruned,
        regardless of their reachability.
    
        For example, the following:
    
        ```mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/ssa.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ssagen
    
    import (
    	"bufio"
    	"bytes"
    	"fmt"
    	"go/constant"
    	"html"
    	"internal/buildcfg"
    	"os"
    	"path/filepath"
    	"sort"
    	"strings"
    
    	"cmd/compile/internal/abi"
    	"cmd/compile/internal/base"
    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/liveness"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top