Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 6,769 for aS (0.03 sec)

  1. pkg/controller/volume/persistentvolume/config/v1alpha1/defaults.go

    // is intentionally not registered in the scheme as a "normal" `SetDefaults_Foo`
    // function to allow consumers of this type to set whatever defaults for their
    // embedded configs. Forcing consumers to use these defaults would be problematic
    // as defaulting in the scheme is done as part of the conversion, and there would
    // be no easy way to opt-out. Instead, if you want to use this defaulting method
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

            // TODO Consider handling other non-ConeLookupTagBasedType types here (see KT-66418)
            val type = getDeclaredType()?.lowerBoundIfFlexible() as? ConeLookupTagBasedType
    
            return type?.toTargetSymbol(session, symbolBuilder) ?: run {
                val diagnostic = (this as? FirErrorTypeRef)?.diagnostic
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirOverrideInfoProvider.kt

            require(memberSymbol is KaFirSymbol<*>)
            require(classSymbol is KaFirSymbol<*>)
    
            val memberFir = memberSymbol.firSymbol.fir as? FirCallableDeclaration ?: return false
            val parentClassFir = classSymbol.firSymbol.fir as? FirClass ?: return false
    
            // Inspecting visibility requires resolving to status
            classSymbol.firSymbol.lazyResolveToPhase(FirResolvePhase.STATUS)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildSrcProblemReportingIntegrationTest.groovy

                withProblem("Task `:broken` of type `org.gradle.api.DefaultTask`: cannot serialize object of type 'org.gradle.api.internal.project.DefaultProject', a subtype of 'org.gradle.api.Project', as these are not supported with the configuration cache.")
                problemsWithStackTraceCount = 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r50/ArgumentPassingCrossVersionTest.groovy

        def "Adding null JVM argument throws NPE"() {
            when:
            loadBuildEnvironment { builder -> builder.addJvmArguments(null as String) }
    
            then:
            thrown(NullPointerException)
    
            when:
            loadBuildEnvironment { builder -> builder.addJvmArguments(null as List) }
    
            then:
            thrown(NullPointerException)
        }
    
        def "Appends additional arguments"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            then:
            configuration.dependencies as Set == [projectDependency] as Set
            configuration.allDependencies as Set == [dependency, projectDependency] as Set
        }
    
        def "resolves files"() {
            def configuration = conf()
            def fileSet = [new File("somePath")] as Set
    
            given:
            resolver.resolveGraph(configuration) >> graphResolved(fileSet)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *MutatingWebhookConfiguration) APILifecycleIntroduced() (major, minor int) {
    	return 1, 16
    }
    
    // APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/rbac/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *ClusterRole) APILifecycleIntroduced() (major, minor int) {
    	return 1, 8
    }
    
    // APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationContainerSpec.groovy

            configurationContainer.findByName("foo") == null
            configurationContainer.findAll { it.name == "compile" } as Set == [compile] as Set
            configurationContainer.findAll { it.name == "foo" } as Set == [] as Set
    
            configurationContainer as List == [compile] as List
    
            when:
            configurationContainer.getByName("fooo")
    
            then:
            thrown(UnknownConfigurationException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/path-params-numeric-validations.md

    !!! note
        A path parameter is always required as it has to be part of the path. Even if you declared it with `None` or set a default value, it would not affect anything, it would still be always required.
    
    ## Order the parameters as you need
    
    !!! tip
        This is probably not as important or necessary if you use `Annotated`.
    
    Let's say that you want to declare the query parameter `q` as a required `str`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 01 21:05:52 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top