Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 65 for below (0.4 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // Worklist to direct partial evaluation.
      SmallVector<ValuePort, 4> worklist;
    
      // Simple evaluator that attempts to partially evaluate the input value even
      // if unable to evaluate the complete output. Below follows a simple stack
      // based evaluation where it queries what operands/part of operands need to
      // be evaluated and attempting to partially evaluate those operands. It does
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    	}
    
    	// trigger on-demand stats collection once so that we have capacity information for ephemeral storage.
    	// ignore any errors, since if stats collection is not successful, the container manager will fail to start below.
    	kl.StatsProvider.GetCgroupStats("/", true)
    	// Start container manager.
    	node, err := kl.getNodeAnyWay()
    	if err != nil {
    		// Fail kubelet and rely on the babysitter to retry starting kubelet.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue.go

    	// In this case, we need to keep reserving the NominatedNode when updating the pod pointer.
    	var nominatingInfo *framework.NominatingInfo
    	// We won't fall into below `if` block if the Update event represents:
    	// (1) NominatedNode info is added
    	// (2) NominatedNode info is updated
    	// (3) NominatedNode info is removed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  4. cmd/test-utils_test.go

    // response for anonymous/unsigned and unknown signature type HTTP request.
    
    // Here is the brief description of some of the arguments to the function below.
    //
    //	apiRouter - http.Handler with the relevant API endPoint (API endPoint under test) registered.
    //	anonReq   - unsigned *http.Request to invoke the handler's response for anonymous requests.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

        exit 2
      fi
    }
    
    # Runs the easy RSA commands to generate certificate files.
    # The generated files are IN ${CERT_DIR}
    #
    # Assumed vars (see shellcheck disable directives below)
    #   KUBE_TEMP
    #   MASTER_NAME
    #   CERT_DIR
    #   PRIMARY_CN: Primary canonical name
    #   SANS: Subject alternate names
    #
    #
    function generate-certs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. pkg/workloadapi/workload.pb.go

    		return x.Mode
    	}
    	return LoadBalancing_UNSPECIFIED_MODE
    }
    
    // Workload represents a workload - an endpoint (or collection behind a hostname).
    // The xds primary key is "uid" as defined on the workload below.
    // Secondary (alias) keys are the unique `network/IP` pairs that the workload can be reached at.
    type Workload struct {
    	state         protoimpl.MessageState
    	sizeCache     protoimpl.SizeCache
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  7. cmd/object-handlers_test.go

    		0, bytes.NewReader([]byte("testNilObjLayer")), "", "", nil)
    	if err != nil {
    		t.Errorf("MinIO %s: Failed to create http request for testing the response when object Layer is set to `nil`.", instanceType)
    	}
    
    	// Below is how CopyObjectPartHandler is registered.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  8. pkg/controller/job/job_controller.go

    	MaxJobPodFailureBackOff = 10 * time.Minute
    	// MaxUncountedPods is the maximum size the slices in
    	// .status.uncountedTerminatedPods should have to keep their representation
    	// roughly below 20 KB. Exported for tests
    	MaxUncountedPods = 500
    	// MaxPodCreateDeletePerSync is the maximum number of pods that can be
    	// created or deleted in a single sync call. Exported for tests.
    	MaxPodCreateDeletePerSync = 500
    )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  9. cmd/xl-storage.go

    	xioutil "github.com/minio/minio/internal/ioutil"
    	"github.com/minio/minio/internal/logger"
    	"github.com/pkg/xattr"
    )
    
    const (
    	nullVersionID = "null"
    
    	// Small file threshold below which data accompanies metadata from storage layer.
    	smallFileThreshold = 128 * humanize.KiByte // Optimized for NVMe/SSDs
    
    	// For hardrives it is possible to set this to a lower value to avoid any
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  10. RELEASE.md

            functions.
    
    ## Deprecations
    
    *   TensorFlow 1.7 may be the last time we support Cuda versions below 8.0.
        Starting with TensorFlow 1.8 release, 8.0 will be the minimum supported
        version.
    *   TensorFlow 1.7 may be the last time we support cuDNN versions below 6.0.
        Starting with TensorFlow 1.8 release, 6.0 will be the minimum supported
        version.
    
    ## Thanks to our Contributors
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top