Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 487 for Implicits (0.11 sec)

  1. dbflute_fess/dfprop/classificationDefinitionMap.dfprop

    #                     ; groupComment=[comment]
    #                     ; elementList=list:{[the list of classification element's name]}
    #                 }
    #             }
    #         }
    #         # classification elements for implicit classification
    #         ; map:{
    #             ; code=[code]; name=[name]; alias=[alias]; comment=[comment]
    #             ; sisterCode=[code or code-list]; subItemMap=map:{[free-map]}
    #         }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jul 04 22:46:31 UTC 2015
    - 2.2K bytes
    - Viewed (0)
  2. src/go/types/interface.go

    		check.needsCleanup(typ)
    	}
    	return typ
    }
    
    // MarkImplicit marks the interface t as implicit, meaning this interface
    // corresponds to a constraint literal such as ~T or A|B without explicit
    // interface embedding. MarkImplicit should be called before any concurrent use
    // of implicit interfaces.
    func (t *Interface) MarkImplicit() {
    	t.implicit = true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/providers/implicitTaskInputDependency/kotlin/settings.gradle.kts

    rootProject.name = "implicit-task-input-dependency"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 52 bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/selection.go

    // sequence of selection operations x.a.b.c.f. The SelectionKind
    // describes the kind of the final (explicit) operation; all the
    // previous (implicit) operations are always field selections.
    // Each element of Indices specifies an implicit field (a, b, c)
    // by its index in the struct type of the field selection operand.
    //
    // For a FieldVal operation, the final selection refers to the field
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/providers/implicitTaskInputFileDependency/groovy/settings.gradle

    rootProject.name = 'implicit-task-input-file-dependency'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 57 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/providers/implicitTaskInputDependency/groovy/settings.gradle

    rootProject.name = "implicit-task-input-dependency"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 52 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/providers/implicitTaskInputFileDependency/kotlin/settings.gradle.kts

    rootProject.name = "implicit-task-input-file-dependency"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 57 bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/build/BuildState.java

         */
        Path getIdentityPath();
    
        /**
         * Is this an implicit build? An implicit build is one that is managed by Gradle and which is not addressable by user build logic.
         */
        boolean isImplicitBuild();
    
        /**
         * Should this build be imported into an IDE? Some implicit builds, such as source dependency builds, are not intended to be imported into the IDE or editable by users.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 17:48:01 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. src/runtime/internal/sys/nih.go

    // `sysAlloc`, `persistentalloc`, r`fixalloc`, or from a manually-managed span).
    //
    // Specifically:
    //
    // 1. `new(T)`, `make([]T)`, `append([]T, ...)` and implicit heap
    // allocation of T are disallowed. (Though implicit allocations are
    // disallowed in the runtime anyway.)
    //
    // 2. A pointer to a regular type (other than `unsafe.Pointer`) cannot be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 18:24:50 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  10. src/internal/types/testdata/fixedbugs/issue47818.go

    	(f[ /* ERROR "function instantiation requires go1.18 or later" */ int])(0)   // parentheses (different code path)
    	f( /* ERROR "implicit function instantiation requires go1.18 or later" */ x) // implicit instantiation
    }
    
    type C1 interface {
    	comparable // ERROR "predeclared comparable requires go1.18 or later"
    }
    
    type C2 interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top