Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 345 for convenient (0.25 sec)

  1. guava/src/com/google/common/collect/MapMakerInternalMap.java

          this.table = newTable;
        }
    
        // Convenience methods for testing
    
        /**
         * Unsafe cast of the given entry to {@code E}, the type of the specific {@link InternalEntry}
         * implementation type.
         *
         * <p>This method is provided as a convenience for tests. Otherwise they'd need to be
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    `org.gradle.api.initialization.Settings` for settings scripts and `org.gradle.api.invocation.Gradle` for init scripts.
    
    Having the script instance implement the core Gradle interface of the model object it was supposed to configure was convenient because it made the model object API immediately available to the body of the script but it was also a lie that could cause all sorts of trouble whenever the script itself was used in place of the model object, a project script **was not** a proper...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    the root project. This task generates the Visual Studio solution and then opens the solution in Visual Studio. This means you can simply run `gradlew openVisualStudio` from the root project to generate and open the Visual Studio solution in one convenient step.
    
    The content of the generated visual studio files can be modified via API hooks, provided by the `visualStudio` extension. Take a look at the 'visual-studio' sample, or see link:{groovyDslPath}/org.gradle.ide.visualstudio.Visual...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

          this.table = newTable;
        }
    
        // Convenience methods for testing
    
        /**
         * Unsafe cast of the given entry to {@code E}, the type of the specific {@link InternalEntry}
         * implementation type.
         *
         * <p>This method is provided as a convenience for tests. Otherwise they'd need to be
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  5. src/time/time.go

    // is the 100th year, and the missed missed leap year is the 400th year.
    // So we'd prefer instead to print a calendar for 2001-2400 and reuse it
    // for 2401-2800.
    //
    // Finally, it's convenient if the delta between the Unix epoch and
    // long-ago epoch is representable by an int64 constant.
    //
    // These three considerations—choose an epoch as early as possible, that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    === IDE support
    
    Lazy property assignment is supported from IntelliJ 2022.3 and from Android Studio Giraffe.
    
    
    [[sec:kotlin-dsl_plugin]]
    == The Kotlin DSL Plugin
    
    The Kotlin DSL Plugin provides a convenient way to develop Kotlin-based projects that contribute build logic.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      // Mutable state in *impl_ is protected by mutex_.
      internal::UnitTestImpl* impl_;
    
      // We disallow copying UnitTest.
      GTEST_DISALLOW_COPY_AND_ASSIGN_(UnitTest);
    };
    
    // A convenient wrapper for adding an environment for the test
    // program.
    //
    // You should call this before RUN_ALL_TESTS() is called, probably in
    // main().  If you use gtest_main, you need to call this before main()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // Mutable state in *impl_ is protected by mutex_.
      internal::UnitTestImpl* impl_;
    
      // We disallow copying UnitTest.
      GTEST_DISALLOW_COPY_AND_ASSIGN_(UnitTest);
    };
    
    // A convenient wrapper for adding an environment for the test
    // program.
    //
    // You should call this before RUN_ALL_TESTS() is called, probably in
    // main().  If you use gtest_main, you need to call this before main()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    //
    //	my/main/module
    //	golang.org/x/text v0.3.0 [v0.4.0] => /tmp/text
    //	rsc.io/pdf v0.1.1 (retracted) [v0.1.2]
    //
    // (For tools, 'go list -m -u -json all' may be more convenient to parse.)
    //
    // The -versions flag causes list to set the Module's Versions field
    // to a list of all known versions of that module, ordered according
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/LocalCache.java

         * ensure that completed write operations performed by other threads are noticed. For most
         * purposes, the "count" field, tracking the number of elements, serves as that volatile
         * variable ensuring visibility. This is convenient because this field needs to be read in many
         * read operations anyway:
         *
         * - All (unsynchronized) read operations must first read the "count" field, and should not look
         * at table entries if it is 0.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
Back to top