Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for atom (0.08 sec)

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

        # expected to be small.
        # The atol value is arbitrary.
        if not enable_per_channel_quantization:
          expected_outputs = model.conv(input_data)
          target_outputs = converted_model.signatures['serving_default'](
              input_tensor=ops.convert_to_tensor(input_data)
          )
          self.assertAllClose(target_outputs, expected_outputs, atol=0.06)
    
        if target_opset == quant_opts_pb2.XLA:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  2. cmd/admin-handlers.go

    	enableSha256 := r.Form.Get("enableSha256") == "true"
    	enableMultipart := r.Form.Get("enableMultipart") == "true"
    
    	size, err := strconv.Atoi(sizeStr)
    	if err != nil {
    		size = 64 * humanize.MiByte
    	}
    
    	concurrent, err := strconv.Atoi(concurrentStr)
    	if err != nil {
    		concurrent = 32
    	}
    
    	duration, err := time.ParseDuration(durationStr)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  3. src/unicode/tables.go

    }
    
    // These variables have type *RangeTable.
    var (
    	Adlam                  = _Adlam                  // Adlam is the set of Unicode characters in script Adlam.
    	Ahom                   = _Ahom                   // Ahom is the set of Unicode characters in script Ahom.
    	Anatolian_Hieroglyphs  = _Anatolian_Hieroglyphs  // Anatolian_Hieroglyphs is the set of Unicode characters in script Anatolian_Hieroglyphs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 04:29:53 UTC 2023
    - 205.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    	}
    
    	// We have SWIG version 3.x.
    	if len(matches[2]) > 0 {
    		minor, err := strconv.Atoi(string(matches[2][1:]))
    		if err != nil {
    			return nil
    		}
    		if minor > 0 {
    			// 3.1 or later
    			return nil
    		}
    	}
    
    	// We have SWIG version 3.0.x.
    	if len(matches[3]) > 0 {
    		patch, err := strconv.Atoi(string(matches[3][1:]))
    		if err != nil {
    			return nil
    		}
    		if patch < 6 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"astonished":                           "\U0001f632",
    	"astronaut":                            "\U0001f9d1\u200d\U0001f680",
    	"athletic_shoe":                        "\U0001f45f",
    	"atm":                                  "\U0001f3e7",
    	"atom_symbol":                          "\u269b\ufe0f",
    	"australia":                            "\U0001f1e6\U0001f1fa",
    	"austria":                              "\U0001f1e6\U0001f1f9",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  6. pkg/scheduler/schedule_one_test.go

    func (pl *numericMapPlugin) Name() string {
    	return "NumericMap"
    }
    
    func (pl *numericMapPlugin) Score(_ context.Context, _ *framework.CycleState, _ *v1.Pod, nodeName string) (int64, *framework.Status) {
    	score, err := strconv.Atoi(nodeName)
    	if err != nil {
    		return 0, framework.NewStatus(framework.Error, fmt.Sprintf("Error converting nodename to int: %+v", nodeName))
    	}
    	return int64(score), nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  7. pkg/config/validation/validation.go

    						errMsg := "sidecar: defaultEndpoint must be of form 127.0.0.1:<port>,0.0.0.0:<port>,[::1]:port,[::]:port,unix://filepath or unset"
    						errs = AppendValidation(errs, fmt.Errorf(errMsg))
    					}
    					port, err := strconv.Atoi(sPort)
    					if err != nil {
    						errs = AppendValidation(errs, fmt.Errorf("sidecar: defaultEndpoint port (%s) is not a number: %v", sPort, err))
    					} else {
    						errs = AppendValidation(errs, agent.ValidatePort(port))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  8. src/crypto/x509/verify_test.go

    			return 0, fmt.Errorf("%v: %v\n%s", cmd, err, ee.Stderr)
    		}
    		return 0, fmt.Errorf("%v: %v", cmd, err)
    	}
    	before, _, ok := strings.Cut(string(out), ".")
    	major, err := strconv.Atoi(before)
    	if !ok || err != nil {
    		return 0, fmt.Errorf("%v: unexpected output: %q", cmd, out)
    	}
    
    	return major, nil
    }
    
    func TestIssue51759(t *testing.T) {
    	if runtime.GOOS != "darwin" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  9. src/net/http/serve_test.go

    func TestTimeoutHandlerRace(t *testing.T) { run(t, testTimeoutHandlerRace) }
    func testTimeoutHandlerRace(t *testing.T, mode testMode) {
    	delayHi := HandlerFunc(func(w ResponseWriter, r *Request) {
    		ms, _ := strconv.Atoi(r.URL.Path[1:])
    		if ms == 0 {
    			ms = 1
    		}
    		for i := 0; i < ms; i++ {
    			w.Write([]byte("hi"))
    			time.Sleep(time.Millisecond)
    		}
    	})
    
    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/internal/trace/traceviewer/static/webcomponents.min.js

    this.pending[e].push(t),!0;return this.cache[e]?(this.onload(e,t,this.cache[e]),this.tail(),!0):(this.pending[e]=[t],!1)},fetch:function(e,r){if(n.load&&console.log("fetch",e,r),e)if(e.match(/^data:/)){var o=e.split(","),i=o[0],a=o[1];a=i.indexOf(";base64")>-1?atob(a):decodeURIComponent(a),setTimeout(function(){this.receive(e,r,null,a)}.bind(this),0)}else{var s=function(t,n,o){this.receive(e,r,t,n,o)}.bind(this);t.load(e,s)}else setTimeout(function(){this.receive(e,r,{error:"href must be specified"},null)}.b...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 115.6K bytes
    - Viewed (0)
Back to top