Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,820 for _get (0.1 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescSyntheticJavaPropertySymbol.kt

        override val name: Name
            get() = withValidityAssertion { descriptor.name }
    
        override val isFromPrimaryConstructor: Boolean
            get() = withValidityAssertion { descriptor.containingDeclaration is ConstructorDescriptor }
    
        override val isOverride: Boolean
            get() = withValidityAssertion { descriptor.isExplicitOverride }
    
        override val isStatic: Boolean
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirKotlinPropertySymbol.kt

        override val isStatic: Boolean get() = withValidityAssertion { firSymbol.isStatic }
        override val isActual: Boolean get() = withValidityAssertion { firSymbol.isActual }
        override val isExpect: Boolean get() = withValidityAssertion { firSymbol.isExpect }
    
        override val hasGetter: Boolean get() = withValidityAssertion { firSymbol.getterSymbol != null }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirSyntheticJavaPropertySymbol.kt

        override val backingFieldSymbol: KaBackingFieldSymbol?
            get() = null
    
        override val isFromPrimaryConstructor: Boolean get() = withValidityAssertion { false }
        override val isOverride: Boolean get() = withValidityAssertion { firSymbol.isOverride }
        override val isStatic: Boolean get() = withValidityAssertion { firSymbol.isStatic }
    
        override val hasSetter: Boolean get() = withValidityAssertion { firSymbol.setterSymbol != null }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/ConfigurationCacheStartParameter.kt

            get() = startParameter.isConfigurationCacheIgnoreInputsInTaskGraphSerialization
    
        val maxProblems: Int
            get() = startParameter.configurationCacheMaxProblems
    
        val ignoredFileSystemCheckInputs: String?
            get() = startParameter.configurationCacheIgnoredFileSystemCheckInputs
    
        val isDebug: Boolean
            get() = startParameter.isConfigurationCacheDebug
    
        val failOnProblems: Boolean
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescSyntheticJavaPropertySymbolForOverride.kt

        override val name: Name
            get() = withValidityAssertion { descriptor.name }
    
        override val isFromPrimaryConstructor: Boolean
            get() = withValidityAssertion { descriptor.containingDeclaration is ConstructorDescriptor }
    
        override val isOverride: Boolean
            get() = withValidityAssertion { descriptor.isExplicitOverride }
    
        override val isStatic: Boolean
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. pilot/pkg/features/experimental.go

    	).Get()
    
    	MCSAPIGroup = env.Register("MCS_API_GROUP", "multicluster.x-k8s.io",
    		"The group to be used for the Kubernetes Multi-Cluster Services (MCS) API.").Get()
    
    	MCSAPIVersion = env.Register("MCS_API_VERSION", "v1alpha1",
    		"The version to be used for the Kubernetes Multi-Cluster Services (MCS) API.").Get()
    
    	EnableMCSAutoExport = env.Register(
    		"ENABLE_MCS_AUTO_EXPORT",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. pdm_build.py

        # Get custom optional dependencies name to always include in this (non-slim) package
        include_optional_dependencies: List[str] = config.get(
            "include-optional-dependencies", []
        )
        # Override main [project] configs with custom configs for this package
        for key, value in project_config.items():
            metadata[key] = value
        # Get custom build config for the current package
        build_config: Dict[str, Any] = (
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 30 06:38:13 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. tests/test_query.py

    def test_query_optional():
        response = client.get("/query/optional")
        assert response.status_code == 200
        assert response.json() == "foo bar"
    
    
    def test_query_optional_query_baz():
        response = client.get("/query/optional?query=baz")
        assert response.status_code == 200
        assert response.json() == "foo bar baz"
    
    
    def test_query_optional_not_declared_baz():
        response = client.get("/query/optional?not_declared=baz")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. tests/test_application.py

        ],
    )
    def test_get_path(path, expected_status, expected_response):
        response = client.get(path)
        assert response.status_code == expected_status
        assert response.json() == expected_response
    
    
    def test_swagger_ui():
        response = client.get("/docs")
        assert response.status_code == 200, response.text
        assert response.headers["content-type"] == "text/html; charset=utf-8"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 52.2K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescFunctionSymbol.kt

            }
    
        override val isExternal: Boolean
            get() = withValidityAssertion { descriptor.isExternal }
    
        override val isInline: Boolean
            get() = withValidityAssertion { descriptor.isInline }
    
        override val isOverride: Boolean
            get() = withValidityAssertion { descriptor.isExplicitOverride }
    
        override val isInfix: Boolean
            get() = withValidityAssertion {
                if (descriptor.isDynamic()) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top