Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for specialName (0.32 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types_jsonschema.go

    	// Numeric index of array is not supported.
    	// For field name which contains special characters, use `['specialName']` to refer the field name.
    	// e.g. for attribute `foo.34$` appears in a list `testList`, the fieldPath could be set to `.testList['foo.34$']`
    	// +optional
    	FieldPath string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 22:23:23 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types_jsonschema.go

    	// Numeric index of array is not supported.
    	// For field name which contains special characters, use `['specialName']` to refer the field name.
    	// e.g. for attribute `foo.34$` appears in a list `testList`, the fieldPath could be set to `.testList['foo.34$']`
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types_jsonschema.go

    	// Numeric index of array is not supported.
    	// For field name which contains special characters, use `['specialName']` to refer the field name.
    	// e.g. for attribute `foo.34$` appears in a list `testList`, the fieldPath could be set to `.testList['foo.34$']`
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    func (st *state) encoding(params bool, local forLocalNameType) AST {
    	if len(st.str) < 1 {
    		st.fail("expected encoding")
    	}
    
    	if st.str[0] == 'G' || st.str[0] == 'T' {
    		return st.specialName()
    	}
    
    	a, explicitObjectParameter := st.name()
    	a = simplify(a)
    
    	if !params {
    		// Don't demangle the parameters.
    
    		// Strip CV-qualifiers, as they apply to the 'this'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto

      // Numeric index of array is not supported.
      // For field name which contains special characters, use `['specialName']` to refer the field name.
      // e.g. for attribute `foo.34$` appears in a list `testList`, the fieldPath could be set to `.testList['foo.34$']`
      // +optional
      optional string fieldPath = 5;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto

      // Numeric index of array is not supported.
      // For field name which contains special characters, use `['specialName']` to refer the field name.
      // e.g. for attribute `foo.34$` appears in a list `testList`, the fieldPath could be set to `.testList['foo.34$']`
      // +optional
      optional string fieldPath = 5;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10SymbolInfoProvider.kt

                val getter = descriptor.getter ?: return SpecialNames.NO_NAME_PROVIDED
                return Name.identifier(DescriptorUtils.getJvmName(getter) ?: JvmAbi.getterName(descriptor.name.asString()))
            }
    
            val ktPropertyName = (symbol.psi as? KtProperty)?.name ?: return SpecialNames.NO_NAME_PROVIDED
            return Name.identifier(JvmAbi.getterName(ktPropertyName))
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/renderers/KtDeclarationNameRenderer.kt

    import org.jetbrains.kotlin.analysis.api.symbols.markers.KaNamedSymbol
    import org.jetbrains.kotlin.analysis.utils.printer.PrettyPrinter
    import org.jetbrains.kotlin.name.Name
    import org.jetbrains.kotlin.name.SpecialNames
    import org.jetbrains.kotlin.renderer.render
    
    public interface KaDeclarationNameRenderer {
        public fun renderName(
            analysisSession: KaSession,
            symbol: KaNamedSymbol,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirDestructuringDeclarationSymbol.kt

    import org.jetbrains.kotlin.analysis.api.symbols.pointers.KaSymbolPointer
    import org.jetbrains.kotlin.fir.psi
    import org.jetbrains.kotlin.fir.symbols.impl.FirVariableSymbol
    import org.jetbrains.kotlin.name.SpecialNames
    import org.jetbrains.kotlin.psi.KtDestructuringDeclaration
    import org.jetbrains.kotlin.psi.KtParameter
    import org.jetbrains.kotlin.utils.exceptions.errorWithAttachment
    import org.jetbrains.kotlin.utils.exceptions.withPsiEntry
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/FirJavaDeclaredMembersOnlyScope.kt

    import org.jetbrains.kotlin.fir.resolve.substitution.ConeSubstitutor
    import org.jetbrains.kotlin.fir.scopes.*
    import org.jetbrains.kotlin.fir.symbols.impl.*
    import org.jetbrains.kotlin.name.Name
    import org.jetbrains.kotlin.name.SpecialNames
    
    internal class FirJavaDeclaredMembersOnlyScope(
        private val delegate: FirContainingNamesAwareScope,
        private val owner: FirJavaClass,
    ) : FirCallableFilteringScope(delegate) {
        init {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Oct 10 13:38:00 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top