Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 85 for beaten (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. android/guava/src/com/google/common/collect/Synchronized.java

     * package will refer to the class. Plus, @ParametricNullness is only a temporary workaround,
     * anyway, so we just need to get by without the annotations here until Kotlin better understands
     * our other nullness annotations.
     */
    final class Synchronized {
      private Synchronized() {}
    
      static class SynchronizedObject implements Serializable {
        final Object delegate;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Synchronized.java

     * package will refer to the class. Plus, @ParametricNullness is only a temporary workaround,
     * anyway, so we just need to get by without the annotations here until Kotlin better understands
     * our other nullness annotations.
     */
    final class Synchronized {
      private Synchronized() {}
    
      static class SynchronizedObject implements Serializable {
        final Object delegate;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 57.3K bytes
    - Viewed (0)
  6. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                    slf4jLogger.debug(buff.toString());
                }
            }
        }
    
        // Needed to make this method package visible to make writing a unit test possible
        // Maybe it's better to move some of those methods to separate class (SoC).
        void properties(CliRequest cliRequest) throws Exception {
            Properties paths = new Properties();
            if (cliRequest.topDirectory != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  7. .bazelrc

    # errors.
    # There is ongoing work on Bazel team's side to provide support for transitive
    # shared libraries. As part of migrating to transitive shared libraries, we
    # hope to provide a better mechanism for control over symbol exporting, and
    # then tackle this issue again.
    #
    # TODO: Remove the following two lines once TF doesn't depend on Bazel wrapping
    # all library archives in -whole_archive -no_whole_archive.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    		}
    
    		if crd.Spec.PreserveUnknownFields == false {
    			// we don't own s completely, e.g. defaults are not deep-copied. So better make a copy here.
    			s = s.DeepCopy()
    
    			if err := structuraldefaulting.PruneDefaults(s); err != nil {
    				// This should never happen. If it does, it is a programming error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    - The `label(String)` and `description(String)` methods have been replaced with the `id(String, String)` method and its overloaded variants.
    
    ==== Changes to collection properties
    
    The following incubating API introduced in 8.7 have been removed:
    
    * `MapProperty.insert*(...)`
    * `HasMultipleValues.append*(...)`
    
    Replacements that better handle conventions are under consideration for a future 8.x release.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/CharMatcher.java

       * <pre>{@code
       * CharMatcher.is('a').replaceFrom("yaha", "oo")
       * }</pre>
       *
       * ... returns {@code "yoohoo"}.
       *
       * <p><b>Note:</b> If the replacement is a fixed string with only one character, you are better
       * off calling {@link #replaceFrom(CharSequence, char)} directly.
       *
       * @param sequence the character sequence to replace matching characters in
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top