Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,060 for spill (0.14 sec)

  1. src/runtime/time_windows_386.s

    	MULL	CX
    	SHRL	$22, DX
    	MOVL	DX, BX
    	IMULL	$10000000, DX
    	MOVL	SI, CX
    	SUBL	DX, CX
    
    	// DI = sec/100 (still)
    	// BX = (nano/100%1e9)/1e7 = (nano/1e9)%100 = sec%100
    	// CX = (nano/100%1e9)%1e7 = (nano%1e9)/100 = nsec/100
    	// store nsec for return
    	IMULL	$100, CX
    	MOVL	CX, nsec+8(FP)
    
    	// DI = sec/100 (still)
    	// BX = sec%100
    	// construct DX:AX = 64-bit sec and store for return
    	MOVL	$0, DX
    	MOVL	$100, AX
    	MULL	DI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 17:19:45 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. tests/test_openapi_servers.py

    app = FastAPI(
        servers=[
            {"url": "/", "description": "Default, relative server"},
            {
                "url": "http://staging.localhost.tiangolo.com:8000",
                "description": "Staging but actually localhost still",
            },
            {"url": "https://prod.example.com"},
        ]
    )
    
    
    @app.get("/foo")
    def foo():
        return {"message": "Hello World"}
    
    
    client = TestClient(app)
    
    
    def test_app():
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_prefer_compatible.txt

    # (But asking for exactly v2.0.0+incompatible should still succeed.)
    go list -m github.com/russross/blackfriday@v2.0.0+incompatible
    stdout '^github.com/russross/blackfriday v2\.0\.0\+incompatible$'
    
    
    # However, if the latest compatible version does not include a go.mod file,
    # +incompatible versions should still be listed, as they may still reflect the
    # intent of the module author.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 17 18:25:37 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/work_vendor_main_module_replaced.txt

    # This is a test that if one of the main modules replaces the other
    # the vendor consistency checks still pass. The replacement is ignored
    # because it is of a main module, but it is still recorded in
    # vendor/modules.txt.
    
    go work vendor
    go list all # make sure the consistency checks pass
    ! stderr .
    
    # Removing the replace causes consistency checks to fail
    cp a_go_mod_no_replace a/go.mod
    ! go list all # consistency checks fail
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 18:09:22 UTC 2023
    - 895 bytes
    - Viewed (0)
  5. test/abi/spills3.go

    type i4 struct {
    	a, b, c, d int
    }
    
    //go:noinline
    func spills(px *i4) {
    }
    
    //go:registerparams
    //go:noinline
    func F(x i4) i4 {
    	ab := x.a + x.b
    	bc := x.b + x.c
    	cd := x.c + x.d
    	ad := x.a + x.d
    	ba := x.a - x.b
    	cb := x.b - x.c
    	dc := x.c - x.d
    	da := x.a - x.d
    	i := i4{ab*bc + da, cd*ad + cb, ba*cb + ad, dc*da + bc}
    	spills(&i)
    	return i
    }
    
    func main() {
    	x := i4{1, 2, 3, 4}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 826 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_lazy_downgrade.txt

    go get example.com/c@v0.1.0
    go list -m all
    stdout '^example.com/a v0.1.0 '
    stdout '^example.com/b v0.2.0 '
    stdout '^example.com/c v0.1.0 '
    
    # At this point, b.2 is still an explicit root, so its dependency on c
    # is still tracked, and it will still be downgraded away if we remove c.
    # ('go get' never makes a root into a non-root. Only 'go mod tidy' does that.)
    
    go get example.com/c@none
    go list -m all
    ! stdout '^example.com/a '
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  7. pkg/ledger/ledger.go

    // 2. given a previous hash, we can retrieve a previous state from the map, if it is still retained.
    type Ledger interface {
    	// Put adds or overwrites a key in the Ledger
    	Put(key, value string) (string, error)
    	// Delete removes a key from the Ledger, which may still be read using GetPreviousValue
    	Delete(key string) error
    	// Get returns a the value of the key from the Ledger's current state
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. tensorflow/cc/client/client_session.h

      /// `ClientSession::MakeCallable()`.
      typedef int64_t CallableHandle;
    
      /// \brief Creates a `handle` for invoking the subgraph defined by
      /// `callable_options`.
      /// NOTE: This API is still experimental and may change.
      Status MakeCallable(const CallableOptions& callable_options,
                          CallableHandle* out_handle);
    
      /// \brief Invokes the subgraph named by `handle` with the given options and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 20 08:11:46 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonAuthenticationIntegrationSpec.groovy

            then:
            failure.assertHasDescription("Unexpected authentication token in command")
            daemon.log.contains("Unexpected authentication token in command")
    
            and:
            // daemon is still running
            daemon.assertIdle()
        }
    
        def "daemon discards stop request that does not contain correct authentication token"() {
            given:
            buildSucceeds()
            def daemon = daemons.daemon
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/Callback.kt

       * response body is [closed][ResponseBody]. The recipient of the callback may consume the response
       * body on another thread.
       *
       * Note that transport-layer success (receiving a HTTP response code, headers and body) does not
       * necessarily indicate application-layer success: `response` may still indicate an unhappy HTTP
       * response code like 404 or 500.
       */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top