Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 36 for postbox (0.12 sec)

  1. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/compilerFacility/AbstractCompilerFacilityTest.kt

            val textRanges = when (diagnostic) {
                is KaDiagnosticWithPsi<*> -> {
                    diagnostic.textRanges.singleOrNull()?.toString()
                        ?: diagnostic.textRanges.joinToString(prefix = "[", postfix = "]")
                }
                else -> null
            }
    
            return buildString {
                if (textRanges != null) {
                    append(textRanges)
                    append(" ")
                }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. pkg/config/security/security.go

    // URI must start with "http://" or "https://", which corresponding to "http" or "https" scheme.
    // Port number is extracted from URI if available (i.e from postfix :<port>, eg. ":80"), or assigned
    // to a default value based on URI scheme (80 for http and 443 for https).
    // Port name is set to URI scheme value.
    func ParseJwksURI(jwksURI string) (JwksInfo, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:43:34 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                        getPartiallyAppliedSymbol,
                        setPartiallyAppliedSymbol
                    )
                }
                KaCompoundAccess.IncOrDecOperation.Precedence.POSTFIX -> {
                    // For postfix case, the last argument is the operation call invoked on a synthetic local variable `<unary>`. This local
                    // variable is initialized by calling the `get` function.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                        String postfix = identifier.map { it -> " " + it }.getOrElse("")
                        println "files\${postfix}: " + artifacts.artifactFiles.collect { it.name }
                        artifacts.artifactFiles.each { assert it.exists() }
                        println "artifacts\${postfix}: " + artifacts.collect { it.file.name + " (" + it.id.componentIdentifier + ")" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  5. helm/minio/values.yaml

        enabled: false
        runAsUser: 1000
        runAsGroup: 1000
      resources:
        requests:
          memory: 128Mi
      # Command to run after the main command on exit
      exitCommand: ""
    
    ## Merge jobs
    postJob:
      podAnnotations: {}
      annotations: {}
      securityContext:
        enabled: false
        runAsUser: 1000
        runAsGroup: 1000
        fsGroup: 1000
      nodeSelector: {}
      tolerations: []
      affinity: {}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KaFe10Resolver.kt

            val kind = unaryExpression.getInOrDecOperationKind()
            val precedence = when (unaryExpression) {
                is KtPostfixExpression -> KaCompoundAccess.IncOrDecOperation.Precedence.POSTFIX
                is KtPrefixExpression -> KaCompoundAccess.IncOrDecOperation.Precedence.PREFIX
                else -> error("unexpected KtUnaryExpression $unaryExpression")
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    		n.Op.goString(indent+2, "Op: "))
    }
    
    // Unary is a unary operation in an expression.
    type Unary struct {
    	Op         AST
    	Expr       AST
    	Suffix     bool // true for ++ -- when used as postfix
    	SizeofType bool // true for sizeof (type)
    }
    
    func (u *Unary) print(ps *printState) {
    	op, _ := u.Op.(*Operator)
    	expr := u.Expr
    
    	// Don't print the argument list when taking the address of a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  8. src/net/http/transport_test.go

    			want: false,
    		},
    		{
    			name: "POST_idempotency-key",
    			req:  &Request{Method: "POST", Header: Header{"Idempotency-Key": {"x"}}},
    			want: true,
    		},
    		{
    			name: "POST_x-idempotency-key",
    			req:  &Request{Method: "POST", Header: Header{"X-Idempotency-Key": {"x"}}},
    			want: true,
    		},
    		{
    			name: "POST_body",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  9. ChangeLog.md

    - [`KT-49881`](https://youtrack.jetbrains.com/issue/KT-49881) "AssertionError: Base expression was not processed: POSTFIX_EXPRESSION" when analyzing dangling [bracketed] expression with postfix
    - [`KT-53847`](https://youtrack.jetbrains.com/issue/KT-53847) Missed USAGE_IS_NOT_INLINABLE when using runCatching with the inline function's functional argument as a receiver
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__batch__v1_openapi.json

            "properties": {
              "field": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
Back to top