Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 912 for regular (0.15 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/invocation/GradleLifecycleIsolationIntegrationTest.groovy

            outputContains("project name = root")
            outputContains("project name = a")
            outputContains("project name = b")
    
            where:
            functionType | modifier  | owner
            "regular"    | ""        | "new Helper()"
            "static"     | "static " | "Helper"
        }
    
        @ToBeImplemented
        def "lifecycle actions in Kotlin DSL allow using top-level build script function"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. src/go/doc/testdata/generics.go

    }
    
    // Func has an instantiated constraint.
    func Func[T Constraint[string, Type[int]]]() {}
    
    // AnotherFunc has an implicit constraint interface.
    //
    // Neither type parameters nor regular parameters should be filtered.
    func AnotherFunc[T ~struct{ f int }](_ struct{ f int }) {}
    
    // AFuncType demonstrates filtering of parameters and type parameters. Here we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 10 18:06:32 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  3. src/runtime/internal/sys/nih.go

    //
    // 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
    // converted to a pointer to a not-in-heap type, even if they have the
    // same underlying type.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 18:24:50 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/dot_general.h

    // 2) Inserted mhlo.reshape/transpose will be legalized to tf.reshape/transpose
    // in LegalizeHloToTf (then from tf to tfl later).
    // 3) If the operands are dynamic shaped tensors, mhlo.DynamicReshapeOp is
    // inserted instead of the regular reshape, and additional ops (e.g. Gather,
    // Concat ) are inserted for shape inference purposes.
    // 4) All the DotOp are converted to DotGeneral during the optimization pass
    // (ConvertDotOp).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 04 19:00:01 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //
    //   bool KilledBySIGHUP(int exit_code) {
    //     return WIFSIGNALED(exit_code) && WTERMSIG(exit_code) == SIGHUP;
    //   }
    //
    //   ASSERT_EXIT(client.HangUpServer(), KilledBySIGHUP, "Hanging up!");
    //
    // On the regular expressions used in death tests:
    //
    //   On POSIX-compliant systems (*nix), we use the <regex.h> library,
    //   which uses the POSIX extended regex syntax.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/UnitOfWork.java

         */
        default void visitIdentityInputs(InputVisitor visitor) {}
    
        /**
         * Visit regular inputs of the work.
         *
         * Regular inputs are inputs that are not used to calculate the identity of the work, but used to check up-to-dateness or to calculate the cache key.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtensionProvider.kt

    import org.jetbrains.kotlin.analysis.project.structure.KtModule
    
    /**
     * Allows extending Kotlin resolution by generating additional declarations.
     *
     * Those declarations will be analyzed the same way as they were just regular source files inside the project.
     *
     * All member implementations should consider caching the results for subsequent invocations.
     */
    public abstract class KaResolveExtensionProvider {
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. src/internal/profile/filter.go

    package profile
    
    // TagMatch selects tags for filtering
    type TagMatch func(key, val string, nval int64) bool
    
    // FilterSamplesByTag removes all samples from the profile, except
    // those that match focus and do not match the ignore regular
    // expression.
    func (p *Profile) FilterSamplesByTag(focus, ignore TagMatch) (fm, im bool) {
    	samples := make([]*Sample, 0, len(p.Sample))
    	for _, s := range p.Sample {
    		focused, ignored := focusedSample(s, focus, ignore)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/error_test.go

    // Error comments must be of the form // ERROR rx or /* ERROR rx */
    // where rx is a regular expression that matches the reported error
    // message. The rx text comprises the comment text after "ERROR ",
    // with any white space around it stripped.
    //
    // If the line comment form is used, the reported error's line must
    // match the line of the error comment.
    //
    // If the regular comment form is used, the reported error's position
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    Therefore, you may face situations where you want to substitute a platform dependency with a regular dependency, or the other way around.
    
    [[sec:substitution_with_attributes]]
    ==== Substituting a dependency with attributes
    
    Let's imagine that you want to substitute a platform dependency with a regular dependency.
    This means that the library you are consuming declared something like this:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
Back to top