Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 150 for need (0.11 sec)

  1. cmd/object-handlers.go

    	// if encryption is enabled we do not need explicit "REPLACE" metadata to
    	// be enabled as well - this is to allow for key-rotation.
    	if !isDirectiveReplace(r.Header.Get(xhttp.AmzMetadataDirective)) && !isDirectiveReplace(r.Header.Get(xhttp.AmzTagDirective)) &&
    		srcInfo.metadataOnly && srcOpts.VersionID == "" && !objectEncryption {
    		// If x-amz-metadata-directive is not set to REPLACE then we need
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // Inserts a placeholder node in the graph to replace a feed output tensor,
      // and returns the new placeholder node and a boolean indicating if the
      // original input node was removed from the graph. Uses of the feed output
      // tensor are replaced with this placeholder node. If the feed output tensor
      // is of a single output node, the control dependencies are forwarded to the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    	fakeNow := metav1.Date(2015, 1, 1, 12, 0, 0, 0, time.UTC)
    
    	// Because of the logic that prevents NC from evicting anything when all Nodes are NotReady
    	// we need second healthy node in tests. Because of how the tests are written we need to update
    	// the status of this Node.
    	healthyNodeNewStatus := v1.NodeStatus{
    		Conditions: []v1.NodeCondition{
    			{
    				Type:   v1.NodeReady,
    				Status: v1.ConditionTrue,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  4. cluster/gce/util.sh

    ETCD_DOCKER_REPOSITORY: $(yaml-quote "${ETCD_DOCKER_REPOSITORY}")
    EOF
        fi
        # ETCD_VERSION (if set) allows you to use custom version of etcd.
        # The main purpose of using it may be rollback of etcd v3 API,
        # where we need 3.0.* image, but are rolling back to 2.3.7.
        if [ -n "${ETCD_VERSION:-}" ]; then
          cat >>"$file" <<EOF
    ETCD_VERSION: $(yaml-quote "${ETCD_VERSION}")
    EOF
        fi
        if [ -n "${ETCD_HOSTNAME:-}" ]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  5. fastapi/applications.py

                ),
            ] = None,
            deprecated: Annotated[
                Optional[bool],
                Doc(
                    """
                    Mark all *path operations* as deprecated. You probably don't need it,
                    but it's available.
    
                    It will be added to the generated OpenAPI (e.g. visible at `/docs`).
    
                    Read more about it in the
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    	// when -buildvcs=auto (the default).
    	AutoVCS bool
    
    	// SuppressBuildInfo is true if the caller does not need p.Stale, p.StaleReason, or p.Internal.BuildInfo
    	// to be populated on the package.
    	SuppressBuildInfo bool
    
    	// SuppressEmbedFiles is true if the caller does not need any embed files to be populated on the
    	// package.
    	SuppressEmbedFiles bool
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. fastapi/routing.py

            self.dependencies = list(dependencies or [])
            self.description = description or inspect.cleandoc(self.endpoint.__doc__ or "")
            # if a "form feed" character (page break) is found in the description text,
            # truncate description text to the content preceding the first "form feed"
            self.description = self.description.split("\f")[0].strip()
            response_fields = {}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-helper.sh

    }
    
    # Sets up the manifests of netd for k8s addons.
    function setup-netd-manifest {
      local -r netd_file="${dst_dir}/netd/netd.yaml"
      mkdir -p "${dst_dir}/netd"
      touch "${netd_file}"
      if [ -n "${CUSTOM_NETD_YAML:-}" ]; then
        # Replace with custom GCP netd deployment.
        cat > "${netd_file}" <<EOF
    $CUSTOM_NETD_YAML
    EOF
      fi
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  9. pkg/api/pod/util_test.go

    						}
    						// new pod should not have ProcMount
    						if procMountInUse(&newPod.Spec) {
    							t.Errorf("new pod had ProcMount: %#v", &newPod.Spec)
    						}
    					default:
    						// new pod should not need to be changed
    						if !reflect.DeepEqual(newPod, newPodInfo.pod()) {
    							t.Errorf("new pod changed: %v", cmp.Diff(newPod, newPodInfo.pod()))
    						}
    					}
    				})
    			}
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Maps.java

       * <p>Since this method uses {@code HashMap} instances internally, the keys of the supplied maps
       * must be well-behaved with respect to {@link Object#equals} and {@link Object#hashCode}.
       *
       * <p><b>Note:</b>If you only need to know whether two maps have the same mappings, call {@code
       * left.equals(right)} instead of this method.
       *
       * @param left the map to treat as the "left" map for purposes of comparison
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
Back to top