Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Operator_precedence (0.32 sec)

  1. platforms/documentation/docs-asciidoctor-extensions-base/build.gradle.kts

    }
    
    description = "Asciidoctor extensions that work with all backends"
    
    val asciiDoctorVersion = "2.5.11"
    
    errorprone {
        disabledChecks.addAll(
            "DefaultCharset", // 1 occurrences
            "OperatorPrecedence", // 1 occurrences
            "StringCaseLocaleUsage", // 1 occurrences
        )
    }
    
    dependencies {
        api("org.asciidoctor:asciidoctorj-api:$asciiDoctorVersion")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 10:37:52 UTC 2024
    - 711 bytes
    - Viewed (0)
  2. platforms/software/resources/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "A set of general-purpose resource abstractions"
    
    errorprone {
        disabledChecks.addAll(
            "OperatorPrecedence", // 9 occurrences
            "UndefinedEquals", // 1 occurrences
        )
    }
    
    dependencies {
        api(projects.stdlibJavaExtensions)
        api(project(":build-operations"))
        api(project(":hashing"))
        api(project(":base-services"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 970 bytes
    - Viewed (0)
  3. platforms/software/testing-base/build.gradle.kts

    """
    
    errorprone {
        disabledChecks.addAll(
            "EmptyBlockTag", // 3 occurrences
            "InlineMeInliner", // 2 occurrences
            "MissingCasesInEnumSwitch", // 1 occurrences
            "OperatorPrecedence", // 1 occurrences
        )
    }
    
    dependencies {
        api(projects.baseServices)
        api(projects.buildOperations)
        api(projects.core)
        api(projects.coreApi)
        api(projects.enterpriseLogging)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/build.gradle.kts

            "InconsistentCapitalization", // 1 occurrences
            "InvalidInlineTag", // 3 occurrences
            "MissingCasesInEnumSwitch", // 1 occurrences
            "MixedMutabilityReturnType", // 3 occurrences
            "OperatorPrecedence", // 2 occurrences
            "UnusedMethod", // 4 occurrences
            "UnusedVariable", // 1 occurrences
        )
    }
    
    dependencies {
        api(projects.stdlibJavaExtensions)
        api(projects.serialization)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/build.gradle.kts

            "MutablePublicArray", // 1 occurrences
            "NonApiType", // 3 occurrences
            "NonCanonicalType", // 3 occurrences
            "ObjectEqualsForPrimitives", // 3 occurrences
            "OperatorPrecedence", // 2 occurrences
            "ReferenceEquality", // 10 occurrences
            "SameNameButDifferent", // 4 occurrences
            "StreamResourceLeak", // 1 occurrences
            "StringCaseLocaleUsage", // 3 occurrences
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. subprojects/core/build.gradle.kts

            "MutablePublicArray", // 2 occurrences
            "NonApiType", // 1 occurrences
            "NonCanonicalType", // 16 occurrences
            "NotJavadoc", // 1 occurrences
            "OperatorPrecedence", // 5 occurrences
            "OptionalMapUnusedValue", // 1 occurrences
            "ProtectedMembersInFinalClass", // 1 occurrences
            "ReferenceEquality", // 2 occurrences
            "ReturnValueIgnored", // 1 occurrences
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. doc/go1.17_spec.html

    var xx = a[1.0<<s]             // 1.0 has type int; xx == a[0]
    var bb = make([]byte, 1.0<<s)  // 1.0 has type int; len(bb) == 0
    </pre>
    
    <h4 id="Operator_precedence">Operator precedence</h4>
    <p>
    Unary operators have the highest precedence.
    As the  <code>++</code> and <code>--</code> operators form
    statements, not expressions, they fall
    outside the operator hierarchy.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  8. doc/go_spec.html

    var xx = a[1.0&lt;&lt;s]             // 1.0 has type int; xx == a[0]
    var bb = make([]byte, 1.0&lt;&lt;s)  // 1.0 has type int; len(bb) == 0
    </pre>
    
    <h4 id="Operator_precedence">Operator precedence</h4>
    <p>
    Unary operators have the highest precedence.
    As the  <code>++</code> and <code>--</code> operators form
    statements, not expressions, they fall
    outside the operator hierarchy.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
Back to top