Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,270 for WAY (0.09 sec)

  1. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/antlr2/GenerationPlanBuilder.java

                } else if (generatedParserFile.lastModified() < generationPlan.getSource().lastModified()) {
                    generationPlan.markOutOfDate();
                }
    
                // see if the grammar if out-of-date by way of its super-grammar(s) as gleaned from parsing the grammar file
                if (!grammarMetadata.extendsStandardGrammar()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/request-forms.md

            Prefer to use the `Annotated` version if possible.
    
        ```Python hl_lines="1"
        {!> ../../../docs_src/request_forms/tutorial001.py!}
        ```
    
    ## Define `Form` parameters
    
    Create form parameters the same way you would for `Body` or `Query`:
    
    === "Python 3.9+"
    
        ```Python hl_lines="9"
        {!> ../../../docs_src/request_forms/tutorial001_an_py39.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="8"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/MonolithicNativeProjectGeneratorTask.groovy

     * arranged in a way to force the project to include the root directory as an input.
     *
     * We may also eventually include overlapping source directories, where a single directory is used
     * to build multiple components where none/some/a lot of the source files are shared between components
     * in a way that doesn't allow us to reuse the compilation steps (we don't do this now).
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/watch/filter.go

    	"sync"
    )
    
    // FilterFunc should take an event, possibly modify it in some way, and return
    // the modified event. If the event should be ignored, then return keep=false.
    type FilterFunc func(in Event) (out Event, keep bool)
    
    // Filter passes all events through f before allowing them to pass on.
    // Putting a filter on a watch, as an unavoidable side-effect due to the way
    // go channels work, effectively causes the watch's event channel to have its
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/example.com_retract_self_pseudo_v0.0.0-20200325131415-0123456789ab

    @latest endpoint. It should match the @latest version query.
    
    TODO(golang.org/issue/24031): the proxy and proxy.golang.org both return
    the highest release version from the @latest endpoint, even if that
    version is retracted, so there is no way for the go command to
    discover an unretracted pseudo-version.
    
    -- .mod --
    module example.com/retract/self/pseudo
    
    go 1.15
    
    -- .info --
    {"Version":"v0.0.0-20200325131415-01234567890ab"}
    
    -- p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:01 UTC 2020
    - 568 bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/testdata/httptest/main/main.go

    // A small test program that uses the net/http package. There is
    // nothing special about net/http here, this is just a convenient way
    // to pull in a lot of code.
    
    package main
    
    import (
    	"net/http"
    	"net/http/httptest"
    )
    
    type statusHandler int
    
    func (h *statusHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
    	w.WriteHeader(int(*h))
    }
    
    func main() {
    	status := statusHandler(http.StatusNotFound)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 20 15:46:11 UTC 2019
    - 464 bytes
    - Viewed (0)
  7. src/strings/compare.go

    package strings
    
    import "internal/bytealg"
    
    // Compare returns an integer comparing two strings lexicographically.
    // The result will be 0 if a == b, -1 if a < b, and +1 if a > b.
    //
    // Use Compare when you need to perform a three-way comparison (with
    // slices.SortFunc, for example). It is usually clearer and always faster
    // to use the built-in string comparison operators ==, <, >, and so on.
    func Compare(a, b string) int {
    	return bytealg.CompareString(a, b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 23:39:07 UTC 2024
    - 628 bytes
    - Viewed (0)
  8. docs/en/docs/how-to/index.md

    If something seems interesting and useful to your project, go ahead and check it, but otherwise, you might probably just skip them.
    
    !!! tip
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 19:54:04 UTC 2023
    - 591 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/readme-templates/native-library-summary.adoc.template

    * Build the library, which includes running its tests
    
    == Next Steps
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 676 bytes
    - Viewed (0)
  10. releasenotes/notes/49700.yaml

    be fairly straight forward. Annotate your namespace with the appropriate waypoint and it should function in a similar way.
    
          If you were using service account attachment there will be more to understand. Under the old waypoint logic all types of traffic, both addressed to a service as well as addressed to a workload, were treated similarly because there wasn't a good way to properly associate a waypoint to a service. With the new attachment this limitation has been resolved. This includes...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top