Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for mustIP (0.13 sec)

  1. pkg/config/validation/validation.go

    		return fmt.Errorf("connection pool must have at least one field")
    	}
    
    	if httpSettings := settings.Http; httpSettings != nil {
    		if httpSettings.Http1MaxPendingRequests < 0 {
    			errs = appendErrors(errs, fmt.Errorf("http1 max pending requests must be non-negative"))
    		}
    		if httpSettings.Http2MaxRequests < 0 {
    			errs = appendErrors(errs, fmt.Errorf("http2 max requests must be non-negative"))
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    // To eliminate ambiguity about which module versions are used in the build, the
    // arguments must satisfy the following constraints:
    //
    // - Arguments must be package paths or package patterns (with "..." wildcards).
    // They must not be standard packages (like fmt), meta-patterns (std, cmd,
    // all), or relative or absolute file paths.
    //
    // - All arguments must have the same version suffix. Different queries are not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/net/http/server.go

    //
    // A path can include wildcard segments of the form {NAME} or {NAME...}.
    // For example, "/b/{bucket}/o/{objectname...}".
    // The wildcard name must be a valid Go identifier.
    // Wildcards must be full path segments: they must be preceded by a slash and followed by
    // either a slash or the end of the string.
    // For example, "/b_{bucket}" is not a valid pattern.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    	//
    	// As an event-driven (by UpdatePod) controller, the podWorkers must periodically be resynced
    	// by the kubelet invoking SyncKnownPods with the desired state (admitted pods in podManager).
    	// Since the podManager may be unaware of some running pods due to force deletion, the
    	// podWorkers are responsible for triggering a sync of pods that are no longer desired but
    	// must still run to completion.
    	podWorkers PodWorkers
    
    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

    function create-cluster-autoscaler-mig-config() {
    
      # Each MIG must have at least one node, so the min number of nodes
      # must be greater or equal to the number of migs.
      if [[ ${AUTOSCALER_MIN_NODES} -lt 0 ]]; then
        echo "AUTOSCALER_MIN_NODES must be greater or equal 0"
        exit 2
      fi
    
      # Each MIG must have at least one node, so the min number of nodes
      # must be greater or equal to the number of migs.
    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. cluster/gce/gci/configure-helper.sh

        iptables -w -t nat -A IP-MASQ -m comment --comment "ip-masq: outbound traffic is subject to MASQUERADE (must be last in chain)" -j MASQUERADE
      fi
    
      # If METADATA_CONCEALMENT_NO_FIREWALL is set, don't create a firewall on this
      # node because we don't expect the daemonset to run on this node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods.go

    	// very rare for API pods, common for static pods with fixed UIDs). Containers that may still
    	// be running from a previous execution must be reconciled by the pod worker's sync method.
    	// We must use active pods because that is the set of admitted pods (podManager includes pods
    	// that will never be run, and statusManager tracks already rejected pods).
    	var restartCount, restartCountStatic int
    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. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

               << " which is invalid, since input tensor argument must has a "
               << "rank greater than 2.\n";
      }
    
      if (kernel_tensor_shape.size() <= 2) {
        return op.emitOpError()
               << "kernel tensor argument is " << kernel_tensor_shape.size()
               << " which is invalid, since kernel tensor argument must has a "
               << "rank greater than 2.\n";
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    	needBuild uint32 = 1 << iota
    	needCgoHdr
    	needVet
    	needCompiledGoFiles
    	needCovMetaFile
    	needStale
    )
    
    // build is the action for building a single package.
    // Note that any new influence on this logic must be reported in b.buildActionID above as well.
    func (b *Builder) build(ctx context.Context, a *Action) (err error) {
    	p := a.Package
    	sh := b.Shell(a)
    
    	bit := func(x uint32, b bool) uint32 {
    		if b {
    			return x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/data.go

    					o = ldr.SymValue(rs) + xadd
    				} else {
    					st.err.Errorf(s, "unhandled pcrel relocation to %s on %v", ldr.SymName(rs), target.HeadType)
    				}
    
    				break
    			}
    
    			// On AIX, a second relocation must be done by the loader,
    			// as section addresses can change once loaded.
    			// The "default" symbol address is still needed by the loader so
    			// the current relocation can't be skipped.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top