Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 70 for Match (0.06 sec)

  1. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintCheckerTest.kt

                equalTo("file 'displayNameOf(scriptFile)' has changed")
            )
        }
    
        @Test
        fun `build input file has been removed`() {
            val inputFile = File("input.txt")
            // no need to match a missing file hash, as long it is changed from the original one
            val missingFileHash = TestHashCodes.hashCodeFrom(2)
            val originalFileHash = TestHashCodes.hashCodeFrom(1)
            assertThat(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/FunctionCallResolver.kt

                val param =
                    if (arg is FunctionArgument.Named) {
                        findParameterByName(arg.name) ?: return null
                        // TODO return a named argument that does not match any parameter
                    } else parameters[argIndex]
    
                if (param in bindingMap) {
                    // TODO: report arg conflict
                    return@bindFunctionParametersToArguments null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

                    if (this !is CallableMemberDescriptor || dispatchReceiverParameter != null) {
                        // Non-static open callables in final class are counted as final (to match FIR)
                        return Modality.FINAL
                    }
                }
            }
    
            return this.modality
        }
    
    internal fun ConstantValue<*>.toKtConstantValue(): KaConstantValue {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirImportOptimizer.kt

        return ((this as? KtQualifiedExpression)?.selectorExpression ?: this) as? KtSimpleNameExpression?
    }
    
    /**
     * Helper abstraction to navigate through qualified FIR elements - we have to match [ClassId] and PSI qualifier pair
     * to correctly reason about long qualifiers.
     */
    private sealed interface TypeQualifier {
        val referencedClassId: ClassId
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  5. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/StandaloneProjectFactory.kt

                for (part in packageParts.reversed()) {
                    if (javaDir?.name == part) {
                        javaDir = javaDir.parent
                    } else {
                        // Error(ish): file package does not match file path.
                        // This could happen if, e.g., src/my/pkg/MyTest.java has package `test.pkg`.
                        // It is just best practice, not enforced by language spec.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/generic.rules

    // on the matching side
    //  - the type, aux, and auxint fields must match if they are specified.
    //  - the first occurrence of a variable defines that variable.  Subsequent
    //    uses must match (be == to) the first use.
    //  - v is defined to be the value matched.
    //  - an additional conditional can be provided after the match pattern with "&&".
    // on the generated side
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (Rsh8x8          <t> x y) => (ISEL [2] (SRAD     <t> (MOVBreg  x) y) (SRADconst <t>  (MOVBreg x) [7]) (CMPconst [0] (ANDconst [0x00F8] y)))
    
    // Catch bounded shifts in situations like foo<<uint(shift&63) which might not be caught by the prove pass.
    (CMP(U|WU)const [d] (ANDconst z [c])) && uint64(d) > uint64(c) => (FlagLT)
    
    (ORN x (MOVDconst [-1])) => x
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    	&& isSameCall(sym, "runtime.memmove")
    	&& s1.Uses == 1 && s2.Uses == 1 && s3.Uses == 1
    	&& isInlinableMemmove(dst, src, sz, config)
    	&& clobber(s1, s2, s3, call)
    	=> (Move [sz] dst src mem)
    
    // Match post-lowering calls, register version.
    (SelectN [0] call:(CALLstatic {sym} dst src (MOVDconst [sz]) mem))
    	&& sz >= 0
    	&& isSameCall(sym, "runtime.memmove")
    	&& call.Uses == 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_tidy_diff.txt

    [exec:patch] cp go.mod go.mod.tidyResult
    [exec:patch] cp go.sum go.sum.tidyResult
    
    # Compare output of -diff to running tidy.
    # Apply the patch from -diff
    [exec:patch] cp go.mod.orig go.mod
    [exec:patch] cp go.sum.orig go.sum
    [exec:patch] ! go mod tidy -diff
    [exec:patch] cp stdout diff.patch
    [exec:patch] exec patch -p1 -i diff.patch
    [exec:patch] go mod tidy -diff
    [exec:patch] ! stdout .
    [exec:patch] cmp go.mod go.mod.tidyResult
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtCompilerFacility.kt

            return withValidityAssertion {
                try {
                    analysisSession.compilerFacility.compile(file, configuration, target, allowedErrorFilter)
                } catch (e: ProcessCanceledException) {
                    throw e
                } catch (e: Throwable) {
                    throw KaCodeCompilationException(e)
                }
            }
        }
    }
    
    public typealias KtCompilerFacilityMixIn = KaCompilerFacilityMixIn
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top