Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 42 for comp (0.14 sec)

  1. src/cmd/cgo/out.go

    		}
    		return
    	}
    
    	fatalf("cannot parse %s as ELF, Mach-O, PE or XCOFF", obj)
    }
    
    // checkImportSymName checks a symbol name we are going to emit as part
    // of a //go:cgo_import_dynamic pragma. These names come from object
    // files, so they may be corrupt. We are going to emit them unquoted,
    // so while they don't need to be valid symbol names (and in some cases,
    // involving symbol versions, they won't be) they must contain only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/loong64/asm.go

    		}
    
    	case C_SOREG:
    		if b == C_ZOREG {
    			return true
    		}
    	}
    
    	return false
    }
    
    type ocmp []Optab
    
    func (x ocmp) Len() int {
    	return len(x)
    }
    
    func (x ocmp) Swap(i, j int) {
    	x[i], x[j] = x[j], x[i]
    }
    
    func (x ocmp) Less(i, j int) bool {
    	p1 := &x[i]
    	p2 := &x[j]
    	n := int(p1.as) - int(p2.as)
    	if n != 0 {
    		return n < 0
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  3. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	for i := 0; i < nodeUpdateWorkerSize; i++ {
    		// Thanks to "workqueue", each worker just need to get item from queue, because
    		// the item is flagged when got from queue: if new event come, the new item will
    		// be re-queued until "Done", so no more than one worker handle the same item and
    		// no event missed.
    		go wait.UntilWithContext(ctx, nc.doNodeProcessingPassWorker, time.Second)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/xcoff.go

    			// Function within a file
    			syms = xfile.writeSymbolFunc(ctxt, x)
    		} else {
    			// Only runtime.text and runtime.etext come through this way
    			if name != "runtime.text" && name != "runtime.etext" && name != "go:buildid" {
    				Exitf("putaixsym: unknown text symbol %s", name)
    			}
    			s := &XcoffSymEnt64{
    				Nsclass: C_HIDEXT,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  5. src/go/types/api_test.go

    		}},
    		{`package p14; func _() { select{} }`, []string{
    			"file:", "func:",
    		}},
    		{`package p15; func _(c chan int) { select{ case <-c: } }`, []string{
    			"file:", "func:c", "comm:",
    		}},
    		{`package p16; func _(c chan int) { select{ case i := <-c: x := i; _ = x} }`, []string{
    			"file:", "func:c", "comm:i x",
    		}},
    		{`package p17; func _() { for{} }`, []string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  6. src/net/http/request.go

    }
    
    // readRequest should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/sagernet/sing
    //   - github.com/v2fly/v2ray-core/v4
    //   - github.com/v2fly/v2ray-core/v5
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname readRequest
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  7. src/cmd/dist/test.go

    		//
    		// In long test mode, this includes vendored packages and other
    		// packages without tests so that 'dist test' finds if any of
    		// them don't build, have a problem reported by high-confidence
    		// vet checks that come with 'go test', and anything else it
    		// may check in the future. See go.dev/issue/60463.
    		cmd := exec.Command(gorootBinGo, "list")
    		if t.short {
    			// In short test mode, use a format string to only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    // Fold boolean tests into blocks
    (NE (TESTB (SETL  cmp) (SETL  cmp)) yes no) => (LT  cmp yes no)
    (NE (TESTB (SETLE cmp) (SETLE cmp)) yes no) => (LE  cmp yes no)
    (NE (TESTB (SETG  cmp) (SETG  cmp)) yes no) => (GT  cmp yes no)
    (NE (TESTB (SETGE cmp) (SETGE cmp)) yes no) => (GE  cmp yes no)
    (NE (TESTB (SETEQ cmp) (SETEQ cmp)) yes no) => (EQ  cmp yes no)
    (NE (TESTB (SETNE cmp) (SETNE cmp)) yes no) => (NE  cmp yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    [source,java,indent=0]
    .src/main/java/com/acme/Person.java
    ----
    include::{snippetsPath}/java/fixtures/groovy/lib/src/main/java/com/acme/Person.java[tags=sample]
    ----
    
    A test fixture can be written in `src/testFixtures/java`:
    
    [source,java,indent=0]
    .src/testFixtures/java/com/acme/Simpsons.java
    ----
    include::{snippetsPath}/java/fixtures/groovy/lib/src/testFixtures/java/com/acme/Simpsons.java[tags=sample]
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  10. src/time/time.go

    //
    // absDate should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/phuslu/log
    //   - gitee.com/quant1x/gox
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname absDate
    func absDate(abs uint64, full bool) (year int, month Month, day int, yday int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
Back to top