Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,458 for name (0.12 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/connection/RouteSelector.kt

        }
      }
    
      companion object {
        /** Obtain a host string containing either an actual host name or a numeric IP address. */
        val InetSocketAddress.socketHost: String get() {
          // The InetSocketAddress was specified with a string (either a numeric IP or a host name). If
          // it is a name, all IPs for that name should be tried. If it is an IP address, only that IP
          // address should be tried.
    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)
  2. .github/workflows/extract-unit-test-split.jq

    .
     | map(select(.unitTests) | .name)
     | to_entries
     | group_by(.key % 10)
     | map({
         name: map(.value) | join(", "),
         tasks: map(.value + ":test") | join(" "),
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Mon Oct 11 08:08:26 GMT 2021
    - 171 bytes
    - Viewed (0)
  3. helm/minio/templates/_helper_create_policy.txt

      return $?
    }
    
    # createPolicy($name, $filename)
    createPolicy () {
      NAME=$1
      FILENAME=$2
    
      # Create the name if it does not exist
      echo "Checking policy: $NAME (in /config/$FILENAME.json)"
      if ! checkPolicyExists $NAME ; then
        echo "Creating policy '$NAME'"
      else
        echo "Policy '$NAME' already exists."
      fi
      ${MC} admin policy create myminio $NAME /config/$FILENAME.json
    
    }
    
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Mar 21 06:38:06 GMT 2023
    - 2K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/Import.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.fir.scopes
    
    import org.jetbrains.kotlin.name.ClassId
    import org.jetbrains.kotlin.name.FqName
    import org.jetbrains.kotlin.name.Name
    
    internal sealed class Import {
        abstract val packageFqName: FqName
        abstract val relativeClassName: FqName?
        abstract val resolvedClassId: ClassId?
    }
    
    Plain Text
    - Registered: Fri Mar 22 08:18:09 GMT 2024
    - Last Modified: Wed Jul 27 23:37:54 GMT 2022
    - 940 bytes
    - Viewed (0)
  5. .teamcity/README.md

      - Select `Manually`.
      - Give it a name. The name will be displayed on TeamCity web UI. We highly recommend it be capitalized from the branch name, i.e. `MyTestBranch`.
      - The project ID will be auto-generated as `Gradle_MyTestBranch`. If not, you probably selected wrong parent, the "Parent project" should be `Gradle`.
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Wed Mar 06 23:02:25 GMT 2024
    - 4K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/ReadWriteAccessCheckerFirImpl.kt

            val function = assignment.operationReference.mainReference.resolve() as? KtNamedFunction ?: return null
            val name = function.name ?: return null
            return if (Name.identifier(name) in OperatorConventions.ASSIGNMENT_OPERATIONS.values)
                ReferenceAccess.READ to assignment
            else
                null
        }
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Apr 10 16:23:23 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/filesystem/BUILD

    )
    
    # This is only for plugins
    cc_library(
        name = "filesystem_interface",
        hdrs = ["filesystem_interface.h"],
        visibility = ["//visibility:public"],
        deps = [
            "//tensorflow/c:tf_file_statistics",
            "//tensorflow/c:tf_status",
        ],
    )
    
    # Core TensorFlow depends on this, will be included in main library
    cc_library(
        name = "modular_filesystem",
        srcs = [
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Mar 27 18:00:18 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/imports-repo/t01/maven-test/poms/maven-test-a-1.0.pom

      <groupId>maven-test</groupId>
      <artifactId>maven-test-a</artifactId>
      <packaging>jar</packaging>
      <version>1.0</version>
      <repositories>
        <repository>
          <id>central</id>
          <name>Fake Maven Central Repository</name>
          <url>file://dummy</url>
        </repository>
      </repositories>
    Plain Text
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Wed Apr 29 05:20:38 GMT 2009
    - 355 bytes
    - Viewed (0)
  9. build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts

    
    abstract class CapabilityRule @Inject constructor(
        val name: String,
        val version: String
    ) : ComponentMetadataRule {
        override fun execute(context: ComponentMetadataContext) {
            context.details.allVariants {
                withCapabilities {
                    addCapability("org.gradle.internal.capability", name, version)
                }
            }
        }
    }
    
    
    class CapabilitySpec {
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Aug 24 23:27:45 GMT 2022
    - 9.1K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/FirNoClassifiersScope.kt

    import org.jetbrains.kotlin.name.Name
    
    internal class FirNoClassifiersScope(
        private val delegate: FirContainingNamesAwareScope,
    ) : FirDelegatingContainingNamesAwareScope(delegate) {
        override fun getClassifierNames(): Set<Name> = emptySet()
    
        override fun processClassifiersByNameWithSubstitution(name: Name, processor: (FirClassifierSymbol<*>, ConeSubstitutor) -> Unit) {
        }
    Plain Text
    - Registered: Fri Mar 22 08:18:09 GMT 2024
    - Last Modified: Tue Oct 10 13:38:00 GMT 2023
    - 937 bytes
    - Viewed (0)
Back to top