Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 177 for mod$ (0.05 sec)

  1. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        return success();
      }
    };
    
    #include "tensorflow/compiler/mlir/lite/transforms/generated_lower_static_tensor_list.inc"
    
    bool ModuleContainsTensorListOp(ModuleOp mod) {
      auto res = mod->walk([&](mlir::Operation *op) -> WalkResult {
        if (op->getName().getStringRef().contains("TensorList")) {
          return WalkResult::interrupt();
        }
        return WalkResult::advance();
      });
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    Go test runs in two different modes:
    
    The first, called local directory mode, occurs when go test is
    invoked with no package arguments (for example, 'go test' or 'go
    test -v'). In this mode, go test compiles the package sources and
    tests found in the current directory and then runs the resulting
    test binary. In this mode, caching (discussed below) is disabled.
    After the package test finishes, go test prints a summary line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/proxier.go

    		)
    		if i != len(endpoints)-1 {
    			elements = append(elements, ",")
    		}
    	}
    	tx.Add(&knftables.Rule{
    		Chain: svcChain,
    		Rule: knftables.Concat(
    			"numgen random mod", len(endpoints), "vmap",
    			"{", elements, "}",
    		),
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.31.md

    - Kube-proxy's nftables mode (--proxy-mode=nftables) is now beta and available by default.
      
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  5. src/time/time_test.go

    	{0, `time.Now().UnixMicro()`, func() { u = Now().UnixMicro() }},
    }
    
    func TestCountMallocs(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping malloc count in short mode")
    	}
    	if runtime.GOMAXPROCS(0) > 1 {
    		t.Skip("skipping; GOMAXPROCS>1")
    	}
    	for _, mt := range mallocTest {
    		allocs := int(testing.AllocsPerRun(100, mt.fn))
    		if allocs > mt.count {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/api_test.go

    // or module is tagged with a newer version of Go than this go/types.
    func TestTooNew(t *testing.T) {
    	for _, test := range []struct {
    		goVersion   string // package's Go version (as if derived from go.mod file)
    		fileVersion string // file's Go version (becomes a build tag)
    		wantErr     string // expected substring of concatenation of all errors
    	}{
    		{"go1.98", "", "package requires newer Go version go1.98"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  7. src/go/types/api_test.go

    // or module is tagged with a newer version of Go than this go/types.
    func TestTooNew(t *testing.T) {
    	for _, test := range []struct {
    		goVersion   string // package's Go version (as if derived from go.mod file)
    		fileVersion string // file's Go version (becomes a build tag)
    		wantErr     string // expected substring of concatenation of all errors
    	}{
    		{"go1.98", "", "package requires newer Go version go1.98"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  8. docs/metrics/prometheus/grafana/minio-dashboard.json

                "spanNulls": true,
                "stacking": {
                  "group": "A",
                  "mode": "none"
                },
                "thresholdsStyle": {
                  "mode": "off"
                }
              },
              "mappings": [],
              "thresholds": {
                "mode": "absolute",
                "steps": [
                  {
                    "color": "green",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  9. docs/metrics/prometheus/grafana/replication/minio-replication-node.json

                "spanNulls": false,
                "stacking": {
                  "group": "A",
                  "mode": "none"
                },
                "thresholdsStyle": {
                  "mode": "off"
                }
              },
              "mappings": [],
              "thresholds": {
                "mode": "absolute",
                "steps": [
                  {
                    "color": "green",
                    "value": null
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  10. src/go/types/expr.go

    	if t, ok := x.typ.(*Tuple); ok && x.mode != invalid {
    		// multiple values
    		list = make([]*operand, t.Len())
    		for i, v := range t.vars {
    			list[i] = &operand{mode: value, expr: e, typ: v.typ}
    		}
    		return
    	}
    
    	// exactly one (possibly invalid or comma-ok) value
    	list = []*operand{&x}
    	if allowCommaOk && (x.mode == mapindex || x.mode == commaok || x.mode == commaerr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
Back to top