Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 231 for PROPERTIES (0.24 sec)

  1. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneDeclarationProvider.kt

                    indexClassOrObject(stub.psi)
                    // member functions and properties
                    stub.childrenStubs.forEach(::indexStub)
                }
                is KotlinObjectStubImpl -> {
                    indexClassOrObject(stub.psi)
                    // member functions and properties
                    stub.childrenStubs.forEach(::indexStub)
                }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/DefaultTypeMetadataStore.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.properties.annotations;
    
    import com.google.common.collect.ImmutableMap;
    import com.google.common.collect.ImmutableSet;
    import com.google.common.collect.Maps;
    import com.google.common.reflect.TypeToken;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

    val runtimeApiJarName = "gradle-runtime-api-info"
    
    // Ignore the build receipt as it is not relevant for API list and manifest generation
    normalization {
        runtimeClasspath {
            ignore("org/gradle/build-receipt.properties")
        }
    }
    
    // Configurations to define dependencies
    val coreRuntimeOnly by bucket()
    coreRuntimeOnly.description = "To define dependencies to the Gradle modules that make up the core of the distributions (lib/*.jar)"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

            val settingDir = serviceOf<BuildLayout>().settingsDir
            // Load Gradle properties from a file but skip applying system properties defined here.
            // System properties from the file may be mutated by the build logic, and the execution-time values are already restored by the EnvironmentChangeTracker.
            // Applying properties from file overwrites these modifications.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultArtifactDescriptorReader.java

                            .source(ModelSource.fromPath(pomArtifact.getPath(), gav))
                            // This merge is on purpose because otherwise user properties would override model
                            // properties in dependencies the user does not know. See MNG-7563 for details.
                            .systemProperties(toProperties(session.getUserProperties(), session.getSystemProperties()))
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Install.java

            if (expectedSum == null) {
                return;
            }
            // if a SHA-256 hash sum has been defined in gradle-wrapper.properties, verify it here
            String actualSum = calculateSha256Sum(localZipFile);
            if (expectedSum.equals(actualSum)) {
                return;
            }
    
            localZipFile.delete();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. docs/metrics/prometheus/grafana/node/minio-node.json

            },
            "overrides": [
              {
                "matcher": {
                  "id": "byName",
                  "options": "available 10.13.1.25:9000"
                },
                "properties": [
                  {
                    "id": "color",
                    "value": {
                      "fixedColor": "green",
                      "mode": "fixed"
                    }
                  }
                ]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 13:24:37 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GlobalScopeServices.java

    import org.gradle.api.internal.provider.PropertyFactory;
    import org.gradle.api.internal.tasks.TaskDependencyFactory;
    import org.gradle.api.internal.tasks.properties.annotations.AbstractOutputPropertyAnnotationHandler;
    import org.gradle.api.internal.tasks.properties.annotations.OutputPropertyRoleAnnotationHandler;
    import org.gradle.api.model.ObjectFactory;
    import org.gradle.api.tasks.util.PatternSet;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/plugins/JavaGradlePluginPlugin.java

        static final String PROCESS_RESOURCES_TASK = "processResources";
        static final String GRADLE_PLUGINS = "gradle-plugins";
        static final String PLUGIN_DESCRIPTOR_PATTERN = "META-INF/" + GRADLE_PLUGINS + "/*.properties";
        static final String CLASSES_PATTERN = "**/*.class";
        static final String BAD_IMPL_CLASS_WARNING_MESSAGE = "%s: A valid plugin descriptor was found for %s but the implementation class %s was not found in the jar.";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 06:56:29 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    system properties::
    A daemon is considered compatible if it has set all the system properties requested with the same values. +
    Note that a daemon is compatible if it has additional system properties beyond those requested.
    
    environment variables::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
Back to top