Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 55 for msan (0.4 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

            Returns:
              A map of: output key -> output result.
            """
            scale = [1.0] * self.out_channel_size
            offset = [0.5] * self.out_channel_size
            mean, variance = scale, offset
            out = nn_ops.depthwise_conv2d_native(
                input_tensor,
                self.filters,
                strides=[1, 2, 2, 1],
                dilations=[1, 1, 1, 1],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  2. docs/metrics/prometheus/grafana/minio-dashboard.json

          "options": {
            "colorMode": "value",
            "graphMode": "none",
            "justifyMode": "auto",
            "orientation": "auto",
            "reduceOptions": {
              "calcs": [
                "mean"
              ],
              "fields": "",
              "values": false
            },
            "showPercentChange": false,
            "text": {},
            "textMode": "auto",
            "wideLayout": true
          },
    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/net/http/request.go

    			snapshot := *v
    			req.GetBody = func() (io.ReadCloser, error) {
    				r := snapshot
    				return io.NopCloser(&r), nil
    			}
    		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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	NameUserPrincipal    = 8
    	NameCanonicalEx      = 9
    	NameServicePrincipal = 10
    	NameDnsDomain        = 12
    )
    
    // This function returns 1 byte BOOLEAN rather than the 4 byte BOOL.
    // http://blogs.msdn.com/b/drnick/archive/2007/12/19/windows-and-upn-format-credentials.aspx
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  5. src/go/printer/nodes.go

    	// initialize expression/key size: a zero value indicates expr/key doesn't fit on a single line
    	size := 0
    
    	// We use the ratio between the geometric mean of the previous key sizes and
    	// the current size to determine if there should be a break in the alignment.
    	// To compute the geometric mean we accumulate the ln(size) values (lnsum)
    	// and the number of sizes included (count).
    	lnsum := 0.0
    	count := 0
    
    	// print all list elements
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  6. tensorflow/cc/gradients/math_grad.cc

    }
    REGISTER_GRADIENT_OP("Sum", SumGrad);
    
    Status MeanGrad(const Scope& scope, const Operation& op,
                    const std::vector<Output>& grad_inputs,
                    std::vector<Output>* grad_outputs) {
      // The Mean gradient is just like the Sum gradient, except that
      // all gradients are also divided by the size of reduced groups.
      auto sum_grad = SumGradHelper(scope, op, grad_inputs);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/prove.go

    }
    
    // domain represents the domain of a variable pair in which a set
    // of relations is known. For example, relations learned for unsigned
    // pairs cannot be transferred to signed pairs because the same bit
    // representation can mean something else.
    type domain uint
    
    const (
    	signed domain = 1 << iota
    	unsigned
    	pointer
    	boolean
    )
    
    var domainStrings = [...]string{
    	"signed", "unsigned", "pointer", "boolean",
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    ====
    
    However:
    
    - Gradle only supports verification of signatures published on remote repositories as ASCII-armored PGP files
    - Not all artifacts are published with signatures
    - A good signature doesn't mean that the signatory was legit
    
    As a consequence, signature verification will often be used alongside checksum verification.
    
    .About expired keys
    --
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  9. cmd/xl-storage-format-v2.go

    // its contents and false otherwise.
    func (x xlMetaV2VersionHeader) UsesDataDir() bool {
    	return x.Flags&xlFlagUsesDataDir != 0
    }
    
    // InlineData returns whether inline data has been set.
    // Note that false does not mean there is no inline data,
    // only that it is unlikely.
    func (x xlMetaV2VersionHeader) InlineData() bool {
    	return x.Flags&xlFlagInlineData != 0
    }
    
    // signatureErr is a signature returned when an error occurs.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. src/encoding/json/decode_test.go

    			if !reflect.DeepEqual(tt.ptr, v.Interface()) {
    				// There's no reason for ptr to point to non-zero data,
    				// as we decode into new(right-type), so the data is
    				// discarded.
    				// This can easily mean tests that silently don't test
    				// what they should. To test decoding into existing
    				// data, see TestPrefilled.
    				t.Fatalf("%s: unmarshalTest.ptr %#v is not a pointer to a zero value", tt.Where, tt.ptr)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
Back to top