Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 259 for Pearson (0.09 sec)

  1. guava-tests/test/com/google/common/base/StandardSystemPropertyTest.java

        for (StandardSystemProperty property : StandardSystemProperty.values()) {
          // Even though the contract in System.getProperties() specifies that a value will exist for
          // all of the listed keys, for some reason the "java.compiler" key returns null in some JVMs.
          if (property == JAVA_COMPILER) {
            continue;
          }
          // Removed in Java 9:
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/metadata.md

    | `license_info`...
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  3. .github/ISSUE_TEMPLATE/bug_report.md

    <!--- If suggesting a change/improvement, explain the difference from current behavior -->
    
    ## Possible Solution
    <!--- Not obligatory, but suggest a fix/reason for the bug, -->
    <!--- or ideas how to implement the addition or change -->
    
    ## Steps to Reproduce (for bugs)
    <!--- Provide a link to a live example, or an unambiguous set of steps to -->
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Jan 20 17:37:40 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  4. docs/iam/identity-manager-plugin.go

    	"encoding/json"
    	"errors"
    	"fmt"
    	"log"
    	"net/http"
    )
    
    func writeErrorResponse(w http.ResponseWriter, err error) {
    	w.WriteHeader(http.StatusBadRequest)
    	json.NewEncoder(w).Encode(map[string]string{
    		"reason": fmt.Sprintf("%v", err),
    	})
    }
    
    type Resp struct {
    	User               string                 `json:"user"`
    	MaxValiditySeconds int                    `json:"maxValiditySeconds"`
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed May 01 21:31:13 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. docs/es/docs/python-types.md

    ////
    
    ### Clases como tipos
    
    También puedes declarar una clase como el tipo de una variable.
    
    Digamos que tienes una clase `Person`, con un nombre:
    
    {* ../../docs_src/python_types/tutorial010.py hl[1:3] *}
    
    Luego puedes declarar una variable para que sea de tipo `Person`:
    
    {* ../../docs_src/python_types/tutorial010.py hl[6] *}
    
    Y luego, nuevamente, obtienes todo el soporte del editor:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 17:46:44 UTC 2024
    - 17.6K bytes
    - Viewed (1)
  6. docs/fa/docs/python-types.md

    * `Optional`
    * ...و بقیه.
    
    ////
    
    ### کلاس‌ها به‌عنوان نوع
    
    می‌تونی یه کلاس رو هم به‌عنوان نوع یه متغیر تعریف کنی.
    
    فرض کن یه کلاس `Person` داری، با یه نام:
    
    {* ../../docs_src/python_types/tutorial010.py hl[1:3] *}
    
    بعد می‌تونی یه متغیر رو از نوع `Person` تعریف کنی:
    
    {* ../../docs_src/python_types/tutorial010.py hl[6] *}
    
    و بعد، دوباره، همه پشتیبانی ویرایشگر رو داری:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Jul 21 12:20:57 UTC 2025
    - 23.3K bytes
    - Viewed (0)
  7. docs/bn/docs/python-types.md

    ////
    
    ### ক্লাস হিসেবে টাইপস
    
    আপনি একটি ভেরিয়েবলের টাইপ হিসেবে একটি ক্লাস ঘোষণা করতে পারেন।
    
    ধরুন আপনার কাছে `Person` নামে একটি ক্লাস আছে, যার একটি নাম আছে:
    
    {* ../../docs_src/python_types/tutorial010.py hl[1:3] *}
    
    
    তারপর আপনি একটি ভেরিয়েবলকে `Person` টাইপের হিসেবে ঘোষণা করতে পারেন:
    
    {* ../../docs_src/python_types/tutorial010.py hl[6] *}
    
    
    এবং তারপর, আবার, আপনি এডিটর সাপোর্ট পেয়ে যাবেন:
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/testing/RelationshipTester.java

       * identical inputs: This sounds like it ought to be a problem here, since the goals of this class
       * include testing that {@code equals()} is reflexive and is tolerant of {@code null}. However,
       * there's no problem. The reason: {@link EqualsTester} tests {@code null} and identical inputs
       * directly against {@code equals()} rather than through the {@code Equivalence}.
       */
      private final Equivalence<? super T> equivalence;
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  9. cmd/callhome.go

    	}
    
    	go func() {
    		r := rand.New(rand.NewSource(time.Now().UnixNano()))
    		// Leader node (that successfully acquires the lock inside runCallhome)
    		// will keep performing the callhome. If the leader goes down for some reason,
    		// the lock will be released and another node will acquire it and take over
    		// because of this loop.
    		for {
    			if !globalCallhomeConfig.Enabled() {
    				return
    			}
    
    			if !runCallhome(ctx, objAPI) {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      `You're wrong about the crumbs,' said the Mock Turtle:
    `crumbs would all wash off in the sea.  But they HAVE their tails
    in their mouths; and the reason is--' here the Mock Turtle
    yawned and shut his eyes.--`Tell her about the reason and all
    that,' he said to the Gryphon.
    
      `The reason is,' said the Gryphon, `that they WOULD go with
    the lobsters to the dance.  So they got thrown out to sea.  So
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
Back to top