Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for cmpord (0.49 sec)

  1. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    	STOSD:     "stos",
    	STOSQ:     "stos",
    	STOSW:     "stos",
    	XLATB:     "xlat",
    }
    
    var cmppsOps = []string{
    	"cmpeq",
    	"cmplt",
    	"cmple",
    	"cmpunord",
    	"cmpneq",
    	"cmpnlt",
    	"cmpnle",
    	"cmpord",
    }
    
    var pclmulqOps = []string{
    	"pclmullqlqdq",
    	"pclmulhqlqdq",
    	"pclmullqhqdq",
    	"pclmulhqhqdq",
    }
    
    func countPrefix(inst *Inst, target Prefix) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  2. src/cmd/gofmt/testdata/import.golden

    )
    
    import (
    	// a block with comments
    	"errors"
    	"fmt" // for Printf
    	"io"  // for Reader
    	"log" // for Fatal
    	"math"
    )
    
    import (
    	"fmt" // for Printf
    
    	"math"
    
    	"log" // for Fatal
    
    	"errors"
    
    	"io" // for Reader
    )
    
    import (
    	// for Printf
    	"fmt"
    
    	"math"
    
    	// for Fatal
    	"log"
    
    	"errors"
    
    	// for Reader
    	"io"
    )
    
    import (
    	"errors"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 28 23:33:26 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  3. src/go/ast/import.go

    package ast
    
    import (
    	"cmp"
    	"go/token"
    	"slices"
    	"strconv"
    )
    
    // SortImports sorts runs of consecutive import lines in import blocks in f.
    // It also removes duplicate imports when it is possible to do so without data loss.
    func SortImports(fset *token.FileSet, f *File) {
    	for _, d := range f.Decls {
    		d, ok := d.(*GenDecl)
    		if !ok || d.Tok != token.IMPORT {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. cmd/import-boss/testdata/simple-fwd/aaa/.import-restrictions

    rules:
      - selectorRegexp: k8s[.]io
        allowedPrefixes:
          - k8s.io/kubernetes/cmd/import-boss/testdata/simple-fwd/allowed
        forbiddenPrefixes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 222 bytes
    - Viewed (0)
  5. pkg/kubemark/.import-restrictions

    rules:
      # override pkg/ import restriction on cmd/ for kubemark
      - selectorRegexp: k8s[.]io/kubernetes/cmd
        allowedPrefixes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 13:47:54 UTC 2023
    - 172 bytes
    - Viewed (0)
  6. cmd/import-boss/testdata/nested-fwd/.import-restrictions

    rules:
      - selectorRegexp: k8s[.]io
        allowedPrefixes:
          - k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/allowed-by-root
          - k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/allowed-by-both
        forbiddenPrefixes:
          - k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/forbidden-by-root
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 396 bytes
    - Viewed (0)
  7. test/import.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that when import gives multiple names
    // to a single type, they still all refer to the same type.
    
    package main
    
    import _os_ "os"
    import "os"
    import . "os"
    
    func f(e *os.File)
    
    func main() {
    	var _e_ *_os_.File
    	var dot *File
    
    	f(_e_)
    	f(dot)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 07:47:26 UTC 2012
    - 425 bytes
    - Viewed (0)
  8. cmd/import-boss/testdata/inverse/allowed/.import-restrictions

    inverseRules:
      - selectorRegexp: k8s[.]io
        allowedPrefixes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 127 bytes
    - Viewed (0)
  9. cmd/import-boss/testdata/transitive/forbidden/.import-restrictions

    inverseRules:
      - selectorRegexp: k8s[.]io
        forbiddenPrefixes:
          - k8s.io/kubernetes/cmd/import-boss/testdata/transitive/aaa
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 153 bytes
    - Viewed (0)
  10. src/cmd/gofmt/testdata/import.input

    )
    
    import (
    	// a block with comments
    	"fmt" // for Printf
    	"math"
    	"log" // for Fatal
    	"errors"
    	"io" // for Reader
    )
    
    import (
    	"fmt" // for Printf
    
    	"math"
    
    	"log" // for Fatal
    
    	"errors"
    
    	"io" // for Reader
    )
    
    import (
    	// for Printf
    	"fmt"
    
    	"math"
    
    	// for Fatal
    	"log"
    
    	"errors"
    
    	// for Reader
    	"io"
    )
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 28 23:33:26 UTC 2019
    - 2.1K bytes
    - Viewed (0)
Back to top