Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 441 for Modification (0.25 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalModuleStateModificationListener.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.platform.modification
    
    import org.jetbrains.kotlin.analysis.project.structure.KtModule
    
    public fun interface KotlinGlobalModuleStateModificationListener {
        /**
         * [onModification] is invoked in a write action before or after global module state modification.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1010 bytes
    - Viewed (0)
  2. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalSourceOutOfBlockModificationListener.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.platform.modification
    
    import org.jetbrains.kotlin.analysis.project.structure.KtModule
    
    public fun interface KotlinGlobalSourceOutOfBlockModificationListener {
        /**
         * [onModification] is invoked in a write action before or after global out-of-block modification of all sources.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/nio/ModificationTimeFileAccessTimeJournalTest.groovy

        def "updates modification time"() {
            given:
            def file = tmpDir.createFile("file")
    
            when:
            journal.setLastAccessTime(file, FIXED_TIMESTAMP)
    
            then:
            file.lastModified() == FIXED_TIMESTAMP
        }
    
        def "reads modification time"() {
            given:
            def file = tmpDir.createFile("file")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:57 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

                    archive = theArchive1
                    replacementText = 'modification 1'
                }
    
                tasks.register('verify1', VerifyTask) {
                    dependsOn tasks.named('update1')
                    archive = theArchive1
                    beginsWith = 'modification 1'
                }
    
                tasks.register('update2', UpdateTask) {
                    archive = theArchive2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  5. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/configurators/AnalysisApiBaseTestServiceRegistrar.kt

    import org.jetbrains.kotlin.analysis.api.platform.declarations.KotlinDeclarationProviderMerger
    import org.jetbrains.kotlin.analysis.api.platform.modification.KotlinGlobalModificationService
    import org.jetbrains.kotlin.analysis.api.platform.modification.KotlinModificationTrackerFactory
    import org.jetbrains.kotlin.analysis.api.platform.packages.KotlinPackageProviderFactory
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. subprojects/core-api/src/test/groovy/org/gradle/api/internal/provider/views/AbstractHasMultiValuesPropertyCollectionViewTest.groovy

        protected abstract <T extends Collection<String>> T newCollection(HasMultipleValues<String> multipleValueProperty)
    
        def "modification operations should be visible on a backed property"() {
            given:
            def property = multiValueProperty()
            Collection<String> collection = newCollection(property)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/api/standalone/StandaloneAnalysisAPISessionBuilder.kt

    import org.jetbrains.kotlin.analysis.api.platform.declarations.KotlinDeclarationProviderMerger
    import org.jetbrains.kotlin.analysis.api.platform.modification.KotlinGlobalModificationService
    import org.jetbrains.kotlin.analysis.api.platform.modification.KotlinModificationTrackerFactory
    import org.jetbrains.kotlin.analysis.api.platform.packages.KotlinPackageProviderFactory
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 14K bytes
    - Viewed (0)
  8. subprojects/core-api/src/test/groovy/org/gradle/api/internal/provider/views/MapPropertyMapViewTest.groovy

    class MapPropertyMapViewTest extends Specification {
        MapProperty<String, String> mapProperty
    
        def setup() {
            mapProperty = TestUtil.propertyFactory().mapProperty(String, String)
        }
    
        def "map modification operations should be visible on backed provider"() {
            given:
            mapProperty.put("first", "value1")
            Map<String, String> map = new MapPropertyMapView<>(mapProperty)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:28 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinCodeFragmentContextModificationListener.kt

     * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
     */
    
    package org.jetbrains.kotlin.analysis.api.platform.modification
    
    import org.jetbrains.kotlin.analysis.project.structure.KtModule
    
    public fun interface KotlinCodeFragmentContextModificationListener {
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 796 bytes
    - Viewed (0)
  10. ci/official/utilities/rename_and_verify_wheels.sh

    if [[ "$(ls *.whl | wc -l | tr -d ' ')" != "1" ]]; then
      echo "More than one wheel file is present: moving the oldest to"
      echo "$TFCI_OUTPUT_DIR/extra_wheels."
      # List all .whl files by their modification time (ls -t) and move anything
      # other than the most recently-modified one (the newest one).
      mkdir -p $TFCI_OUTPUT_DIR/extra_wheels
      ls -t *.whl | tail -n +2 | xargs mv -t $TFCI_OUTPUT_DIR/extra_wheels
    fi
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 21:16:27 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top