Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for monday (0.3 sec)

  1. src/time/export_test.go

    	stdLongMonth:                    "January",
    	stdMonth:                        "Jan",
    	stdNumMonth:                     "1",
    	stdZeroMonth:                    "01",
    	stdLongWeekDay:                  "Monday",
    	stdWeekDay:                      "Mon",
    	stdDay:                          "2",
    	stdUnderDay:                     "_2",
    	stdZeroDay:                      "02",
    	stdUnderYearDay:                 "__2",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 19:23:32 UTC 2022
    - 4K bytes
    - Viewed (0)
  2. src/go/internal/gccgoimporter/testdata/time.gox

    const March <type 18> = 3 ;
    const May <type 18> = 5 ;
    const Microsecond <type 1> = 1000 ;
    const Millisecond <type 1> = 1000000 ;
    const Minute <type 1> = 60000000000 ;
    const Monday <type 19> = 1 ;
    type <type 18>;
    const Nanosecond <type 1> = 1 ;
    func NewTicker (d <type 1>) <type 45 *<type 46 "Ticker" <type 47 struct { C <type 48 chan <- <type 3>>; .time.r <type 36>; }>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 7.3K bytes
    - Viewed (0)
  3. .github/workflows/test.yml

    name: Test
    
    on:
      push:
        branches:
          - master
      pull_request:
        types:
          - opened
          - synchronize
      schedule:
        # cron every week on monday
        - cron: "0 0 * * 1"
    
    jobs:
      lint:
        runs-on: ubuntu-latest
        steps:
          - name: Dump GitHub context
            env:
              GITHUB_CONTEXT: ${{ toJson(github) }}
            run: echo "$GITHUB_CONTEXT"
          - uses: actions/checkout@v4
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 10 00:30:25 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. docs/pt/docs/tutorial/security/first-steps.md

    	Ex: `pip install python-multipart`.
    
    	Isso ocorre porque o **OAuth2** usa "dados de um formulário" para mandar o **username** e **senha**.
    
    Execute esse exemplo com:
    
    <div class="termy">
    
    ```console
    $ uvicorn main:app --reload
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/base/EnumsTest.java

    @J2ktIncompatible
    public class EnumsTest extends TestCase {
    
      private enum TestEnum {
        CHEETO,
        HONDA,
        POODLE,
      }
    
      public void testGetIfPresent() {
        assertThat(Enums.getIfPresent(TestEnum.class, "CHEETO")).hasValue(TestEnum.CHEETO);
        assertThat(Enums.getIfPresent(TestEnum.class, "HONDA")).hasValue(TestEnum.HONDA);
        assertThat(Enums.getIfPresent(TestEnum.class, "POODLE")).hasValue(TestEnum.POODLE);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/sys/cpu/cpu_gccgo_s390x.go

    //go:build gccgo
    
    package cpu
    
    // haveAsmFunctions reports whether the other functions in this file can
    // be safely called.
    func haveAsmFunctions() bool { return false }
    
    // TODO(mundaym): the following feature detection functions are currently
    // stubs. See https://golang.org/cl/162887 for how to fix this.
    // They are likely to be expensive to call so the results should be cached.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/variants/groovy/src/hello/cpp/hello.cpp

    #include <iostream>
    #include "hello.h"
    
    void LIB_FUNC hello () {
      #ifdef FRENCH
      std::cout << "Bonjour monde!" << std::endl;
      #else
      std::cout << "Hello world!" << std::endl;
      #endif
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 190 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/java/application/groovy/src/main/java/org/gradle/sample/Main.java

            if (System.getProperty("greeting.language").equals("en")) {
                System.out.println("Greetings from the sample application.");
            } else {
                System.out.println("Bonjour, monde!");
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 321 bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/fuse_comparisons.go

    	// If the second (false) successors match then we have a conjunction (&&).
    	for i, op := range [2]Op{OpOrB, OpAndB} {
    		if p.Succs[i].Block() != b.Succs[i].Block() {
    			continue
    		}
    
    		// TODO(mundaym): should we also check the cost of executing b?
    		// Currently we might speculatively execute b even if b contains
    		// a lot of instructions. We could just check that len(b.Values)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 4K bytes
    - Viewed (0)
  10. docs/de/docs/fastapi-people.md

    * Pull Requests überprüfen (Review), [besonders wichtig für Übersetzungen](contributing.md#ubersetzungen){.internal-link target=_blank}.
    
    Eine Runde Applaus für sie. 👏 🙇
    
    ## Aktivste Benutzer im letzten Monat
    
    Hier die Benutzer, die im letzten Monat am meisten [anderen mit Fragen auf Github](help-fastapi.md#anderen-bei-fragen-auf-github-helfen){.internal-link target=_blank} geholfen haben. ☕
    
    {% if people %}
    <div class="user-list user-list-center">
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:10:01 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top