Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 64 for need (0.08 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/optimize.cc

              return failure();
            }
            int num_channels = filter_type.getShape()[0];
    
            // Create a zero tensor with shape {num_channels}, and the type need
            // to be the same as constant_val. This is a way to gracefully handle
            // scalar tensor. The Add will always be constant-folded away
            // regardless if `constant_val` is a scalar or not.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

            }
    
            @Override
            public ClassGenerationVisitor builder() {
                if (!decorate && !serviceInjection && !Modifier.isAbstract(type.getModifiers())) {
                    // Don't need to generate a subclass
                    return new NoOpBuilder(type);
                }
    
                int modifiers = type.getModifiers();
                if (Modifier.isPrivate(modifiers)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  10. src/net/http/server.go

    		}
    		for _, v := range w.handlerHeader[k] {
    			t.Add(k, v)
    		}
    	}
    	return t
    }
    
    // declareTrailer is called for each Trailer header when the
    // response header is written. It notes that a header will need to be
    // written in the trailers at the end of the response.
    func (w *response) declareTrailer(k string) {
    	k = CanonicalHeaderKey(k)
    	if !httpguts.ValidTrailerHeader(k) {
    		// Forbidden by RFC 7230, section 4.1.2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top