Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 343 for December (0.17 sec)

  1. hack/golangci.yaml

              #
              # By default, structured logging call parameters are checked, but usage of
              # those calls is not required. That is changed on a per-file basis.
              #
              # Remember to clean the golangci-lint cache when changing the configuration and
              # running the verify-golangci-lint.sh script multiple times, otherwise
              # golangci-lint will report stale results:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_settings_files.adoc

    == Settings File Scripting
    
    There are many more properties and methods on the `Settings` object that you can use to configure your build.
    
    It's important to remember that while many Gradle scripts are typically written in short Groovy or Kotlin syntax, every item in the settings script is essentially invoking a method on the `Settings` object in the Gradle API:
    
    [source,kotlin]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 04:15:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. hack/cherry_pick_pull.sh

          echo "+++ Conflicts detected:"
          echo
          (git status --porcelain | grep ^U) || echo "!!! None. Did you git am --continue?"
          echo
          echo "+++ Please resolve the conflicts in another window (and remember to 'git add / git am --continue')"
          read -p "+++ Proceed (anything other than 'y' aborts the cherry-pick)? [y/n] " -r
          echo
          if ! [[ "${REPLY}" =~ ^[yY]$ ]]; then
            echo "Aborting." >&2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 26 03:51:05 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-message.h

    namespace testing {
    
    // The Message class works like an ostream repeater.
    //
    // Typical usage:
    //
    //   1. You stream a bunch of values to a Message object.
    //      It will remember the text in a stringstream.
    //   2. Then you stream the Message object to an ostream.
    //      This causes the text in the Message to be streamed
    //      to the ostream.
    //
    // For example;
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. src/reflect/deepequal.go

    			addr1, addr2 = addr2, addr1
    		}
    
    		// Short circuit if references are already seen.
    		typ := v1.Type()
    		v := visit{addr1, addr2, typ}
    		if visited[v] {
    			return true
    		}
    
    		// Remember for later.
    		visited[v] = true
    	}
    
    	switch v1.Kind() {
    	case Array:
    		for i := 0; i < v1.Len(); i++ {
    			if !deepValueEqual(v1.Index(i), v2.Index(i), visited) {
    				return false
    			}
    		}
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:30 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. docs/pt/docs/tutorial/body-nested-models.md

    Sem ter que saber de antemão quais são os nomes de campos/atributos válidos (como seria o caso dos modelos Pydantic).
    
    Isso seria útil se você deseja receber chaves que ainda não conhece.
    
    ---
    
    Outro caso útil é quando você deseja ter chaves de outro tipo, por exemplo, `int`.
    
    É isso que vamos ver aqui.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. docs/pt/docs/tutorial/body.md

    <img src="/img/tutorial/body/image03.png">
    
    Você também poderá receber verificações de erros para operações de tipos incorretas:
    
    <img src="/img/tutorial/body/image04.png">
    
    Isso não é por acaso, todo o framework foi construído em volta deste design.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/Monitor.java

     *
     * <h3>{@code synchronized}</h3>
     *
     * <p>This version is the fewest lines of code, largely because the synchronization mechanism used
     * is built into the language and runtime. But the programmer has to remember to avoid a couple of
     * common bugs: The {@code wait()} must be inside a {@code while} instead of an {@code if}, and
     * {@code notifyAll()} must be used instead of {@code notify()} because there are two different
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 18:22:01 UTC 2023
    - 42.5K bytes
    - Viewed (0)
  9. cluster/addons/addon-manager/kube-addons.sh

    # Disabling this flag will force all addon managers to assume they are the
    # leaders.
    ADDON_MANAGER_LEADER_ELECTION=${ADDON_MANAGER_LEADER_ELECTION:-true}
    
    # Remember that you can't log from functions that print some output (because
    # logs are also printed on stdout).
    # $1 level
    # $2 message
    function log() {
      # manage log levels manually here
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 15 05:40:38 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-message.h

    namespace testing {
    
    // The Message class works like an ostream repeater.
    //
    // Typical usage:
    //
    //   1. You stream a bunch of values to a Message object.
    //      It will remember the text in a stringstream.
    //   2. Then you stream the Message object to an ostream.
    //      This causes the text in the Message to be streamed
    //      to the ostream.
    //
    // For example;
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top