Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for recurse (0.36 sec)

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

            shape.push_back(std::get<0>(shape_elts.value()));
          }
        }
      }
    
      // Some tensor have an element type wrapping a subtensor, like resource and
      // variants. In this case we may recurse on the wrapped subtype.
      // `element_type` will contain the refined inferred element type for the
      // returned type.
      auto lhs_element_type = lhs_shape_type.getElementType();
      auto rhs_element_type_with_subtype =
    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_pods.go

    		rro, err := resolveRecursiveReadOnly(mount, supportsRRO)
    		if err != nil {
    			return nil, cleanupAction, fmt.Errorf("failed to resolve recursive read-only mode: %w", err)
    		}
    		if rro && !utilfeature.DefaultFeatureGate.Enabled(features.RecursiveReadOnlyMounts) {
    			return nil, cleanupAction, fmt.Errorf("recursive read-only mount needs feature gate %q to be enabled", features.RecursiveReadOnlyMounts)
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  3. cmd/storage-datatypes_gen.go

    				default:
    					err = dc.Skip()
    					if err != nil {
    						err = msgp.WrapError(err, "BaseOptions")
    						return
    					}
    				}
    			}
    		case "r":
    			z.Recursive, err = dc.ReadBool()
    			if err != nil {
    				err = msgp.WrapError(err, "Recursive")
    				return
    			}
    		case "i":
    			z.Immediate, err = dc.ReadBool()
    			if err != nil {
    				err = msgp.WrapError(err, "Immediate")
    				return
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    }
    
    // SyncPod is the transaction script for the sync of a single pod (setting up)
    // a pod. This method is reentrant and expected to converge a pod towards the
    // desired state of the spec. The reverse (teardown) is handled in
    // SyncTerminatingPod and SyncTerminatedPod. If SyncPod exits without error,
    // then the pod runtime state is in sync with the desired configuration state
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

      echo "  This may time out if there was some uncaught error during start up."
      echo
    
      # curl in mavericks is borked.
      secure=""
      if which sw_vers >& /dev/null; then
        if [[ $(sw_vers | grep ProductVersion | awk '{print $2}') = "10.9."* ]]; then
          secure="--insecure"
        fi
      fi
    
      local start_time
      local curl_out
      start_time=$(date +%s)
      curl_out=$(mktemp)
    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/kubelet/kubelet_pods_test.go

    				{Name: "HOST_IP", Value: testKubeletHostIP},
    				{Name: "HOST_IPS", Value: testKubeletHostIP + "," + testKubeletHostIPv6},
    			},
    		},
    		{
    			name:               "downward api pod ips reverse order",
    			ns:                 "downward-api",
    			enableServiceLinks: &falseValue,
    			container: &v1.Container{
    				Env: []v1.EnvVar{
    					{
    						Name: "POD_IP",
    						ValueFrom: &v1.EnvVarSource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  7. src/cmd/go/alldocs.go

    // since the previous invocation and avoid redownloading information about it.
    // Modules that are not redownloaded will be marked in the new output by
    // setting the Reuse field to true. Normally the module cache provides this
    // kind of reuse automatically; the -reuse flag can be useful on systems that
    // do not preserve the module cache.
    //
    // For more about build flags, see 'go help build'.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top