Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for atom (0.43 sec)

  1. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    grown so large in the last few minutes that she wasn't a bit
    afraid of interrupting him,) `I'll give him sixpence.  _I_ don't
    believe there's an atom of meaning in it.'
    
      The jury all wrote down on their slates, `SHE doesn't believe
    there's an atom of meaning in it,' but none of them attempted to
    explain the paper.
    
      `If there's no meaning in it,' said the King, `that saves a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    grown so large in the last few minutes that she wasn't a bit
    afraid of interrupting him,) `I'll give him sixpence.  _I_ don't
    believe there's an atom of meaning in it.'
    
      The jury all wrote down on their slates, `SHE doesn't believe
    there's an atom of meaning in it,' but none of them attempted to
    explain the paper.
    
      `If there's no meaning in it,' said the King, `that saves a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top