Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 47 for ignored (0.97 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheServices.kt

                configurationTimeBarrier: ConfigurationTimeBarrier,
                modelParameters: BuildModelParameters,
                /** In non-CC builds, [ConfigurationCacheStartParameter] is not registered; accepting a list here is a way to ignore its absence. */
                configurationCacheStartParameter: List<ConfigurationCacheStartParameter>,
                listenerManager: ListenerManager,
                workExecutionTracker: WorkExecutionTracker,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintController.kt

                return Writing(fingerprintWriter, buildScopedSpoolFile, projectScopedSpoolFile)
            }
    
            override fun <T> resolveScriptsForProject(identityPath: Path, action: () -> T): T {
                // Ignore scripts resolved while loading from cache
                return action()
            }
    
            override fun dispose(): WritingState =
                this
        }
    
        private
        inner class Writing(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  3. src/mdo/reader.vm

                String value = parser.getAttributeValue(i);
                if (XSI_NAMESPACE.equals(ns)) {
                    // just ignore attributes with non-default namespace (for example: xmlns:xsi)
         #if ( $class == $root )
                }  else if ("xmlns".equals(name)) {
                    // ignore xmlns attribute in root class, which is a reserved attribute name
      #end
                }
      #foreach ( $field in $allFields )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_tidy_compat_implicit.txt

    # The suggested '-compat' flag to ignore differences should silence the error
    # and leave go.mod unchanged, resulting in checksum errors when Go 1.16 tries
    # to load a module pruned out by Go 1.17.
    
    go mod tidy -compat=1.17
    ! stderr .
    cmp go.mod go.mod.orig
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (Const(32|64)F    [val]) => (FMOV(S|D)const [float64(val)])
    (ConstNil) => (MOVDconst [0])
    (ConstBool [t]) => (MOVDconst [b2i(t)])
    
    (Slicemask <t> x) => (SRAconst (NEG <t> x) [63])
    
    // truncations
    // Because we ignore high parts of registers, truncates are just copies.
    (Trunc16to8  ...) => (Copy ...)
    (Trunc32to8  ...) => (Copy ...)
    (Trunc32to16 ...) => (Copy ...)
    (Trunc64to8  ...) => (Copy ...)
    (Trunc64to16 ...) => (Copy ...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_vendor_embed.txt

    import _ "embed"
    
    //go:embed unbuilt.go
    var unbuilt string
    
    //go:embed dep_test.go
    var depTest string
    -- embed_unbuilt/dep/unbuilt.go --
    // +build ignore
    
    package dep
    -- embed_unbuilt/dep/not_embedded_unbuilt.go --
    // +build ignore
    
    package dep
    -- embed_unbuilt/dep/dep_test.go --
    package dep
    -- embed_unbuilt/dep/not_embedded_dep_test.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:14:55 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/WorkNodeActionCodec.kt

            // TODO - should discard from graph instead
            return object : WorkNodeAction {
                override fun run(context: NodeExecutionContext) {
                    // Ignore
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_run_pkg_version.txt

    env GO111MODULE=off
    ! go run example.com/cmd/a@v1.0.0
    stderr '^go: modules disabled by GO111MODULE=off; see ''go help modules''$'
    env GO111MODULE=on
    
    
    # 'go run pkg@version' ignores go.mod in the current directory.
    cd m
    cp go.mod go.mod.orig
    ! go list -m all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. Jenkinsfile

    def buildMvn = '3.8.x'
    def runITsOses = ['linux']
    def runITsJdks = ['17', '21']
    def runITsMvn = '3.8.x'
    def runITscommand = "mvn clean install -Prun-its,embedded -B -U -V" // -DmavenDistro=... -Dmaven.test.failure.ignore=true
    def tests
    
    try {
    
    def osNode = jenkinsEnv.labelForOS(buildOs)
    node(jenkinsEnv.nodeSelection(osNode)) {
        dir('build') {
            stage('Checkout') {
                checkout scm
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirImportOptimizer.kt

                        // type ref with delegated type ref with such source kind is NOT directly present in the source, so we ignore it
                        !isArrayFromVararg
                    }
    
                    // type ref with such source kind is explicitly present in the source, so we want to see it
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 24.7K bytes
    - Viewed (0)
Back to top