Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 123 for better (0.75 sec)

  1. guava/src/com/google/common/base/CharMatcher.java

        return JavaDigit.INSTANCE;
      }
    
      /**
       * Determines whether a character is a BMP letter according to {@linkplain
       * Character#isLetter(char) Java's definition}. If you only care to match letters of the Latin
       * alphabet, you can use {@code inRange('a', 'z').or(inRange('A', 'Z'))}.
       *
       * @deprecated Most letters are supplementary characters; see the class documentation.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modget/get.go

    				continue
    			case "toolchain":
    				dropToolchain = true
    				continue
    			}
    		}
    
    		// If there were no arguments, CleanPatterns returns ".". Set the raw
    		// string back to "" for better errors.
    		if len(rawArgs) == 0 {
    			q.raw = ""
    		}
    
    		// Guard against 'go get x.go', a common mistake.
    		// Note that package and module paths may end with '.go', so only print an error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/CharMatcher.java

        return JavaDigit.INSTANCE;
      }
    
      /**
       * Determines whether a character is a BMP letter according to {@linkplain
       * Character#isLetter(char) Java's definition}. If you only care to match letters of the Latin
       * alphabet, you can use {@code inRange('a', 'z').or(inRange('A', 'Z'))}.
       *
       * @deprecated Most letters are supplementary characters; see the class documentation.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/test/test.go

    	testVet          = vetFlag{flags: defaultVetFlags} // -vet flag
    )
    
    type testVFlag struct {
    	on   bool // -v is set in some form
    	json bool // -v=test2json is set, to make output better for test2json
    }
    
    func (*testVFlag) IsBoolFlag() bool { return true }
    
    func (f *testVFlag) Set(arg string) error {
    	if v, err := strconv.ParseBool(arg); err == nil {
    		f.on = v
    		f.json = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

          // expands to Compare("", "", NULL, my_ptr), which requires a conversion
          // to match the Secret* in the other overload, which would otherwise make
          // this template match better.
          typename EnableIf<!is_pointer<T2>::value>::type* = 0) {
        return CmpHelperEQ(expected_expression, actual_expression, expected,
                           actual);
      }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      Node* node = options.FinalizeBuilder(&node_builder);
      // Add any Enter nodes required to bring the constant to the correct control
      // flow frame.
      while (!control_flow_info[src_node->id()].frame_name.empty()) {
        NodeDebugInfo debug_info(*src_node);
        NodeBuilder enter_builder(options.GetNameForOp("Enter"), "Enter",
                                  options.op_registry(), &debug_info);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

          // expands to Compare("", "", NULL, my_ptr), which requires a conversion
          // to match the Secret* in the other overload, which would otherwise make
          // this template match better.
          typename EnableIf<!is_pointer<T2>::value>::type* = 0) {
        return CmpHelperEQ(expected_expression, actual_expression, expected,
                           actual);
      }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    The old convention object defines the `distsDirName`, `libsDirName` and `archivesBaseName` properties with simple getter and setter methods.
    Those methods are available in the extension only to maintain backwards compatibility.
    Build scripts should solely use the properties of type `Property`:
    
    ====
    [.multi-language-sample]
    =====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  9. src/time/format.go

    			// We don't expect to hit this case very often. We could try to
    			// reproduce strconv.Quote's behavior with full fidelity but
    			// given how rarely we expect to hit these edge cases, speed and
    			// conciseness are better.
    			var width int
    			if c == runeError {
    				width = 1
    				if i+2 < len(s) && s[i:i+3] == string(runeError) {
    					width = 3
    				}
    			} else {
    				width = len(string(c))
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

         * of the [classShortenStrategy] and [callableShortenStrategy] filters,
         * but ATM we don't have a way to properly handle
         * [FirThisReference]s through the existing filters.
         *
         * We need a better way to decide shortening strategy
         * for labeled and regular `this` expressions (KT-63555).
         */
        private fun thisLabelShortenStrategy(thisReference: FirThisReference): ShortenStrategy {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
Back to top