Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 4,573 for then (0.08 sec)

  1. cluster/gce/config-default.sh

    #!/usr/bin/env bash
    
    # Copyright 2014 The Kubernetes 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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  2. build/common.sh

      # directory and generated files. The '- /' filter prevents rsync
      # from trying to set the uid/gid/perms on the root of the sync tree.
      # As an exception, we need to sync generated files in staging/, because
      # they will not be re-generated by 'make'. Note that the 'H' filtered files
      # are hidden from rsync so they will be deleted in the target container if
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/LockOnDemandCrossProcessCacheAccessTest.groovy

            1 * action.get() >> "result"
            0 * _
    
            when:
            def release1 = cacheAccess.acquireFileLock()
    
            then:
            0 * _
    
            when:
            def release2 = cacheAccess.acquireFileLock()
            release1.run()
            contendedAction.accept(signal)
    
            then:
            0 * _
    
            when:
            release2.run()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/DefaultRepositoryContentDescriptorTest.groovy

            when:
            descriptor.includeModule("foo", null)
    
            then:
            ex = thrown()
            ex.message == "Module name cannot be null"
    
            when:
            descriptor.includeModule(null, "foo")
    
            then:
            ex = thrown()
            ex.message == "Group cannot be null"
    
            when:
            descriptor.includeVersion("foo", "bar", null)
    
            then:
            ex = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  5. docs/site-replication/run-multi-site-minio-idp.sh

    sleep 10
    
    ./mc admin policy info minio1 rw
    if [ $? -eq 0 ]; then
    	echo "expecting the command to fail, exiting.."
    	exit_1
    fi
    
    ./mc admin policy info minio2 rw
    if [ $? -eq 0 ]; then
    	echo "expecting the command to fail, exiting.."
    	exit_1
    fi
    
    ./mc admin policy info minio3 rw
    if [ $? -eq 0 ]; then
    	echo "expecting the command to fail, exiting.."
    	exit_1
    fi
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskContainerTest.groovy

            container.configureEach(action5)
    
            when:
            container.all(action6)
    
            then:
            1 * taskFactory.create(_ as TaskIdentity) >> task
    
            then:
            1 * action1.execute(task)
    
            then:
            1 * action2.execute(task)
    
            then:
            1 * action3.execute(task)
    
            then:
            1 * action4.execute(task)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 14:36:44 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectTest.groovy

        }
    
        def defaultTasks() {
            when:
            project.defaultTasks("a", "b")
            then:
            project.defaultTasks == ["a", "b"]
            when:
            project.defaultTasks("c")
            then:
            project.defaultTasks == ["c"]
        }
    
        def defaultTasksWithNull() {
            when:
            project.defaultTasks(null)
            then:
            thrown(InvalidUserDataException)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  8. subprojects/core-api/src/test/groovy/org/gradle/api/tasks/util/PatternSetTest.groovy

            patternSet = new PatternSet()
            patternSet.exclude { false }
            then:
            !patternSet.isEmpty()
            !patternSet.intersect().isEmpty()
    
            when:
            patternSet = new PatternSet()
            patternSet.exclude("*.txt")
            then:
            !patternSet.isEmpty()
            !patternSet.intersect().isEmpty()
        }
    
        def "can handle removal of exclude"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 12:37:12 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/internal/operations/notify/BuildOperationNotificationBridgeTest.groovy

            // operation with no details
            when:
            broadcast.started(d2, new OperationStartEvent(20))
    
            then:
            0 * listener.started(_)
    
            when:
            broadcast.finished(d2, new OperationFinishEvent(20, 30, null, 10))
    
            then:
            0 * listener.finished(_)
    
            // operation with details and null result
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AccessTrackingPropertiesTest.groovy

            then:
            1 * onRemove.accept(key)
            then:
            0 * onAccess._
            0 * onRemove._
    
            when:
            def removeAllResult = getMapUnderTestToWrite().keySet().removeAll(Collections.singleton(key))
    
            then:
            removeAllResult == expectedResult
            1 * onAccess.accept(key, reportedValue)
            then:
            1 * onRemove.accept(key)
            then:
            0 * onAccess._
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 23.1K bytes
    - Viewed (0)
Back to top