Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,408 for noteFn (0.13 sec)

  1. docs/en/docs/release-notes.md

    participant dep as Dep with yield
    participant operation as Path Operation
    participant tasks as Background tasks
    
        Note over client,tasks: Can raise exception for dependency, handled after response is sent
        Note over client,operation: Can raise HTTPException and can change the response
        client ->> dep: Start request
        Note over dep: Run code up to yield
        opt raise
            dep -->> handler: Raise HTTPException
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  2. src/regexp/testdata/testregex.c

    #ifndef REG_MINIMAL
    #define REG_MINIMAL	NOTEST
    #endif
    #ifndef REG_MULTIPLE
    #define REG_MULTIPLE	NOTEST
    #endif
    #ifndef REG_MULTIREF
    #define REG_MULTIREF	NOTEST
    #endif
    #ifndef REG_MUSTDELIM
    #define REG_MUSTDELIM	NOTEST
    #endif
    #ifndef REG_NEWLINE
    #define REG_NEWLINE	NOTEST
    #endif
    #ifndef REG_NOTBOL
    #define REG_NOTBOL	NOTEST
    #endif
    #ifndef REG_NOTEOL
    #define REG_NOTEOL	NOTEST
    #endif
    #ifndef REG_NULL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  3. docs_src/async_sql_databases/tutorial001.py

    
    @app.get("/notes/", response_model=List[Note])
    async def read_notes():
        query = notes.select()
        return await database.fetch_all(query)
    
    
    @app.post("/notes/", response_model=Note)
    async def create_note(note: NoteIn):
        query = notes.insert().values(text=note.text, completed=note.completed)
        last_record_id = await database.execute(query)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Mar 26 19:09:53 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/css/release-notes.css

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/files/misc/groovy/src/notes.txt.tmp

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - Viewed (0)
  6. src/cmd/go/testdata/script/test_badtest.txt

    stdout ^FAIL\tbadtest/badexec
    
    ! go test badtest/badsyntax
    ! stdout ^ok
    stdout ^FAIL\tbadtest/badsyntax
    
    ! go test badtest/badvar
    ! stdout ^ok
    stdout ^FAIL\tbadtest/badvar
    
    ! go test notest
    ! stdout ^ok
    stderr '^notest.hello.go:6:1: syntax error: non-declaration statement outside function body' # Exercise issue #7108
    
    -- badtest/badexec/x_test.go --
    package badexec
    
    func init() {
    	panic("badexec")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 06 15:47:54 UTC 2020
    - 805 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/files/misc/kotlin/src/notes.txt.tmp

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/note.go

    	"unicode/utf8"
    )
    
    // A Tree is a tree description, to be signed by a go.sum database server.
    type Tree struct {
    	N    int64
    	Hash Hash
    }
    
    // FormatTree formats a tree description for inclusion in a note.
    //
    // The encoded form is three lines, each ending in a newline (U+000A):
    //
    //	go.sum database tree
    //	N
    //	Hash
    //
    // where N is in decimal and Hash is in base64.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 29 20:10:15 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  9. releasenotes/notes/add-release-notes-generation.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: documentation
    issue:
    - https://github.com/istio/istio/issues/23622
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 254 bytes
    - Viewed (0)
  10. platforms/jvm/testing-junit-platform/build.gradle.kts

    This project should only be used by :testing-jvm-infrastructure, however it is not depended upon directly.
    Instead :testing-jvm-infrastructure loads classes from this project via reflection due to the above noted Java version issue.
    We make sure to include this subproject as a runtime dependency in :distributions-core to ensure we include it with the Gradle distribution.
    """
    
    dependencies {
        api(projects.stdlibJavaExtensions)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 986 bytes
    - Viewed (0)
Back to top