Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for resc (0.06 sec)

  1. src/net/http/transport_test.go

    			fmt.Fprintf(bodyw, "num%d\n", i)
    		}
    	}()
    	resc := make(chan *Response)
    	go func() {
    		req, _ := NewRequest("POST", "http://localhost:8080", bodyr)
    		req.Header.Set("User-Agent", "x") // known value for test
    		res, err := tr.RoundTrip(req)
    		if err != nil {
    			t.Errorf("RoundTrip: %v", err)
    			close(resc)
    			return
    		}
    		resc <- res
    
    	}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  2. docs/metrics/prometheus/grafana/bucket/minio-bucket.json

              "calcs": [],
              "displayMode": "list",
              "placement": "bottom",
              "showLegend": true
            },
            "tooltip": {
              "mode": "multi",
              "sort": "desc"
            }
          },
          "pluginVersion": "10.4.0",
          "targets": [
            {
              "datasource": {
                "type": "prometheus",
                "uid": "${DS_PROMETHEUS}"
              },
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 11:11:51 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  3. cmd/metrics-v2.go

    //
    //msgp:ignore minioNodeCollector
    type minioNodeCollector struct {
    	metricsGroups []*MetricsGroupV2
    	desc          *prometheus.Desc
    }
    
    // Describe sends the super-set of all possible descriptors of metrics
    func (c *minioNodeCollector) Describe(ch chan<- *prometheus.Desc) {
    	ch <- c.desc
    }
    
    // populateAndPublish populates and then publishes the metrics generated by the generator function.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

    // CHECK-LABEL: atan2
    // CHECK: %[[RES0:.*]] = "tfl.atan2"(%arg0, %arg1) : (tensor<8xf32>, tensor<8xf32>) -> tensor<8xf32>
    // CHECK:  return %[[RES0]] : tensor<8xf32>
    }
    
    func.func @sign(%arg0: tensor<8xf32>) -> tensor<8xf32> {
      %0 = "tf.Sign"(%arg0) : (tensor<8xf32>) -> tensor<8xf32>
      func.return %0 : tensor<8xf32>
    
    // CHECK-LABEL: sign
    // CHECK: %[[RES0:.*]] = "tfl.sign"(%arg0) : (tensor<8xf32>) -> tensor<8xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  5. pkg/api/pod/util_test.go

    	testCases := []struct {
    		desc           string
    		spec           *api.PodSpec
    		wantContainers []string
    		mask           ContainerType
    	}{
    		{
    			desc:           "empty podspec",
    			spec:           &api.PodSpec{},
    			wantContainers: []string{},
    			mask:           AllContainers,
    		},
    		{
    			desc: "regular containers",
    			spec: &api.PodSpec{
    				Containers: []api.Container{
    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. tensorflow/compiler/mlir/lite/tests/ops.mlir

      func.return %0 : tensor<1x640x!quant.uniform<i8:f32, 0.09671100229024887:10>>
    // CHECK: %[[RES0:.*]] = "tfl.no_value"() <{value}> : () -> none
    // CHECK: %[[RES1:.*]] = "tfl.lstm"(%arg0, %arg1, %arg2, %arg3, %arg4, %arg5, %arg6, %arg7, %arg8, %[[RES0]], %[[RES0]], %[[RES0]], %arg9, %arg10, %arg11, %arg12, %arg13, %arg14, %arg19, %arg20, %arg15, %arg16, %arg17, %arg18)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    		}
    		var err error
    		if a.Actor != nil && (!a.Failed || a.IgnoreFail) {
    			// TODO(matloob): Better action descriptions
    			desc := "Executing action (" + a.Mode
    			if a.Package != nil {
    				desc += " " + a.Package.Desc()
    			}
    			desc += ")"
    			ctx, span := trace.StartSpan(ctx, desc)
    			a.traceSpan = span
    			for _, d := range a.Deps {
    				trace.Flow(ctx, d.traceSpan, a.traceSpan)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. src/reflect/all_test.go

    				Chan: ch,
    				Send: val,
    			})
    			info = append(info, caseInfo{desc: "ready send", canSelect: true})
    		}
    
    		// Ready recv.
    		if x.Maybe() {
    			ch, val := newop(len(cases), 1)
    			ch.Send(val)
    			cases = append(cases, SelectCase{
    				Dir:  SelectRecv,
    				Chan: ch,
    			})
    			info = append(info, caseInfo{desc: "ready recv", canSelect: true, recv: val})
    		}
    
    		// Blocking send.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  9. src/net/http/serve_test.go

    		t.Run(tc.reqPath, func(t *testing.T) {
    			res, err := c.Get(ts.URL + tc.reqPath)
    			if err != nil {
    				t.Fatal(err)
    			}
    			res.Body.Close()
    			if tc.path == "" {
    				if res.StatusCode != StatusNotFound {
    					t.Errorf("got %q, want 404 Not Found", res.Status)
    				}
    				return
    			}
    			if res.StatusCode != StatusOK {
    				t.Fatalf("got %q, want 200 OK", res.Status)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  10. src/crypto/x509/x509_test.go

    	}
    	pub3 := new(rsa.PublicKey)
    	rest, err := asn1.Unmarshal(derBytes, pub3)
    	if err != nil {
    		t.Errorf("Unmarshal(rsa.PublicKey): %v", err)
    	}
    	if len(rest) != 0 || pub.N.Cmp(pub3.N) != 0 || pub.E != pub3.E {
    		t.Errorf("Unmarshal(rsa.PublicKey) = %+v, %q want %+v, %q", pub, rest, pub2, []byte(nil))
    	}
    
    	publicKeys := []struct {
    		derBytes          []byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
Back to top