Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 50 for CONSTRUCTOR (0.2 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // output as a key/value string pair.
    //
    // Don't inherit from TestProperty as its destructor is not virtual.
    class TestProperty {
     public:
      // C'tor.  TestProperty does NOT have a default constructor.
      // Always use this constructor (with parameters) to create a
      // TestProperty object.
      TestProperty(const std::string& a_key, const std::string& a_value) :
        key_(a_key), value_(a_value) {
      }
    
    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. android/guava/src/com/google/common/collect/Sets.java

       *
       * <p><b>Note:</b> this method is now unnecessary and should be treated as deprecated. Instead,
       * use the {@code TreeSet} constructor directly, taking advantage of <a
       * href="http://goo.gl/iz2Wi">"diamond" syntax</a>. One caveat to this is that the {@code TreeSet}
       * constructor uses a null {@code Comparator} to mean "natural ordering," whereas this factory
       * rejects null. Clean your code accordingly.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/javadoc.css

    }
    .col-first, .col-first {
        font-size:0.93em;
    }
    .col-second, .col-second, .col-last, .col-constructor-name, .col-summary-item-name, .col-last {
        font-size:0.93em;
    }
    .col-first, .col-second, .col-constructor-name {
        vertical-align:top;
        overflow: auto;
    }
    .col-last {
        white-space:normal;
    }
    .col-first a:link, .col-first a:visited,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Sets.java

       *
       * <p><b>Note:</b> this method is now unnecessary and should be treated as deprecated. Instead,
       * use the {@code TreeSet} constructor directly, taking advantage of <a
       * href="http://goo.gl/iz2Wi">"diamond" syntax</a>. One caveat to this is that the {@code TreeSet}
       * constructor uses a null {@code Comparator} to mean "natural ordering," whereas this factory
       * rejects null. Clean your code accordingly.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    					st.advance(1)
    				}
    				if len(st.str) < 1 {
    					st.fail("expected constructor type")
    				}
    				if last == nil {
    					st.fail("constructor before name is seen")
    				}
    				st.advance(1)
    				var base AST
    				if inheriting {
    					base = st.demangleType(false)
    				}
    				next = &Constructor{
    					Name: getLast(last),
    					Base: base,
    				}
    				if len(st.str) > 0 && st.str[0] == 'B' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //   tl.set(200);
    //   EXPECT_EQ(200, tl.get());
    //
    // The template type argument T must have a public copy constructor.
    // In addition, the default ThreadLocal constructor requires T to have
    // a public default constructor.
    //
    // An object managed for a thread by a ThreadLocal instance is deleted
    // when the thread exits.  Or, if the ThreadLocal instance dies in
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //   tl.set(200);
    //   EXPECT_EQ(200, tl.get());
    //
    // The template type argument T must have a public copy constructor.
    // In addition, the default ThreadLocal constructor requires T to have
    // a public default constructor.
    //
    // An object managed for a thread by a ThreadLocal instance is deleted
    // when the thread exits.  Or, if the ThreadLocal instance dies in
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

        private fun FirResolvedQualifier.toKtCalls(constructors: List<KaConstructorSymbol>): List<KaCall> {
            analysisSession.apply {
                return constructors.map { constructor ->
                    val partiallyAppliedSymbol = KaPartiallyAppliedFunctionSymbol(constructor.asSignature(), null, null)
                    KaSimpleFunctionCall(partiallyAppliedSymbol, LinkedHashMap(), toTypeArgumentsMapping(partiallyAppliedSymbol), false)
                }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

            }
        }
    
        private fun buildSymbol(firSymbol: FirBasedSymbol<*>): KaSymbol = analysisSession.firSymbolBuilder.buildSymbol(firSymbol)
    }
    
    private class FirTowerDataContextProvider private constructor(
        private val contextProvider: ContextCollector.ContextProvider
    ) {
        companion object {
            fun create(firResolveSession: LLFirResolveSession, targetElement: KtElement): FirTowerDataContextProvider {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

     *
     * ```java
     * client.cache().close();
     * ```
     *
     * OkHttp also uses daemon threads for HTTP/2 connections. These will exit automatically if they
     * remain idle.
     */
    open class OkHttpClient internal constructor(
      builder: Builder,
    ) : Call.Factory, WebSocket.Factory {
      @get:JvmName("dispatcher")
      val dispatcher: Dispatcher = builder.dispatcher
    
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
Back to top