Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Guess (0.05 sec)

  1. hack/local-up-cluster.sh

                echo "Example 1: hack/local-up-cluster.sh -o _output/dockerized/bin/linux/amd64/ (run from docker output)"
                echo "Example 2: hack/local-up-cluster.sh -O (auto-guess the bin path for your platform)"
                echo "Example 3: hack/local-up-cluster.sh (build a local copy of the source)"
                echo "Example 4: FEATURE_GATES=CPUManagerPolicyOptions=true \\"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * <p>
         * You can combine this method with the {@link #copy(Action)}
         * method to untar a TAR file:
         *
         * <pre class='autoTested'>
         * task untar(type: Copy) {
         *   from tarTree('someCompressedTar.gzip')
         *
         *   //tar tree attempts to guess the compression based on the file extension
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  3. src/go/types/expr.go

    			// record the type for the array (usually done by check.typ which is not
    			// called for [...]T). We handle [...]T arrays and arrays with invalid
    			// length the same here because it makes sense to "guess" the length for
    			// the latter if we have a composite literal; e.g. for [n]int{1, 2, 3}
    			// where n is invalid for some reason, it seems fair to assume it should
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  4. src/net/http/request.go

    			}
    		default:
    			// This is where we'd set it to -1 (at least
    			// if body != NoBody) to mean unknown, but
    			// that broke people during the Go 1.8 testing
    			// period. People depend on it being 0 I
    			// guess. Maybe retry later. See Issue 18117.
    		}
    		// For client requests, Request.ContentLength of 0
    		// means either actually 0, or unknown. The only way
    		// to explicitly say that the ContentLength is zero is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  5. tests/integration/ambient/baseline_test.go

    			if err != nil {
    				t.Fatal(err)
    			}
    			// this is real odd but we're going to assume for now that we've just got the one waypoint I guess?
    			hbwl := echo.HBONE{
    				Address:            apps.WaypointProxies[apps.WorkloadAddressedWaypoint.Config().WorkloadWaypointProxy].Inbound(),
    				Headers:            nil,
    				Cert:               string(cert.ClientCert),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/expr.go

    			// record the type for the array (usually done by check.typ which is not
    			// called for [...]T). We handle [...]T arrays and arrays with invalid
    			// length the same here because it makes sense to "guess" the length for
    			// the latter if we have a composite literal; e.g. for [n]int{1, 2, 3}
    			// where n is invalid for some reason, it seems fair to assume it should
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  7. cmd/erasure-object.go

    		} else if kind != crypto.S3 {
    			// if we have a replication request
    			// and SSE-S3 is specified do not preserve
    			// the incoming etag.
    			userDefined["etag"] = opts.PreserveETag
    		}
    	}
    
    	// Guess content-type from the extension if possible.
    	if userDefined["content-type"] == "" {
    		userDefined["content-type"] = mimedb.TypeByExtension(path.Ext(object))
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loader/loader.go

    // Add syms, hashed (content-addressable) symbols, non-package symbols, and
    // references to external symbols (which are always named).
    func (l *Loader) LoadSyms(arch *sys.Arch) {
    	// Allocate space for symbols, making a guess as to how much space we need.
    	// This function was determined empirically by looking at the cmd/compile on
    	// Darwin, and picking factors for hashed and hashed64 syms.
    	var symSize, hashedSize, hashed64Size int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

    					n.Kind = "sconst"
    					n.Const = n.Define
    				}
    			}
    
    			if n.IsConst() {
    				continue
    			}
    		}
    
    		// If this is a struct, union, or enum type name, no need to guess the kind.
    		if strings.HasPrefix(n.C, "struct ") || strings.HasPrefix(n.C, "union ") || strings.HasPrefix(n.C, "enum ") {
    			n.Kind = "type"
    			needType = append(needType, n)
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top