Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 735 for true (0.14 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/KtFe10PsiDefaultPropertySetterSymbol.kt

        override val psi: PsiElement?
            get() = withValidityAssertion { null }
    
        override val isDefault: Boolean
            get() = withValidityAssertion { true }
    
        override val isInline: Boolean
            get() = withValidityAssertion { propertyPsi.hasModifier(KtTokens.OVERRIDE_KEYWORD) }
    
        override val isOverride: Boolean
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:46 GMT 2024
    - 7.6K bytes
    - Viewed (0)
  2. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/kotlindsl/kotlin-dsl-upstream-candidates.kt

            standardOutput = out
            this.workingDir = workingDir
        }
        return out.toString().trim()
    }
    
    
    fun Project.execAndGetStdoutIgnoringError(vararg args: String) = execAndGetStdout(File("."), true, *args)
    
    
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 933 bytes
    - Viewed (0)
  3. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.reproducible-archives.gradle.kts

     * limitations under the License.
     */
    
    // Ensure the archives produced are reproducible
    tasks.withType<AbstractArchiveTask>().configureEach {
        isPreserveFileTimestamps = false
        isReproducibleFileOrder = true
        dirPermissions { unix("0755") }
        filePermissions { unix("0644") }
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Mar 06 15:37:11 GMT 2024
    - 867 bytes
    - Viewed (0)
  4. CHANGELOG/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    options:
      # make root approval non-recursive
      no_parent_owners: true
    approvers:
      - release-engineering-approvers
      - release-managers
      - AuraSinis # 1.24 Release Notes Lead
      - cici37 # 1.23 Release Notes Lead
      - csantanapr # 1.25 Release Notes Lead
      - harshanarayana # 1.27 Release Notes Lead
      - ramrodo # 1.26 Release Notes Lead
      - sanchita-07 # 1.28 Release Notes Lead
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Wed Jan 24 16:11:28 GMT 2024
    - 801 bytes
    - Viewed (0)
  5. maven-compat/src/test/resources/inheritance-repo/t07/maven-test/poms/t07-b-1.0.pom

        </dependency>
        <dependency>
          <groupId>maven-test</groupId>
          <artifactId>t07-d</artifactId>
          <version>1.1</version>
          <type>jar</type>
          <scope>compile</scope>
          <optional>true</optional>
        </dependency>
      </dependencies>
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Oct 26 20:16:00 GMT 2009
    - 621 bytes
    - Viewed (0)
  6. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      //
      // This field is not supported when watch is true. Clients may start a watch from the last
      // resourceVersion value returned by the server and not miss any modifications.
      optional string continue = 8;
    
      // `sendInitialEvents=true` may be set together with `watch=true`.
      // In that case, the watch stream will begin with synthetic events to
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 53.3K bytes
    - Viewed (0)
  7. docs/em/docs/tutorial/query-params.md

    ⚖️
    
    ```
    http://127.0.0.1:8000/items/foo?short=True
    ```
    
    ⚖️
    
    ```
    http://127.0.0.1:8000/items/foo?short=true
    ```
    
    ⚖️
    
    ```
    http://127.0.0.1:8000/items/foo?short=on
    ```
    
    ⚖️
    
    ```
    http://127.0.0.1:8000/items/foo?short=yes
    ```
    
    ⚖️ 🙆 🎏 💼 📈 (🔠, 🥇 🔤 🔠, ♒️), 👆 🔢 🔜 👀 🔢 `short` ⏮️ `bool` 💲 `True`. ⏪ `False`.
    
    
    ## 💗 ➡ &amp; 🔢 🔢
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirArrayOfSymbolProvider.kt

                /* choose (for byte array)
                 * public fun byteArrayOf(vararg elements: kotlin.Byte): kotlin.ByteArray
                 */
                (it as? FirFunctionSymbol<*>)?.fir?.valueParameters?.singleOrNull()?.isVararg == true
            } as? FirNamedFunctionSymbol ?: return null
            return firSymbolBuilder.functionLikeBuilder.buildFunctionSymbol(firSymbol)
        }
    
        private val kotlinPackage = FqName("kotlin")
    Plain Text
    - Registered: Fri Mar 22 08:18:09 GMT 2024
    - Last Modified: Fri Feb 03 14:29:54 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/connection/RouteSelector.kt

      // State for negotiating failed routes
      private val postponedRoutes = mutableListOf<Route>()
    
      init {
        resetNextProxy(address.url, address.proxy)
      }
    
      /**
       * Returns true if there's another set of routes to attempt. Every address has at least one route.
       */
      operator fun hasNext(): Boolean = hasNextProxy() || postponedRoutes.isNotEmpty()
    
      @Throws(IOException::class)
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Mar 06 17:33:38 GMT 2024
    - 7.2K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirTypeInfoProvider.kt

        override fun isNestedArray(type: KtType): Boolean {
            if (!isArrayOrPrimitiveArray(type)) return false
            require(type is KtFirType)
            return type.coneType.arrayElementType()?.isArrayOrPrimitiveArray == true
        }
    
        override fun fullyExpandedType(type: KtType): KtType = type.coneType.fullyExpandedType(analysisSession.useSiteSession).asKtType()
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Jan 03 17:15:50 GMT 2024
    - 2.5K bytes
    - Viewed (0)
Back to top