Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for syntax (0.19 sec)

  1. manifests/charts/base/crds/crd-all.gen.yaml

                                      description: RE2 style regex-based match (https://github.com/google/re2/wiki/Syntax).
                                      type: string
                                  type: object
                                description: withoutHeader has the same syntax with the
                                  header, but has opposite meaning.
                                type: object
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 20:20:47 GMT 2024
    - 606.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Maps.java

       *
       * <p><b>Note:</b> this method is now unnecessary and should be treated as deprecated. Instead,
       * use the {@code HashMap} constructor directly, taking advantage of <a
       * href="http://goo.gl/iz2Wi">"diamond" syntax</a>.
       *
       * @return a new, empty {@code HashMap}
       */
      public static <K extends @Nullable Object, V extends @Nullable Object>
          HashMap<K, V> newHashMap() {
        return new HashMap<>();
      }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 24 19:38:27 GMT 2024
    - 159.3K bytes
    - Viewed (0)
  3. cmd/utils.go

    	}{r.Method, rawURI, header}
    
    	var buffer bytes.Buffer
    	enc := json.NewEncoder(&buffer)
    	enc.SetEscapeHTML(false)
    	if err := enc.Encode(&req); err != nil {
    		// Upon error just return Go-syntax representation of the value
    		return fmt.Sprintf("%#v", req)
    	}
    
    	// Formatted string.
    	return strings.TrimSpace(buffer.String())
    }
    
    // isFile - returns whether given path is a file or not.
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sun Apr 21 11:43:18 GMT 2024
    - 32K bytes
    - Viewed (0)
  4. .space/CODEOWNERS

    # Check-out https://www.jetbrains.com/help/space/code-owners.html#codeowners-file-syntax
    # This file is checked by org.jetbrains.kotlin.code.SpaceCodeOwnersTest
    # Directive OWNER_LIST specifies possible values for owner field
    # Directive UNKNOWN specifies that path is unclaimed
    # Ownership must be exhaustive modulo UNKNOWN
    
    # OWNER_LIST: Kotlin
    # OWNER_LIST: "Kotlin Libraries"
    # OWNER_LIST: "Kotlin JVM" "Kotlin Native" "Kotlin Wasm" "Kotlin Common Backend"
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 19:58:12 GMT 2024
    - 23.9K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnostics.kt

        }
    
        interface JsStaticOnOverride : KtFirDiagnostic<PsiElement> {
            override val diagnosticClass get() = JsStaticOnOverride::class
        }
    
        interface Syntax : KtFirDiagnostic<PsiElement> {
            override val diagnosticClass get() = Syntax::class
            val message: String
        }
    
        interface NestedExternalDeclaration : KtFirDiagnostic<KtExpression> {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Apr 24 09:49:26 GMT 2024
    - 171.1K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDataClassConverters.kt

                    firSymbolBuilder.buildSymbol(firBasedSymbol)
                },
                firDiagnostic as KtPsiDiagnostic,
                token,
            )
        }
        add(FirErrors.DEPRECATED_TYPE_PARAMETER_SYNTAX) { firDiagnostic ->
            DeprecatedTypeParameterSyntaxImpl(
                firDiagnostic as KtPsiDiagnostic,
                token,
            )
        }
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Apr 24 09:49:26 GMT 2024
    - 208.3K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnosticsImpl.kt

    internal class SyntaxImpl(
        override val message: String,
        firDiagnostic: KtPsiDiagnostic,
        token: KtLifetimeToken,
    ) : KtAbstractFirDiagnostic<PsiElement>(firDiagnostic, token), KtFirDiagnostic.Syntax
    
    internal class NestedExternalDeclarationImpl(
        firDiagnostic: KtPsiDiagnostic,
        token: KtLifetimeToken,
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Apr 24 09:49:26 GMT 2024
    - 225.2K bytes
    - Viewed (0)
Back to top