Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 7,769 for Booleans (0.13 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/contracts/description/booleans/KtLogicalCombinators.kt

     * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
     */
    
    package org.jetbrains.kotlin.analysis.api.contracts.description.booleans
    
    import com.google.common.base.Objects
    import org.jetbrains.kotlin.analysis.api.lifetime.KaLifetimeToken
    import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
    
    /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/contracts/description/booleans/KtPredicates.kt

        private val backingType: KaType,
        private val backingIsNegated: Boolean
    ) : KaContractBooleanExpression {
        override val token: KaLifetimeToken get() = backingType.token
        public val argument: KaContractParameterValue get() = withValidityAssertion { backingArgument }
        public val type: KaType get() = withValidityAssertion { backingType }
        public val isNegated: Boolean get() = withValidityAssertion { backingIsNegated }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. src/internal/pkgbits/doc.go

    // Each element has a "kind" and a dense, non-negative index.
    // Elements can be randomly accessed given their kind and index.
    //
    // Individual elements are sequences of variable-length values (e.g.,
    // integers, booleans, strings, go/constant values, cross-references
    // to other elements). Package pkgbits provides APIs for encoding and
    // decoding these low-level values, but the details of mapping
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 20 19:01:40 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/primitives/package-info.java

     *   <li>{@link ImmutableIntArray}
     *   <li>{@link ImmutableLongrray}
     *   <li>{@link UnsignedInteger}
     *   <li>{@link UnsignedLong}
     * </ul>
     *
     * <h3>Per-type static utilities</h3>
     *
     * <ul>
     *   <li>{@link Booleans}
     *   <li>{@link Bytes}
     *       <ul>
     *         <li>{@link SignedBytes}
     *         <li>{@link UnsignedBytes}
     *       </ul>
     *   <li>{@link Chars}
     *   <li>{@link Doubles}
     *   <li>{@link Floats}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:13:41 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. src/internal/cpu/cpu.go

    	HasSSE41     bool
    	HasSSE42     bool
    	_            CacheLinePad
    }
    
    // The booleans in ARM contain the correspondingly named cpu feature bit.
    // The struct is padded to avoid false sharing.
    var ARM struct {
    	_            CacheLinePad
    	HasVFPv4     bool
    	HasIDIVA     bool
    	HasV7Atomics bool
    	_            CacheLinePad
    }
    
    // The booleans in ARM64 contain the correspondingly named cpu feature bit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/BaseSerializerFactoryTest.groovy

        }
    
        class Thing {}
    
        def "uses efficient serialization for booleans"() {
            expect:
            usesEfficientSerialization(true, factory.getSerializerFor(Boolean))
            !usesEfficientSerialization(false, factory.getSerializerFor(Boolean))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/primitives/package-info.java

     *   <li>{@link ImmutableIntArray}
     *   <li>{@link ImmutableLongrray}
     *   <li>{@link UnsignedInteger}
     *   <li>{@link UnsignedLong}
     * </ul>
     *
     * <h3>Per-type static utilities</h3>
     *
     * <ul>
     *   <li>{@link Booleans}
     *   <li>{@link Bytes}
     *       <ul>
     *         <li>{@link SignedBytes}
     *         <li>{@link UnsignedBytes}
     *       </ul>
     *   <li>{@link Chars}
     *   <li>{@link Doubles}
     *   <li>{@link Floats}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:13:41 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/contracts/description/KtEffects.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.contracts.description
    
    import com.google.common.base.Objects
    import org.jetbrains.kotlin.analysis.api.contracts.description.booleans.KaContractBooleanExpression
    import org.jetbrains.kotlin.analysis.api.lifetime.KaLifetimeOwner
    import org.jetbrains.kotlin.analysis.api.lifetime.KaLifetimeToken
    import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/contracts/description/KtContractDescriptionElementRenderer.kt

    private fun <T> PrettyPrinter.appendProperty(
        prop: KProperty<T>,
        renderer: (T, Boolean) -> Unit,
        endWithNewLine: Boolean = true
    ) {
        appendLine(prop.name + ":")
        withIndent {
            renderer(prop.call(), endWithNewLine)
        }
    }
    
    private fun PrettyPrinter.appendSimpleProperty(prop: KProperty<Any>, endWithNewLine: Boolean = true) {
        append(prop.name + ": ")
        append(prop.call().toString())
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Cut.java

        if (result != 0) {
          return result;
        }
        // same value. below comes before above
        return Booleans.compare(this instanceof AboveValue, that instanceof AboveValue);
      }
    
      C endpoint() {
        return endpoint;
      }
    
      @SuppressWarnings("unchecked") // catching CCE
      @Override
      public boolean equals(@CheckForNull Object obj) {
        if (obj instanceof Cut) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top