Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for then (0.06 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/file/FileCollectionSymlinkIntegrationTest.groovy

                }
            """
    
            when:
            target.createFile()
            run 'producesLink'
            then:
            executedAndNotSkipped ':producesLink'
    
            when:
            run 'producesLink'
            then:
            skipped ':producesLink'
    
            when:
            target.delete()
            run 'producesLink'
            then:
            executedAndNotSkipped ':producesLink'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/slf4j/OutputEventListenerBackedLoggerTest.groovy

            when:
            logger().info("{}", arg1)
    
            then:
            singleLogEvent().message("arg1").logLevel(INFO).eventExpected(eventExpected)
    
            when:
            logger().log(INFO, "{}", arg1)
    
            then:
            singleLogEvent().message("arg1").logLevel(INFO).eventExpected(eventExpected)
    
            when:
            logger().info("{} {}", arg1, arg2)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 26.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/math/StatsAccumulator.java

         *    (whether it is NaN or infinity).
         * 3. If both the previous mean and the new value are non-finite and...
         * 3a. ...either or both is NaN (so mean != value) then the new mean is NaN.
         * 3b. ...they are both the same infinities (so mean == value) then the mean is unchanged.
         * 3c. ...they are different infinities (so mean != value) then the new mean is NaN.
         */
        if (isFinite(previousMean)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/HierarchicalFileWatcherUpdaterTest.groovy

            0 * _
    
            when:
            invalidate(snapshotInsideFirstWatchableHierarchy.absolutePath)
            then:
            1 * watcher.stopWatching({ equalIgnoringOrder(it, [file("first")]) })
            0 * _
    
            when:
            buildFinished()
            then:
            0 * _
    
            when:
            addSnapshotInWatchableHierarchy(file("first"))
            then:
            0 * _
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 13:24:54 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. guava/src/com/google/common/math/StatsAccumulator.java

         *    (whether it is NaN or infinity).
         * 3. If both the previous mean and the new value are non-finite and...
         * 3a. ...either or both is NaN (so mean != value) then the new mean is NaN.
         * 3b. ...they are both the same infinities (so mean == value) then the mean is unchanged.
         * 3c. ...they are different infinities (so mean != value) then the new mean is NaN.
         */
        if (isFinite(previousMean)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

          ;;
      esac
    
      if [[ "${RELEASE_REGION_FALLBACK}" != "true" ]]; then
        PREFERRED_REGION=( "${PREFERRED_REGION[0]}" )
      fi
    }
    
    # Take the local tar files and upload them to Google Storage.  They will then be
    # downloaded by the master as part of the start up script for the master.
    #
    # Assumed vars:
    #   PROJECT
    #   SERVER_BINARY_TAR
    #   KUBE_MANIFESTS_TAR
    #   ZONE
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  7. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/artifact/MavenArtifactNotationParserFactoryTest.groovy

    /*
     * Copyright 2013 the original author or authors.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *      http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  8. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/artifact/IvyArtifactNotationParserFactoryTest.groovy

            when:
            IvyArtifact ivyArtifact = parser.parseNotation(source: publishArtifact, name: 'the-name', extension: "the-ext", type: "the-type")
    
            then:
            ivyArtifact.file == publishArtifact.file
            ivyArtifact.name == "the-name"
            ivyArtifact.extension == "the-ext"
            ivyArtifact.type == "the-type"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AccessTrackingSetTest.groovy

            then:
            1 * listener.onRemove('missing')
            then:
            0 * listener._
        }
    
        def "removeAll of existing elements is tracked"() {
            when:
            def result = set.removeAll(['existing', 'other'])
    
            then:
            result
            1 * listener.onAccess('existing')
            then:
            1 * listener.onRemove('existing')
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 6K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            then:
            collection.files as List == [file1, file2]
    
            when:
            collection.setFrom('some', 'more')
    
            then:
            thrown IllegalStateException
    
            when:
            collection.setFrom(['some', 'more'])
    
            then:
            thrown IllegalStateException
        }
    
        def "throws exception when additions to paths after queried when implicitly finalized"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
Back to top