Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for specialName (0.37 sec)

  1. src/main/java/jcifs/internal/dfs/Referral.java

    
        /**
         * @return the node
         */
        public final String getNode () {
            return this.node;
        }
    
    
        /**
         * @return the specialName
         */
        public final String getSpecialName () {
            return this.specialName;
        }
    
    
        /**
         * @return the expandedNames
         */
        public final String[] getExpandedNames () {
            return this.expandedNames;
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/unicode/casetables.go

    // development first.
    
    package unicode
    
    var TurkishCase SpecialCase = _TurkishCase
    var _TurkishCase = SpecialCase{
    	CaseRange{0x0049, 0x0049, d{0, 0x131 - 0x49, 0}},
    	CaseRange{0x0069, 0x0069, d{0x130 - 0x69, 0, 0x130 - 0x69}},
    	CaseRange{0x0130, 0x0130, d{0, 0x69 - 0x130, 0}},
    	CaseRange{0x0131, 0x0131, d{0x49 - 0x131, 0, 0x49 - 0x131}},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 755 bytes
    - Viewed (0)
  10. 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)
Back to top