Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 185 for spelling (0.15 sec)

  1. hack/verify-spelling.sh

    # limitations under the License.
    
    # This script checks commonly misspelled English words in all files in the
    # working directory by client9/misspell package.
    # Usage: `hack/verify-spelling.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    export KUBE_ROOT
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. .github/workflows/typos.yml

    ---
    name: Spelling
    on: [pull_request]
    
    jobs:
      run:
        name: Spell Check with Typos
        runs-on: ubuntu-latest
        steps:
        - name: Checkout Actions Repository
          uses: actions/checkout@v4
    
        - name: Check spelling of repo
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 17 00:36:28 UTC 2024
    - 266 bytes
    - Viewed (0)
  3. src/go/types/errsupport.go

    		ok           = iota
    		missing      // no object found
    		misspelled   // found object with different spelling
    		unexported   // found object with name differing only in first letter
    		inaccessible // found object with matching name but inaccessible from the current package
    	)
    
    	// determine case
    	e := missing
    	var alt string // alternative spelling of selector; if any
    	if obj != nil {
    		alt = obj.Name()
    		if obj.Pkg() == check.pkg {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/errsupport.go

    		ok           = iota
    		missing      // no object found
    		misspelled   // found object with different spelling
    		unexported   // found object with name differing only in first letter
    		inaccessible // found object with matching name but inaccessible from the current package
    	)
    
    	// determine case
    	e := missing
    	var alt string // alternative spelling of selector; if any
    	if obj != nil {
    		alt = obj.Name()
    		if obj.Pkg() == check.pkg {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 16:41:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/common/help.jsp

    		the end of the term you are searching.
    		<pre>Fess^100</pre>
    	</dd>
    	<dt>Fuzzy</dt>
    	<dd>
    		To do a fuzzy search use the "~" symbol at the end of a single word
    		term. For example to search for a term similar in spelling to "Fess"
    		use the fuzzy search:
    		<pre>Fess~0.5</pre>
    	</dd>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Feb 26 14:01:31 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types/goversion.go

    		}
    	}
    }
    
    // parseLang parses a -lang option into a langVer.
    func parseLang(s string) (lang, error) {
    	if s == "go1" { // cmd/go's new spelling of "go1.0" (#65528)
    		s = "go1.0"
    	}
    
    	matches := goVersionRE.FindStringSubmatch(s)
    	if matches == nil {
    		return lang{}, fmt.Errorf(`should be something like "go1.12"`)
    	}
    	major, err := strconv.Atoi(matches[1])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 21:36:02 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. src/runtime/signal_solaris.go

    	/* 34 */ {_SigNotify, "SIGFREEZE: special signal used by CPR"},
    	/* 35 */ {_SigNotify, "SIGTHAW: special signal used by CPR"},
    	/* 36 */ {_SigSetStack + _SigUnblock, "SIGCANCEL: reserved signal for thread cancellation"}, // Oracle's spelling of cancellation.
    	/* 37 */ {_SigNotify, "SIGLOST: resource lost (eg, record-lock lost)"},
    	/* 38 */ {_SigNotify, "SIGXRES: resource control exceeded"},
    	/* 39 */ {_SigNotify, "SIGJVM1: reserved signal for Java Virtual Machine"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 20:27:15 UTC 2019
    - 4.5K bytes
    - Viewed (0)
  8. hack/make-rules/verify.sh

      "verify-fieldname-docs.sh"
      "verify-gofmt.sh"
      "verify-imports.sh"
      "verify-non-mutating-validation.sh"
      "verify-pkg-names.sh"
      "verify-readonly-packages.sh"
      "verify-spelling.sh"
      "verify-staging-client-go.sh"
      "verify-staging-meta-files.sh"
      "verify-test-featuregates.sh"
      "verify-test-images.sh"
      "verify-vendor-licenses.sh"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 12:24:15 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. common/config/.golangci.yml

        # it's a comma-separated list of prefixes
        local-prefixes: istio.io/
      misspell:
        # Correct spellings using locale preferences for US or UK.
        # Default is to use a neutral variety of English.
        # Setting locale to US will correct the British spelling of 'colour' to 'color'.
        locale: US
        ignore-words:
          - cancelled
      lll:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/cfg/cfg.go

    		// depend on the executable's location.
    		return def
    	}
    
    	// canonical returns a directory path that represents
    	// the same directory as dir,
    	// preferring the spelling in def if the two are the same.
    	canonical := func(dir string) string {
    		if isSameDir(def, dir) {
    			return def
    		}
    		return dir
    	}
    
    	exe, err := os.Executable()
    	if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top