Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 110 for 0123456789_ (0.26 sec)

  1. src/text/template/parse/lex.go

    	}
    	if len(digits) == 10+1 && l.accept("eE") {
    		l.accept("+-")
    		l.acceptRun("0123456789_")
    	}
    	if len(digits) == 16+6+1 && l.accept("pP") {
    		l.accept("+-")
    		l.acceptRun("0123456789_")
    	}
    	// Is it imaginary?
    	l.accept("i")
    	// Next thing mustn't be alphanumeric.
    	if isAlphaNumeric(l.peek()) {
    		l.next()
    		return false
    	}
    	return true
    }
    
    // lexQuote scans a quoted string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 22:36:12 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/localize_var_handles.mlir

    // CHECK-LABEL: module
    module attributes {tf_saved_model.semantics} {
      "tf_saved_model.global_tensor"() { is_mutable, sym_name = "v", type = tensor<10xf32>, value = dense<[0.,1.,2.,3.,4.,5.,6.,7.,8.,9.]> : tensor<10xf32> } : () -> ()
      // CHECK-LABEL: @read_from_global
      func.func @read_from_global(%arg0: tensor<!tf_type.resource<tensor<10xf32>>> {tf_saved_model.bound_input = @v})
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 23 21:12:02 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/lower_variable_ops_to_ml_program.mlir

      // CHECK: ml_program.global
      // CHECK-NOT: mutable
      // CHECK-SAME: vars.v(dense<[0{{.*}}1{{.*}}2{{.*}}3{{.*}}4{{.*}}5{{.*}}6{{.*}}7{{.*}}8{{.*}}9
      "tf_saved_model.global_tensor"() {
          is_mutable, sym_name = "v", type = tensor<10xf32>,
              value = dense<[0.,1.,2.,3.,4.,5.,6.,7.,8.,9.]> : tensor<10xf32> } : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 19 19:00:41 UTC 2022
    - 6K bytes
    - Viewed (0)
  4. cmd/testdata/xl-many-parts.meta

    ��������������������������������������������������������������������	�
    L4:���
    ������������������� �!�"�#�$�%�&�'�(�)�*�+�,�-�.�/�0�1�2�3�4�5�6�7�8�9�:�;�<�=�>�?�@�A�B�C�D�E�F�G�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�X�Y�Z�[�\�]�^�_�`�a�b�c�d�e�f�g�h�i�j�k�l�m�n�o�p�q�r�s�t�u�v�w�x�y�z�{�|�}�~������������������...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Sep 02 21:40:38 UTC 2023
    - 808.8K bytes
    - Viewed (0)
  5. src/text/scanner/scanner_test.go

    	{Int, "0X" + f100},
    
    	{Comment, "// floats"},
    	{Float, "0."},
    	{Float, "1."},
    	{Float, "42."},
    	{Float, "01234567890."},
    	{Float, ".0"},
    	{Float, ".1"},
    	{Float, ".42"},
    	{Float, ".0123456789"},
    	{Float, "0.0"},
    	{Float, "1.0"},
    	{Float, "42.0"},
    	{Float, "01234567890.0"},
    	{Float, "0e0"},
    	{Float, "1e0"},
    	{Float, "42e0"},
    	{Float, "01234567890e0"},
    	{Float, "0E0"},
    	{Float, "1E0"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 03:41:50 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/managedfields/endpoints.yaml

          uid: 11111111-2222-3333-4444-555555555555
      - ip: 10.0.0.1
        targetRef:
          kind: Pod
          name: pod-name-1234-0005
          namespace: default
          resourceVersion: '1234567890'
          uid: 11111111-2222-3333-4444-555555555555
      - ip: 10.0.0.1
        targetRef:
          kind: Pod
          name: pod-name-1234-0006
          namespace: default
          resourceVersion: '1234567890'
          uid: 11111111-2222-3333-4444-555555555555
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 183.9K bytes
    - Viewed (0)
  7. src/strings/reader_test.go

    	"io"
    	"strings"
    	"sync"
    	"testing"
    )
    
    func TestReader(t *testing.T) {
    	r := strings.NewReader("0123456789")
    	tests := []struct {
    		off     int64
    		seek    int
    		n       int
    		want    string
    		wantpos int64
    		readerr error
    		seekerr string
    	}{
    		{seek: io.SeekStart, off: 0, n: 20, want: "0123456789"},
    		{seek: io.SeekStart, off: 1, n: 1, want: "1"},
    		{seek: io.SeekCurrent, off: 1, wantpos: 3, n: 2, want: "34"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 5.9K bytes
    - Viewed (0)
  8. src/internal/types/testdata/check/expr3.go

    	_ = A0{}
    	_ = A0{0 /* ERRORx `index .* out of bounds` */}
    	_ = A0{0 /* ERRORx `index .* out of bounds` */ : 0}
    
    	type A1 [10]int
    	_ = A1{}
    	_ = A1{0, 1, 2}
    	_ = A1{0, 1, 2, 3, 4, 5, 6, 7, 8, 9}
    	_ = A1{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 /* ERRORx `index .* out of bounds` */ }
    	_ = A1{- /* ERROR "negative" */ 1: 0}
    	_ = A1{8: 8, 9}
    	_ = A1{8: 8, 9, 10 /* ERRORx `index .* out of bounds` */ }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 22:41:49 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/curl/io/ContentOutputStreamTest.java

            assertFalse(cos.done);
        }
    
        @Test
        public void inFile() throws IOException {
            ContentOutputStream cos = new ContentOutputStream(10, Curl.tmpDir);
            cos.write(new byte[] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 });
            assertFalse(cos.done);
            assertFalse(cos.isInMemory());
            File file = cos.getFile();
            assertTrue(cos.done);
            assertTrue(file.exists());
            cos.close();
    Registered: Wed Jun 12 08:29:43 UTC 2024
    - Last Modified: Mon Nov 14 21:05:19 UTC 2022
    - 2K bytes
    - Viewed (0)
  10. istioctl/pkg/dashboard/dashboard_test.go

    		},
    		{ // case 14
    			Args:           strings.Split("--browser=false controlz --selector app=example pod-123456-7890", " "),
    			ExpectedRegexp: regexp.MustCompile(".*Error: name cannot be provided when a selector is specified"),
    			WantException:  true,
    		},
    		{ // case 16
    			Args:           strings.Split("controlz --browser=false pod-123456-7890", " "),
    			ExpectedRegexp: regexp.MustCompile(".*http://localhost:3456"),
    			WantException:  false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 21 01:17:24 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top