Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 851 for name (0.15 sec)

  1. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

        }
    }
    
    
    private
    fun Project.bucket(name: String, description: String) = configurations.create(name) {
        isVisible = false
        isCanBeResolved = false
        isCanBeConsumed = false
        this.description = description
    }
    
    
    private
    fun Project.resolver(name: String, libraryElements: String, extends: Configuration? = null) = configurations.create(name) {
        attributes {
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Mon Feb 12 13:19:06 GMT 2024
    - 11.7K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescValueParameterSymbol.kt

    ) : KtValueParameterSymbol(), KtFe10DescSymbol<ValueParameterDescriptor> {
        override val name: Name
            get() = withValidityAssertion {
                return when (val name = descriptor.name) {
                    SpecialNames.IMPLICIT_SET_PARAMETER -> Name.identifier("value")
                    else -> name
                }
            }
    
        override val hasDefaultValue: Boolean
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:46 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSymbolInfoProvider.kt

    import org.jetbrains.kotlin.fir.symbols.impl.FirPropertySymbol
    import org.jetbrains.kotlin.load.java.JvmAbi
    import org.jetbrains.kotlin.name.JvmStandardClassIds
    import org.jetbrains.kotlin.name.Name
    import org.jetbrains.kotlin.name.StandardClassIds
    import org.jetbrains.kotlin.resolve.deprecation.DeprecationInfo
    
    internal class KtFirSymbolInfoProvider(
        override val analysisSession: KtFirAnalysisSession,
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Sep 19 22:14:09 GMT 2023
    - 7.1K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/core/v1/generated.proto

      // will also be deleted. The name of the ResourceClaim will be <pod
      // name>-<resource name>, where <resource name> is the
      // PodResourceClaim.Name. Pod validation will reject the pod if the
      // concatenated name is not valid for a ResourceClaim (e.g. too long).
      //
      // An existing ResourceClaim with that name that is not owned by the
      // pod will not be used for the pod to avoid using an unrelated
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/FirExcludingNonInnerClassesScope.kt

    import org.jetbrains.kotlin.name.Name
    
    internal class FirExcludingNonInnerClassesScope(
        private val delegate: FirContainingNamesAwareScope,
    ) : FirDelegatingContainingNamesAwareScope(delegate) {
        override fun getClassifierNames(): Set<Name> = delegate.getClassifierNames()
    
        override fun processClassifiersByNameWithSubstitution(name: Name, processor: (FirClassifierSymbol<*>, ConeSubstitutor) -> Unit) {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Oct 10 13:38:00 GMT 2023
    - 1K bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/scopes/KtFe10FileScope.kt

                        yield(ktSymbol)
                    }
                }
            }
        }
    
        override fun getCallableSymbols(names: Collection<Name>): Sequence<KtCallableSymbol> = withValidityAssertion {
            if (names.isEmpty()) return emptySequence()
            val namesSet = names.toSet()
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Mon May 22 19:21:34 GMT 2023
    - 4K bytes
    - Viewed (0)
  7. .cm/platform_labels.cm

    # The `name:` field specifies the platform label, e.g. `name: build_infrastructure` => `platform:build_infrastructure` label
    platforms:
      - build_infrastructure:
        name: 'build_infrastructure'
      - core_configuration:
        name: 'core_configuration'
      - core_execution:
        name: 'core_execution'
      - core_runtime:
        name: 'core_runtime'
      - documentation:
        name: 'documentation'
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Apr 22 15:32:31 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.pom

                <id>dsaff</id>
                <name>David Saff</name>
                <email>******@****.***</email>
            </developer>
            <developer>
                <id>kcooney</id>
                <name>Kevin Cooney</name>
                <email>******@****.***</email>
            </developer>
            <developer>
                <id>stefanbirkner</id>
                <name>Stefan Birkner</name>
                <email>******@****.***</email>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 24.5K bytes
    - Viewed (0)
  9. helm/minio/README.md

    Install the chart, specifying the buckets you want to create after install:
    
    ```bash
    helm install --set buckets[0].name=bucket1,buckets[0].policy=none,buckets[0].purge=false minio/minio
    ```
    
    Description of the configuration parameters used above -
    
    - `buckets[].name` - name of the bucket to create, must be a string with length > 0
    - `buckets[].policy` - can be one of none|download|upload|public
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Jan 24 07:27:57 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/autoscaling/v2beta2/generated.proto

      optional string kind = 1;
    
      // name is the name of the referent; More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
      optional string name = 2;
    
      // apiVersion is the API version of the referent
      // +optional
      optional string apiVersion = 3;
    }
    
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 21K bytes
    - Viewed (0)
Back to top