Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 336 for emberi (0.19 sec)

  1. src/math/big/arith_decl.go

    // Notable members of the hall of shame include:
    //   - github.com/remyoudompheng/bigfft
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname addVV
    //go:noescape
    func addVV(z, x, y []Word) (c Word)
    
    // subVV should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:15:13 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractSuperClassChangesRule.groovy

        }
    
        Violation maybeViolation(final JApiCompatibility member) {
            if (!(member instanceof JApiClass)) {
                return null
            }
    
            if (!changed(member)) {
                return null
            }
    
            Optional<CtClass> oldClass = member.oldClass
            Optional<CtClass> newClass = member.newClass
            if (!oldClass.isPresent() || !newClass.isPresent()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 06 19:15:15 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/bodies/KtRendererBodyMemberScopeSorter.kt

        public fun sortMembers(
            analysisSession: KaSession,
            members: List<KaDeclarationSymbol>,
            owner: KaSymbolWithMembers,
        ): List<KaDeclarationSymbol>
    
        public object ENUM_ENTRIES_AT_BEGINING : KaRendererBodyMemberScopeSorter {
            override fun sortMembers(
                analysisSession: KaSession,
                members: List<KaDeclarationSymbol>,
                owner: KaSymbolWithMembers,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/AcceptedApiChangesTest.groovy

                            "member": "Implemented interface org.gradle.api.initialization.IncludedBuild",
                            "changes": ["Interface has been removed"],
                            "acceptation": "@Incubating interface has been removed"
                        },
                        {
                            "type": "other.Type",
                            "member": "Method other.Type.someMethod",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/schemaFromTypes.kt

        )
    
    
    val isPublic: MemberFilter = MemberFilter { member: KCallable<*> ->
        member.visibility == KVisibility.PUBLIC
    }
    
    
    val isPublicAndRestricted: MemberFilter = MemberFilter { member: KCallable<*> ->
        member.visibility == KVisibility.PUBLIC &&
            member.annotationsWithGetters.any {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:07:27 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. dbflute_fess/_readme.txt

    For example, if a table called "MEMBER" exists,
    you can use these classes like this:
    /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    memberBhv.selectEntity(cb -> {
        cb.query().setMemberId_Equal(3);
    }).alwaysPresent(member -> {
        ... = member.getMemberName();
    });
    // memberBhv      : Behavior (instance)
    // MemberCB(cb)   : ConditionBean
    // Member(member) : Entity
    - - - - - - - - - -/
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jul 04 22:46:31 UTC 2015
    - 2.5K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/list_json_fields.txt

    package main
    
    func main() {}
    -- embed/go.mod --
    module example.com/embed
    -- embed/embed.go --
    package embed
    
    import _ "embed"
    
    //go:embed non-existing-file.txt
    var s string
    -- embed/embed_test.go --
    package embed
    
    import _ "embed"
    
    //go:embed non-existing-file.txt
    var s string
    -- embed/embed_xtest_test.go --
    package embed_test
    
    import _ "embed"
    
    //go:embed non-existing-file.txt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 15:24:16 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/reset/removeetcdmember.go

    )
    
    // NewRemoveETCDMemberPhase creates a kubeadm workflow phase for remove-etcd-member
    func NewRemoveETCDMemberPhase() workflow.Phase {
    	return workflow.Phase{
    		Name:  "remove-etcd-member",
    		Short: "Remove a local etcd member.",
    		Long:  "Remove a local etcd member for a control plane node.",
    		Run:   runRemoveETCDMemberPhase,
    		InheritFlags: []string{
    			options.KubeconfigPath,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 11 08:02:50 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  9. test/fixedbugs/issue18419.dir/other.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package other
    
    type Exported struct {
    	Member int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 09 16:13:52 UTC 2017
    - 258 bytes
    - Viewed (0)
  10. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/AbstractAcceptedApiChangesMaintenanceTask.kt

            val member: String?,
            val acceptation: String?,
            val changes: List<String>?
        ) {
            override fun toString(): String = "Type: '$type', Member: '$member'"
        }
    
        @VisibleForTesting
        data class AcceptedApiChanges(
            val acceptedApiChanges: List<AcceptedApiChange>?
        )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top