Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 186 for or (0.03 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtVariableLikeSymbol.kt

         * Whether this value parameter has a default value or not.
         */
        public abstract val hasDefaultValue: Boolean
    
        /**
         * Whether this value parameter represents a variable number of arguments (`vararg`) or not.
         */
        public abstract val isVararg: Boolean
    
        /**
         * Whether this value parameter is an implicitly generated lambda parameter `it` or not.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. Jenkinsfile.s390x

     *
     * Unless required by applicable law or agreed to in writing,
     * software distributed under the License is distributed on an
     * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    
    properties([buildDiscarder(logRotator(artifactNumToKeepStr: '5', numToKeepStr: env.BRANCH_NAME=='master'?'5':'1'))])
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCompoundAccess.kt

    import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
    import org.jetbrains.kotlin.analysis.api.symbols.KaFunctionSymbol
    import org.jetbrains.kotlin.psi.KtExpression
    
    /**
     * The type of access to a variable or using the array access convention.
     */
    public sealed class KaCompoundAccess(
        operationPartiallyAppliedSymbol: KaPartiallyAppliedFunctionSymbol<KaFunctionSymbol>
    ) : KaLifetimeOwner {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. dbflute_fess/dfprop/classificationDeploymentMap.dfprop

    #
    # You don't need specify here about table classifications.
    # Because table classifications are auto-deployed by relation information.
    #
    # Specification:
    # map: {
    #     [table-name or $$ALL$$] = map:{
    #         ; [column-name (with hint)]=[classification-name]
    #     }
    # }
    #
    # *The line that starts with '#' means comment-out.
    #
    map:{
        #; $$ALL$$       = map:{suffix:_FLG=Flg}
    }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jul 04 22:46:31 UTC 2015
    - 795 bytes
    - Viewed (0)
  5. ReadMe.md

    (or put it into `$GRADLE_USER_HOME/gradle.properties`).
    
    On Windows you might need to add long paths setting to the repo:
    
        git config core.longpaths true 
    
    ## Building
    
    The project is built with Gradle. Run Gradle to build the project and to run the tests 
    using the following command on Unix/macOS:
    
        ./gradlew <tasks-and-options>
        
    or the following command on Windows:
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 11 14:28:46 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaSimpleVariableAccess.kt

    public sealed class KaSimpleVariableAccess {
        public object Read : KaSimpleVariableAccess()
    
        public class Write(
            /**
             * [KtExpression] that represents the new value that should be assigned to this variable. Or null if the assignment is incomplete
             * and misses the new value.
             */
            public val value: KtExpression?,
        ) : KaSimpleVariableAccess()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 705 bytes
    - Viewed (0)
  7. src/mdo/model-version.vm

      Unless required by applicable law or agreed to in writing,
      software distributed under the License is distributed on an
      "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
      KIND, either express or implied.  See the License for the
      specific language governing permissions and limitations
      under the License.
    *#
    #parse ( "common.vm" )
    #
    #set ( $package = "${packageToolV4}" )
    #set ( $className = "${model.name}ModelVersion" )
    #
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Oct 16 13:44:33 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  8. SECURITY.md

    ## Supported Versions
    
    Security updates are applied to the latest feature release (1.x) of the compiler, standard library, and build plugins.
    
    A fix will be shipped with the next incremental (1.x.y) or bug fix release (1.x.yz).
    
    All fixes are also applied to the master branch to be included in all upcoming releases.
    
    ## Reporting a Vulnerability
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Sep 21 00:49:47 UTC 2021
    - 472 bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirNamedClassOrObjectSymbolBase.kt

    import org.jetbrains.kotlin.fir.symbols.impl.FirRegularClassSymbol
    
    /**
     * [KaFirNamedClassOrObjectSymbolBase] provides shared equality and hash code implementations for FIR-based named class or object symbols so
     * that symbols of different kinds can be compared and remain interchangeable.
     */
    internal sealed class KaFirNamedClassOrObjectSymbolBase : KaNamedClassOrObjectSymbol(), KaFirSymbol<FirRegularClassSymbol> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtExpressionInfoProvider.kt

         * you need a separate check whether it has an else branch or not.
         */
        public fun KtWhenExpression.getMissingCases(): List<WhenMissingCase> =
            withValidityAssertion { analysisSession.expressionInfoProvider.getWhenMissingCases(this) }
    
        /**
         * Compute if the value of a given expression is possibly used. Or,
         * conversely, compute whether the value of an expression is *not* safe to
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top