Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 176 for effort (0.43 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Node.yaml

          resourceVersion: resourceVersionValue
          uid: uidValue
      externalID: externalIDValue
      podCIDR: podCIDRValue
      podCIDRs:
      - podCIDRsValue
      providerID: providerIDValue
      taints:
      - effect: effectValue
        key: keyValue
        timeAdded: "2004-01-01T01:01:01Z"
        value: valueValue
      unschedulable: true
    status:
      addresses:
      - address: addressValue
        type: typeValue
      allocatable:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. hack/verify-external-dependencies-version.sh

    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    
    # Ensure that we find the binaries we build before anything else.
    export GOBIN="${KUBE_OUTPUT_BIN}"
    PATH="${GOBIN}:${PATH}"
    
    # Install zeitgeist
    go install sigs.k8s.io/zeitgeist@v0.5.3
    
    # Prefer full path for running zeitgeist
    ZEITGEIST_BIN="$(which zeitgeist)"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 08:20:31 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. cluster/gce/addons/konnectivity-agent/konnectivity-agent-ds.yaml

            k8s-app: konnectivity-agent
        spec:
          priorityClassName: system-cluster-critical
          tolerations:
            - key: "CriticalAddonsOnly"
              operator: "Exists"
            - operator: "Exists"
              effect: "NoExecute"
          nodeSelector:
            kubernetes.io/os: linux
          containers:
            - image: registry.k8s.io/kas-network-proxy/proxy-agent:v0.30.3
              name: konnectivity-agent
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 10:31:11 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. pkg/controller/podautoscaler/config/types.go

    	HorizontalPodAutoscalerCPUInitializationPeriod metav1.Duration
    	// HorizontalPodAutoscalerInitialReadinessDelay is period after pod start during which readiness
    	// changes are treated as readiness being set for the first time. The only effect of this is that
    	// HPA will disregard CPU samples from unready pods that had last readiness change during that
    	// period.
    	HorizontalPodAutoscalerInitialReadinessDelay metav1.Duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 19 09:49:23 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. src/runtime/ehooks_test.go

    func TestExitHooks(t *testing.T) {
    	bmodes := []string{""}
    	if testing.Short() {
    		t.Skip("skipping due to -short")
    	}
    	// Note the HasCGO() test below; this is to prevent the test
    	// running if CGO_ENABLED=0 is in effect.
    	haverace := platform.RaceDetectorSupported(runtime.GOOS, runtime.GOARCH)
    	if haverace && testenv.HasCGO() {
    		bmodes = append(bmodes, "-race")
    	}
    	for _, bmode := range bmodes {
    		scenarios := []struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. src/crypto/internal/boring/fipstls/tls.go

    )
    
    var required atomic.Bool
    
    // Force forces crypto/tls to restrict TLS configurations to FIPS-approved settings.
    // By design, this call is impossible to undo (except in tests).
    //
    // Note that this call has an effect even in programs using
    // standard crypto (that is, even when Enabled = false).
    func Force() {
    	required.Store(true)
    }
    
    // Abandon allows non-FIPS-approved settings.
    // If called from a non-test binary, it panics.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Node.json

        "podCIDRs": [
          "podCIDRsValue"
        ],
        "providerID": "providerIDValue",
        "unschedulable": true,
        "taints": [
          {
            "key": "keyValue",
            "value": "valueValue",
            "effect": "effectValue",
            "timeAdded": "2004-01-01T01:01:01Z"
          }
        ],
        "configSource": {
          "configMap": {
            "namespace": "namespaceValue",
            "name": "nameValue",
            "uid": "uidValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/utils/utils.h

        const std::string& input_filename, bool input_mlir,
        bool experimental_prune_unreachable_nodes_unconditionally,
        llvm::SourceMgr* source_mgr, mlir::MLIRContext* context);
    
    // Export the module to file, can be either mlir or flatbuffer.
    absl::Status ExportFlatbufferOrMlir(const std::string& output_filename,
                                        bool output_mlir, mlir::ModuleOp module,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 03:47:03 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate_registration.cc

      absl::flat_hash_set<tensorflow::Node*> control_ret_nodes;
      auto status = tensorflow::tf2xla::v2::ConvertMlirToGraph(
          module, confs, &graph, flib_def.get(), &control_ret_nodes);
      if (!status.ok()) {
        LOG(ERROR) << "Export to Graph failed: " << status;
        return mlir::failure();
      }
    
      // Use Host platform, which should always exist, to make sure graphs compile.
      auto platform = stream_executor::PlatformManager::PlatformWithId(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/analysis.go

    // If package P imports Q, all facts about Q produced during
    // analysis of that package will be available during later analysis of P.
    // Facts are analogous to type export data in a build system:
    // just as export data enables separate compilation of several passes,
    // facts enable "separate analysis".
    //
    // Each pass (a, p) starts with the set of facts produced by the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top