Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for IDEA (0.17 sec)

  1. .github/ISSUE_TEMPLATE/11-language-change.yml

          placeholder: "Go, Python, JS, Rust"
        validations:
          required: false
    
      - type: checkboxes
        id: related-idea
        attributes:
          label: "Related Idea"
          options:
            - label: "Has this idea, or one like it, been proposed before?"
            - label: "Does this affect error handling?"
            - label: "Is this about generics?"
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Nov 22 20:49:24 GMT 2023
    - 4.7K bytes
    - Viewed (0)
  2. src/bufio/bufio_test.go

    			return
    		}
    	}
    }
    
    func createTestInput(n int) []byte {
    	input := make([]byte, n)
    	for i := range input {
    		// 101 and 251 are arbitrary prime numbers.
    		// The idea is to create an input sequence
    		// which doesn't repeat too frequently.
    		input[i] = byte(i % 251)
    		if i%101 == 0 {
    			input[i] ^= byte(i / 101)
    		}
    	}
    	return input
    }
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 10 18:56:01 GMT 2023
    - 51.5K bytes
    - Viewed (0)
Back to top