Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 770 for emberi (0.15 sec)

  1. src/runtime/alg.go

    // hash implementation.
    var useAeshash bool
    
    // in asm_*.s
    
    // memhash should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/aacfactory/fns
    //   - github.com/dgraph-io/ristretto
    //   - github.com/minio/simdjson-go
    //   - github.com/nbd-wtf/go-nostr
    //   - github.com/outcaste-io/ristretto
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/flowcontrol/v1beta3/generated.proto

    // at least one member of verbs matches the request, (b) at least one
    // member of apiGroups matches the request, (c) at least one member of
    // resources matches the request, and (d) either (d1) the request does
    // not specify a namespace (i.e., `Namespace==""`) and clusterScope is
    // true or (d2) the request specifies a namespace and least one member
    // of namespaces matches the request's namespace.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  3. 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)
  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/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)
  6. build-logic/binary-compatibility/src/main/groovy/gradlebuild/EnrichedReportRenderer.groovy

                        // with the sort used by AbstractAcceptedApiChangesMaintenanceTask.
                        result.acceptedApiChanges.sort((a, b) => { 
                            if ((a.type +'#' + a.member) > (b.type + '#' + b.member)) {
                                return 1; 
                            } else {
                                return -1;
                            }
                        });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 07 20:38:43 UTC 2023
    - 7.2K 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. staging/src/k8s.io/api/flowcontrol/v1beta1/types_swagger_doc_generated.go

    	"verbs":        "`verbs` is a list...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  10. dbflute_fess/dfprop/conditionBeanMap.dfprop

    #
    # Example:
    # map:{
    #     # This means that String includes GreaterThan at MEMBER.MEMBER_ACCOUNT only
    #     # and LessThan at PRODUCT.PRODUCT_NAME and PRODUCT.PRODUCT_HANDLE_CODE,
    #     # and InScope for LONGVARCHAR(e.g. text type) is excluded.
    #     ; String = map:{
    #         ; GreaterThan = map:{ MEMBER = list:{ MEMBER_ACCOUNT } }
    #         ; LessThan = map:{ PRODUCT = list:{ PRODUCT_NAME ; PRODUCT_HANDLE_CODE } }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 4K bytes
    - Viewed (0)
Back to top