Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for lineFor (0.17 sec)

  1. docs/metrics/prometheus/grafana/replication/minio-replication-node.json

                  "tooltip": false,
                  "viz": false
                },
                "insertNulls": false,
                "lineInterpolation": "linear",
                "lineWidth": 1,
                "pointSize": 5,
                "scaleDistribution": {
                  "type": "linear"
                },
                "showPoints": "never",
                "spanNulls": false,
                "stacking": {
                  "group": "A",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  2. docs/metrics/prometheus/grafana/minio-dashboard.json

                  "tooltip": false,
                  "viz": false
                },
                "insertNulls": false,
                "lineInterpolation": "linear",
                "lineWidth": 1,
                "pointSize": 5,
                "scaleDistribution": {
                  "type": "linear"
                },
                "showPoints": "never",
                "spanNulls": true,
                "stacking": {
                  "group": "A",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    			fatalf("%s: unexpected: %d-byte uchar type - %s", lineno(pos), t.Size, dtype)
    		}
    		t.Go = c.uint8
    		t.Align = 1
    
    	case *dwarf.UintType:
    		if dt.BitSize > 0 {
    			fatalf("%s: unexpected: %d-bit uint type - %s", lineno(pos), dt.BitSize, dtype)
    		}
    		switch t.Size {
    		default:
    			fatalf("%s: unexpected: %d-byte uint type - %s", lineno(pos), t.Size, dtype)
    		case 1:
    			t.Go = c.uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/decompose_resource_ops.mlir

    // CHECK-LABEL: testResourceApplyFtrl
    func.func @testResourceApplyFtrl(%var: tensor<*x!tf_type.resource>, %accum: tensor<*x!tf_type.resource>, %linear: tensor<*x!tf_type.resource>, %grad: tensor<*xf32>, %lr: tensor<*xf32>, %l1: tensor<*xf32>, %l2: tensor<*xf32>, %lr_power: tensor<*xf32>) -> () {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/css/manual.css

    }
    
    table.pyhltable td.code {
    	padding-left: .75em;
    	padding-right: 0;
    }
    
    pre.pygments .lineno,
    table.pyhltable td:not(.code) {
    	color: #999;
    	padding-left: 0;
    	padding-right: .5em;
    	border-right: 1px solid #ddddd8;
    }
    
    pre.pygments .lineno {
    	display: inline-block;
    	margin-right: .25em;
    }
    
    table.pyhltable .linenodiv {
    	background: none !important;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  6. src/runtime/traceback.go

    // pointer to a struct:
    //
    //	struct {
    //		PC      uintptr // program counter to fetch information for
    //		File    *byte   // file name (NUL terminated)
    //		Lineno  uintptr // line number
    //		Func    *byte   // function name (NUL terminated)
    //		Entry   uintptr // function entry point
    //		More    uintptr // set non-zero if more info for this PC
    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. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    def TF_XlaSparseCoreFtrlOp : TF_Op<"XlaSparseCoreFtrl", []> {
      let summary = "aaa";
    
      let arguments = (ins
        TF_Float32Tensor:$embedding_table,
        TF_Float32Tensor:$accumulator,
        TF_Float32Tensor:$linear,
        TF_Float32Tensor:$learning_rate,
        TF_Int32Tensor:$indices,
        TF_Float32Tensor:$gradient,
        TF_Float32Tensor:$beta,
        TF_Float32Tensor:$learning_rate_power,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  8. src/reflect/type.go

    				j = h // preserves f(j) == true
    			}
    		}
    		// i == j, f(i-1) == false, and f(j) (= f(i)) == true  =>  answer is i.
    
    		// Having found the first, linear scan forward to find the last.
    		// We could do a second binary search, but the caller is going
    		// to do a linear scan anyway.
    		for j := i; j < len(offs); j++ {
    			typ := rtypeOff(section, offs[j])
    			if stringFor(typ) != s {
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  9. src/runtime/mgc.go

    // (100 by default). If GOGC=100 and we're using 4M, we'll GC again when we get to 8M
    // (this mark is computed by the gcController.heapGoal method). This keeps the GC cost in
    // linear proportion to the allocation cost. Adjusting GOGC just changes the linear constant
    // (and also the amount of extra memory used).
    
    // Oblets
    //
    // In order to prevent long pauses while scanning large objects and to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  10. src/runtime/malloc.go

    	// iOS versions.
    	// TODO(mknyszek): Once iOS <14 is deprecated, promote ios/arm64
    	// to a 48-bit address space like every other arm64 platform.
    	//
    	// WebAssembly currently has a limit of 4GB linear memory.
    	heapAddrBits = (_64bit*(1-goarch.IsWasm)*(1-goos.IsIos*goarch.IsArm64))*48 + (1-_64bit+goarch.IsWasm)*(32-(goarch.IsMips+goarch.IsMipsle)) + 40*goos.IsIos*goarch.IsArm64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top