Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 199 for emberi (0.1 sec)

  1. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/AlphabeticalAcceptedApiChangesTask.kt

    import org.gradle.api.tasks.TaskAction
    import java.io.File
    
    
    /**
     * This [Task][org.gradle.api.Task] checks that the contents of a given accepted API changes files
     * are present in alphabetical order (by type, then member), and throws an exception and reports
     * any changes that are not.
     */
    @CacheableTask
    abstract class AlphabeticalAcceptedApiChangesTask : AbstractAcceptedApiChangesMaintenanceTask() {
    
        @TaskAction
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. docs/de/docs/reference/apirouter.md

    Sie können die `APIRouter`-Klasse direkt von `fastapi` importieren:
    
    ```python
    from fastapi import APIRouter
    ```
    
    ::: fastapi.APIRouter
        options:
            members:
                - websocket
                - include_router
                - get
                - put
                - post
                - delete
                - options
                - head
                - patch
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:16:35 UTC 2024
    - 538 bytes
    - Viewed (0)
  3. src/runtime/cgo.go

    	_cgo_getstackbound            unsafe.Pointer
    )
    
    // iscgo is set to true by the runtime/cgo package
    //
    // iscgo should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/ebitengine/purego
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname iscgo
    var iscgo bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/containingDeclarationProvider/containingDeclarationByPsi/scriptWithResultProperty.kts

    fun foo() = 42
    val prop = 42
    
    class Bar {
        fun member() {
    
        }
    
        val memberProperty: String
            get() {
                fun b() = "sre"
                return b()
            }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Oct 20 09:27:21 UTC 2023
    - 185 bytes
    - Viewed (0)
  5. analysis/analysis-api-standalone/tests-gen/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/generated/cases/components/signatureSubstitution/FirStandaloneNormalAnalysisSourceModuleAnalysisApiSignatureContractsTestGenerated.java

      }
    
      @Test
      @TestMetadata("members.kt")
      public void testMembers() {
        runTest("analysis/analysis-api/testData/components/signatureSubstitution/signatureContracts/members.kt");
      }
    
      @Test
      @TestMetadata("topLevel.kt")
      public void testTopLevel() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Feb 27 20:30:06 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/markers/KtPossibleMemberSymbol.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.symbols.markers
    
    import org.jetbrains.kotlin.analysis.api.symbols.KaSymbol
    
    /**
     * A marker interface for symbols which could potentially be members of some class.
     *
     * @see org.jetbrains.kotlin.analysis.api.components.KaTypeProviderMixIn.getDispatchReceiverType
     */
    public interface KaPossibleMemberSymbol : KaSymbol
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 636 bytes
    - Viewed (0)
  7. docs/en/docs/reference/uploadfile.md

    You can import it directly from `fastapi`:
    
    ```python
    from fastapi import UploadFile
    ```
    
    ::: fastapi.UploadFile
        options:
            members:
                - file
                - filename
                - size
                - headers
                - content_type
                - read
                - write
                - seek
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 472 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/format/formatting.go

    func FmtUsers(list []user.Info) string {
    	var buf bytes.Buffer
    	buf.WriteString("[]user.Info{")
    	for idx, member := range list {
    		if idx > 0 {
    			buf.WriteString(", ")
    		}
    		buf.WriteString(fmt.Sprintf("%#+v", member))
    	}
    	buf.WriteString("}")
    	return buf.String()
    }
    
    // FmtRequests produces a golang source expression of the value.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  9. src/go/types/object_test.go

    	}
    
    	// get embedded error.Error method
    	iface := pkg.Scope().Lookup("I")
    	embed, _, _ := LookupFieldOrMethod(iface.Type(), false, nil, "Error")
    	if embed == nil {
    		t.Fatalf("embedded error.Error not found")
    	}
    
    	// original and embedded Error object should be identical
    	if orig != embed {
    		t.Fatalf("%s (%p) != %s (%p)", orig, orig, embed, embed)
    	}
    }
    
    var testObjects = []struct {
    	src   string
    	obj   string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtOverrideInfoProvider.kt

            withValidityAssertion { analysisSession.overrideInfoProvider.isVisible(this, classSymbol) }
    
        /**
         * Gets the [ImplementationStatus] of the [this] member symbol in the given [parentClassSymbol]. Or null if this symbol is not a
         * member.
         */
        public fun KaCallableSymbol.getImplementationStatus(parentClassSymbol: KaClassOrObjectSymbol): ImplementationStatus? =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top