Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,621 for Booleans (0.2 sec)

  1. pkg/config/analysis/analyzers/util/in_mesh.go

    	// return the auto-injection label status
    	if niv, nivok := getNamesSidecarInjectionStatus(namespace, c); nivok {
    		return niv
    	}
    
    	return false
    }
    
    // getPodSidecarInjectionStatus returns two booleans: enabled and ok.
    // enabled is true when deployment d PodSpec has either the label/annotation 'sidecar.istio.io/inject: "true"'
    // ok is true when the PodSpec doesn't have the 'sidecar.istio.io/inject' label/annotation present.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/main/java/org/gradle/language/base/internal/model/BinarySourceTransformations.java

                @Override
                public int compare(LanguageTransform<?, ?> o1, LanguageTransform<?, ?> o2) {
                    boolean joint1 = o1.getTransformTask() instanceof JointCompileTaskConfig;
                    boolean joint2 = o2.getTransformTask() instanceof JointCompileTaskConfig;
                    return Booleans.trueFirst().compare(joint1, joint2);
                }
            });
            return prioritized;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ComparisonChain.java

            }
    
            @Override
            public ComparisonChain compareTrueFirst(boolean left, boolean right) {
              return classify(Booleans.compare(right, left)); // reversed
            }
    
            @Override
            public ComparisonChain compareFalseFirst(boolean left, boolean right) {
              return classify(Booleans.compare(left, right));
            }
    
            ComparisonChain classify(int result) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 24 17:47:51 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/contracts/description/booleans/KtContractBooleanExpression.kt

        override fun equals(other: Any?): Boolean {
            return this === other || other is KaContractBooleanValueParameterExpression && other.backingParameterSymbol == backingParameterSymbol
        }
    }
    
    public typealias KtContractBooleanValueParameterExpression = KaContractBooleanValueParameterExpression
    
    /**
     * Represents boolean constant reference. The boolean constant can be passed to `booleanExpression` argument of
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top