Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for better (0.17 sec)

  1. cluster/gce/util.sh

      KONNECTIVITY_AGENT_CERT_DIR="${KUBE_TEMP}/easy-rsa-master/konnectivity-agent"
      if [ ! -x "${CERT_DIR}/easyrsa" ] || [ ! -x "${AGGREGATOR_CERT_DIR}/easyrsa" ]; then
        # TODO(roberthbailey,porridge): add better error handling here,
        # see https://github.com/kubernetes/kubernetes/issues/55229
        cat "${cert_create_debug_output}" >&2
        echo "=== Failed to setup easy-rsa: Aborting ===" >&2
        exit 2
      fi
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    		if !rt.IsDirectCallOrJump() && !isPLTCall(rt) {
    			continue
    		}
    		rs := r.Sym()
    		if !ldr.AttrReachable(rs) || ldr.SymType(rs) == sym.Sxxx {
    			continue // something is wrong. skip it here and we'll emit a better error later
    		}
    
    		if ldr.SymValue(rs) == 0 && ldr.SymType(rs) != sym.SDYNIMPORT && ldr.SymType(rs) != sym.SUNDEFEXT {
    			// Symbols in the same package are laid out together (if we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    		// expect to not have some container info. The pod worker knows whether a pod has
    		// been evicted, so if this is about minimizing the time to react to an eviction we
    		// can do better. If it's about preserving pod status info we can also do better.
    		if eviction.PodIsEvicted(pod.Status) {
    			if podStatus, err := kl.podCache.Get(pod.UID); err == nil {
    				kl.containerDeletor.deleteContainersInPod("", podStatus, true)
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    	handle := func(ctx context.Context, a *Action) {
    		if a.json != nil {
    			a.json.TimeStart = time.Now()
    		}
    		var err error
    		if a.Actor != nil && (!a.Failed || a.IgnoreFail) {
    			// TODO(matloob): Better action descriptions
    			desc := "Executing action (" + a.Mode
    			if a.Package != nil {
    				desc += " " + a.Package.Desc()
    			}
    			desc += ")"
    			ctx, span := trace.StartSpan(ctx, desc)
    			a.traceSpan = span
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

               /*default=*/"false",
               "Allows to switch on passthrough args for control flow logic. This "
               "allows the pass to create blocks that better match MLIR interfaces, "
               "but might break assumptions in existing passes.">
      ];
    }
    
    def RegionControlFlowToFunctionalPass : Pass<"tf-region-control-flow-to-functional", "ModuleOp"> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  6. src/net/http/server.go

    // The former matches paths beginning with "/images/thumbnails/"
    // and the latter will match any other path in the "/images/" subtree.
    //
    // As another example, consider the patterns "GET /" and "/index.html":
    // both match a GET request for "/index.html", but the former pattern
    // matches all other GET and HEAD requests, while the latter matches any
    // request for "/index.html" that uses a different method.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods.go

    	// but not yet deleted pods.
    	// TODO: this method could more aggressively cleanup terminated pods
    	// in the future (volumes, mount dirs, logs, and containers could all be
    	// better separated)
    	klog.V(3).InfoS("Clean up orphaned pod directories")
    	err = kl.cleanupOrphanedPodDirs(allPods, runningRuntimePods)
    	if err != nil {
    		// We want all cleanup tasks to be run even if one of them failed. So
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  8. pkg/config/validation/validation.go

    		return fmt.Errorf("header value configuration %s is invalid", value)
    	}
    
    	if err := validateHeaderValue(value); err != nil {
    		return fmt.Errorf("header value configuration: %w", err)
    	}
    
    	// TODO: find a better way to validate fields supported in custom header, e.g %ENVIRONMENT(X):Z%
    
    	return nil
    }
    
    // validateWeight checks if weight is valid
    func validateWeight(weight int32) error {
    	if weight < 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  9. src/net/http/serve_test.go

    		pr, pw := io.Pipe()
    		res, err := cst.c.Post(cst.ts.URL, "text/plain", pr)
    		if err != nil {
    			t.Fatal(err)
    		}
    		defer res.Body.Close()
    
    		// TODO(panjf2000): sleep is not so robust, maybe find a better way to test this?
    		time.Sleep(10 * time.Millisecond) // stall sending body to server to test server doesn't time out
    		pw.Write([]byte(reqBody))
    		pw.Close()
    
    		got, err := io.ReadAll(res.Body)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

            quant_parameters) {
      auto type = mlir::cast<TensorType>(value.getType());
    
      // TFLite requires tensor shape only for the inputs and constants.
      // However, we output all known shapes for better round-tripping
      auto check_shape =
          [&](llvm::ArrayRef<int64_t> shape_ref) -> mlir::LogicalResult {
        auto is_out_of_range = [](int64_t dim) {
          return dim > std::numeric_limits<int32_t>::max();
        };
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top