Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 137 for iterations (0.25 sec)

  1. src/cmd/dist/test.go

    	var anyIncluded, someExcluded bool
    	for _, dt := range t.tests {
    		if !t.shouldRunTest(dt.name) {
    			someExcluded = true
    			continue
    		}
    		anyIncluded = true
    		dt := dt // dt used in background after this iteration
    		if err := dt.fn(&dt); err != nil {
    			t.runPending(&dt) // in case that hasn't been done yet
    			t.failed = true
    			if t.keepGoing {
    				log.Printf("Failed: %v", err)
    			} else {
    				fatalf("Failed: %v", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  2. cmd/bucket-handlers.go

    		// Not officially supported in POST requests.
    		apiErr := errorCodes.ToAPIErr(ErrMalformedPOSTRequest)
    		apiErr.Description = fmt.Sprintf("%s (%v)", apiErr.Description, errors.New("Trailing checksums not available for POST operations"))
    		writeErrorResponse(ctx, w, apiErr, r.URL)
    		return
    	}
    
    	formValues.Set("Bucket", bucket)
    	if fileName != "" && strings.Contains(formValues.Get("Key"), "${filename}") {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  3. src/net/http/client_test.go

    		t.Errorf("got Content-Type %q, want %q", g, e)
    	}
    	if tr.req.Close {
    		t.Error("got Close true, want false")
    	}
    	// Depending on map iteration, body can be either of these.
    	expectedBody := "foo=bar&foo=bar2&bar=baz"
    	expectedBody1 := "bar=baz&foo=bar&foo=bar2"
    	if g, e := tr.req.ContentLength, int64(len(expectedBody)); g != e {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    		},
    		{
    			name: "valid authentication configuration that uses unverified email value in list iteration",
    			in: &api.AuthenticationConfiguration{
    				JWT: []api.JWTAuthenticator{
    					{
    						Issuer: api.Issuer{
    							URL:       "https://issuer-url",
    							Audiences: []string{"audience"},
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/prepare-quantize.mlir

    // CHECK: %[[dq:.*]] = "tfl.dequantize"(%[[q]])
    // CHECK: return %[[dq]], %[[dq]]
    }
    
    // Series of values needing requantization -- first the args then the results
    // of concatenation operations. concat(concat(arg2, arg0), concat(arg1, arg0)),
    // concat(concat(arg2, arg0), arg3)). arg0 should be requantized twice --
    // concat(arg2, arg0) should be requantized twice as well.
    // CHECK-LABEL: QuantizedCatsAddRequantsTest
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  6. src/runtime/traceback.go

    // physical frame that u references.
    func traceback2(u *unwinder, showRuntime bool, skip, max int) (n, lastN int) {
    	// commitFrame commits to a logical frame and returns whether this frame
    	// should be printed and whether iteration should stop.
    	commitFrame := func() (pr, stop bool) {
    		if skip == 0 && max == 0 {
    			// Stop
    			return false, true
    		}
    		n++
    		lastN++
    		if skip > 0 {
    			// Skip
    			skip--
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/runtime/framework.go

    	framework.PodNominator
    
    	parallelizer parallelize.Parallelizer
    }
    
    // extensionPoint encapsulates desired and applied set of plugins at a specific extension
    // point. This is used to simplify iterating over all extension points supported by the
    // frameworkImpl.
    type extensionPoint struct {
    	// the set of plugins to be configured at this extension point.
    	plugins *config.PluginSet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  8. src/net/http/httputil/reverseproxy_test.go

    				cancel()
    				return nil
    			},
    		})
    
    		req, _ := http.NewRequestWithContext(ctx, "GET", "http://go.dev/", nil)
    		proxyHandler.ServeHTTP(rw, req)
    	}()
    	// Trigger data race while iterating over response headers.
    	// When run with -race, this causes the condition in https://go.dev/issue/65123 often
    	// enough to detect reliably.
    	for _ = range rw.Header() {
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  9. src/runtime/mprof.go

    	// to allocate one here. This will only happen for goroutines that were in a
    	// syscall when the goroutine profile started or for goroutines that manage
    	// to execute before we finish iterating over all the goroutines.
    	if pcbuf == nil {
    		pcbuf = makeProfStack()
    	}
    
    	var u unwinder
    	u.initAt(pc, sp, 0, gp, unwindSilentErrors)
    	n := tracebackPCs(&u, 0, pcbuf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. src/go/build/build.go

    			pkg = pkg[:len(pkg)-len("_test")]
    		}
    
    		if p.Name == "" {
    			p.Name = pkg
    			firstFile = name
    		} else if pkg != p.Name {
    			// TODO(#45999): The choice of p.Name is arbitrary based on file iteration
    			// order. Instead of resolving p.Name arbitrarily, we should clear out the
    			// existing name and mark the existing files as also invalid.
    			badGoFile(name, &MultiplePackageError{
    				Dir:      p.Dir,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
Back to top