Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 72 for better (0.15 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

            quant_parameters) {
      auto type = mlir::cast<TensorType>(value.getType());
    
      // TFLite requires tensor shape only for the inputs and constants.
      // However, we output all known shapes for better round-tripping
      auto check_shape =
          [&](llvm::ArrayRef<int64_t> shape_ref) -> mlir::LogicalResult {
        auto is_out_of_range = [](int64_t dim) {
          return dim > std::numeric_limits<int32_t>::max();
        };
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    			delay *= 2
    		}
    		if delay > 10*1000 { // up to 10ms
    			delay = 10 * 1000
    		}
    		usleep(delay)
    
    		// sysmon should not enter deep sleep if schedtrace is enabled so that
    		// it can print that information at the right time.
    		//
    		// It should also not enter deep sleep if there are any active P's so
    		// that it can retake P's from syscalls, preempt long running G's, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  3. pkg/config/validation/validation_test.go

    				Expression: "connection.mtls && request.url_path.contains('v1beta3')",
    			},
    			valid: true,
    		},
    		{
    			filter: &telemetry.AccessLogging_Filter{
    				// TODO: find a better way to verify this
    				// this should be an invalid expression
    				Expression: "response.code",
    			},
    			valid: true,
    		},
    		{
    			filter: &telemetry.AccessLogging_Filter{
    				Expression: ")++++",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  4. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    ddns5.com
    
    // Debian : https://www.debian.org/
    // Submitted by Peter Palfrader / Debian Sysadmin Team <******@****.***>
    debian.net
    
    // Deno Land Inc : https://deno.com/
    // Submitted by Luca Casonato <******@****.***>
    deno.dev
    deno-staging.dev
    
    // deSEC : https://desec.io/
    // Submitted by Peter Thomassen <peter@desec.io>
    dedyn.io
    
    // Deta: https://www.deta.sh/
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    "gridPos": { "h": 1, "w": 24, "x": 0, "y": 0 }, "id": 106, "panels": [ { "content": "<div class=\"dashboard-header text-center\">\n<span>SERVICE: $service</span>\n</div>", "fieldConfig": { "defaults": { "custom": {} }, "overrides": [] }, "gridPos": { "h": 3, "w": 24, "x": 0, "y": 1 }, "id": 89, "links": [], "mode": "html", "options": { "content": "<div class=\"dashboard-header text-center\">\n<span>SERVICE: $service</span>\n</div>", "mode": "html" }, "pluginVersion": "7.1.0", "title": "", "transparent":...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  6. src/net/http/transport_test.go

    	test.cancel(tr, req)
    	test.cancel(tr, req) // used to panic on second call to Transport.Cancel
    
    	if d, ok := t.Deadline(); ok {
    		// When the test's deadline is about to expire, log the pending events for
    		// better debugging.
    		timeout := time.Until(d) * 19 / 20 // Allow 5% for cleanup.
    		timer := time.AfterFunc(timeout, func() {
    			panic(fmt.Sprintf("hang in %s. events are: %s", t.Name(), logbuf.String()))
    		})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    	0x06, 0x04, 0x06, 0x06, 0x04, 0x06, 0x05,
    }
    
    // regionISO holds a list of alphabetically sorted 2-letter ISO region codes.
    // Each 2-letter codes is followed by two bytes with the following meaning:
    //   - [A-Z}{2}: the first letter of the 2-letter code plus these two
    //     letters form the 3-letter ISO code.
    //   - 0, n:     index into altRegionISO3.
    const regionISO tag.Index = "" + // Size: 1312 bytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
  8. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"bath":                                 "\U0001f6c0",
    	"bathtub":                              "\U0001f6c1",
    	"battery":                              "\U0001f50b",
    	"beach_umbrella":                       "\U0001f3d6\ufe0f",
    	"bear":                                 "\U0001f43b",
    	"bearded_person":                       "\U0001f9d4",
    	"beaver":                               "\U0001f9ab",
    	"bed":                                  "\U0001f6cf\ufe0f",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  9. cmd/metrics-v2.go

    		// A is 65, a is 97
    		if v >= 'a' {
    			b.WriteRune(v)
    			continue
    		}
    		// v is capital letter here
    		// disregard first letter
    		// add underscore if last letter is capital letter
    		// add underscore when previous letter is lowercase
    		// add underscore when next letter is lowercase
    		if (i != 0 || i == l-1) && ((i > 0 && rune(camel[i-1]) >= 'a') ||
    			(i < l-1 && rune(camel[i+1]) >= 'a')) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    java.util.List componentDescriptors; public void Requirement(Object, java.util.List); public Object getAssignment(); public java.util.List getComponentDescript(); } org/codehaus/plexus/component/composition/setter/SetterComponentCompo.class package org.codehaus.plexus.component.composition.setter; public synchronized class SetterComponentCompo extends org.codehaus.plexus.component.composition.AbstractComponentCom { public static final String PROPERTY_DESCRIPTORS; public void SetterComponentCompo();...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 205.7K bytes
    - Viewed (0)
Back to top