Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 0o8123 (0.13 sec)

  1. src/cmd/compile/internal/syntax/scanner_test.go

    		// octals
    		{IntLit, "0o0", "0o0", ""},
    		{IntLit, "0o1234", "0o1234", ""},
    		{IntLit, "0O1234", "0O1234", ""},
    
    		{IntLit, "0o", "0o", "octal literal has no digits"},
    		{IntLit, "0o8123", "0o8123", "invalid digit '8' in octal literal"},
    		{IntLit, "0o1293", "0o1293", "invalid digit '9' in octal literal"},
    		{IntLit, "0o12a3", "0o12 a3", ""}, // only accept 0-9
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  2. src/text/scanner/scanner_test.go

    		// octals
    		{Int, "0o0", "0o0", ""},
    		{Int, "0o1234", "0o1234", ""},
    		{Int, "0O1234", "0O1234", ""},
    
    		{Int, "0o", "0o", "octal literal has no digits"},
    		{Int, "0o8123", "0o8123", "invalid digit '8' in octal literal"},
    		{Int, "0o1293", "0o1293", "invalid digit '9' in octal literal"},
    		{Int, "0o12a3", "0o12 a3", ""}, // only accept 0-9
    
    		// octal floats (invalid)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 03:41:50 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  3. src/go/scanner/scanner_test.go

    		// octals
    		{token.INT, "0o0", "0o0", ""},
    		{token.INT, "0o1234", "0o1234", ""},
    		{token.INT, "0O1234", "0O1234", ""},
    
    		{token.INT, "0o", "0o", "octal literal has no digits"},
    		{token.INT, "0o8123", "0o8123", "invalid digit '8' in octal literal"},
    		{token.INT, "0o1293", "0o1293", "invalid digit '9' in octal literal"},
    		{token.INT, "0o12a3", "0o12 a3", ""}, // only accept 0-9
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  4. src/go/constant/value_test.go

    	"testing"
    )
    
    var intTests = []string{
    	// 0-octals
    	`0_123 = 0123`,
    	`0123_456 = 0123456`,
    
    	// decimals
    	`1_234 = 1234`,
    	`1_234_567 = 1234567`,
    
    	// hexadecimals
    	`0X_0 = 0`,
    	`0X_1234 = 0x1234`,
    	`0X_CAFE_f00d = 0xcafef00d`,
    
    	// octals
    	`0o0 = 0`,
    	`0o1234 = 01234`,
    	`0o01234567 = 01234567`,
    
    	`0O0 = 0`,
    	`0O1234 = 01234`,
    	`0O01234567 = 01234567`,
    
    	`0o_0 = 0`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 15.6K bytes
    - Viewed (0)
  5. tensorflow/cc/gradients/nn_grad.cc

          (*grad_outputs)[0] = Transpose(scope, (*grad_outputs)[0], {0, 3, 1, 2});
        } else if (data_format == "NCDHW") {
          (*grad_outputs)[0] =
              Transpose(scope, (*grad_outputs)[0], {0, 4, 1, 2, 3});
        }
        return scope.status();
      }
    }
    
    Status FusedBatchNormV3Grad(const Scope& scope, const Operation& op,
                                const std::vector<Output>& grad_inputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 23:34:33 UTC 2022
    - 24.5K bytes
    - Viewed (0)
Back to top