Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 114 for PROPERTIES (0.15 sec)

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

                onAccess("hasProperty")
                return delegate.hasProperty(propertyName)
            }
    
            override fun getProperties(): MutableMap<String, *> {
                onAccess("properties")
                return delegate.properties
            }
    
            override fun property(propertyName: String): Any? {
                onAccess("property")
                return delegate.property(propertyName)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintController.kt

    import org.gradle.api.internal.file.FileCollectionFactory
    import org.gradle.api.internal.file.FileCollectionInternal
    import org.gradle.api.internal.file.collections.DirectoryFileTreeFactory
    import org.gradle.api.internal.properties.GradleProperties
    import org.gradle.api.internal.provider.DefaultValueSourceProviderFactory
    import org.gradle.api.internal.provider.ValueSourceProviderFactory
    import org.gradle.internal.buildtree.BuildModelParameters
    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. maven-core/pom.xml

                  <exclude>org.apache.maven.toolchain.DefaultToolchain#getLog():METHOD_RETURN_TYPE_CHANGED</exclude>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  4. configure.py

                os.path.exists(os.path.join(path, 'source.properties')))
    
      android_ndk_home_path = prompt_loop_or_load_from_env(
          environ_cp,
          var_name='ANDROID_NDK_HOME',
          var_default=default_ndk_path,
          ask_for_var='Please specify the home path of the Android NDK to use.',
          check_success=valid_ndk_path,
          error_msg=('The path %s or its child file "source.properties" '
                     'does not exist.'))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            "Gradle.useLogger(DependencyResolutionListener)"   | "gradle.useLogger(new DependencyResolutionAdapter())"
        }
    
        def "summarizes unsupported properties"() {
            given:
            buildFile << """
                class SomeBean {
                    Gradle gradle
                    def nested = new NestedBean()
                }
    
                class NestedBean {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

                "psi",
                "token",
                "builder",
                "coneType",
                "analysisContext",
                "fe10Type",
    
                // These properties are made obsolete by their counterparts without `*IfNonLocal` (e.g. `classId`), which contain the same
                // values.
                "classIdIfNonLocal",
                "containingClassIdIfNonLocal",
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  7. go.mod

    	github.com/lestrrat-go/iter v1.0.2 // indirect
    	github.com/lestrrat-go/option v1.0.1 // indirect
    	github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect
    	github.com/magiconair/properties v1.8.7 // indirect
    	github.com/mailru/easyjson v0.7.7 // indirect
    	github.com/mattn/go-colorable v0.1.13 // indirect
    	github.com/mattn/go-runewidth v0.0.15 // indirect
    	github.com/mdlayher/netlink v1.7.2 // indirect
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishHttpIntegTest.groovy

            notExecuted(':jar', ':publishMavenPublicationToMavenRepository')
            failure.assertHasDescription("Credentials required for this build could not be resolved.")
            failure.assertHasCause("The following Gradle properties are missing for 'maven' credentials:")
            failure.assertHasErrorOutput("- mavenUsername")
            failure.assertHasErrorOutput("- mavenPassword")
        }
    
        @Issue("https://github.com/gradle/gradle/issues/14902")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionTypeProvider.kt

            is FirPlaceholderProjection -> null
            else -> null
        }
    
        /**
         * It only makes sense to provide type for the references which reference some actual properties/variables.
         *
         * In cases when the name reference references a function (a REAL function, not a functional type variable), it does not
         * make sense to provide any type for it.
         *
         * ---
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromGroovyDslIntegrationTest.groovy

            "property" | "ext.foo = 1"   | "property('foo')"
            "property" | "ext.foo = 1"   | "findProperty('foo')"
            "property" | "ext.foo = 1"   | "getProperty('foo')"
            "property" | "ext.foo = 1"   | "properties"
            "method"   | "def foo() { }" | "foo()"
        }
    
        def 'no duplicate problems reported for dynamic property lookup in transitive parents'() {
            createDirs("sub", "sub/sub-a", "sub/sub-b")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 32.4K bytes
    - Viewed (0)
Back to top