Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 48 for E2 (0.02 sec)

  1. src/os/file_windows.go

    		return nil
    	}
    	e1 := syscall.RemoveDirectory(p)
    	if e1 == nil {
    		return nil
    	}
    
    	// Both failed: figure out which error to return.
    	if e1 != e {
    		a, e2 := syscall.GetFileAttributes(p)
    		if e2 != nil {
    			e = e2
    		} else {
    			if a&syscall.FILE_ATTRIBUTE_DIRECTORY != 0 {
    				e = e1
    			} else if a&syscall.FILE_ATTRIBUTE_READONLY != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/MessageTest.groovy

            then:
            RuntimeException e = thrown()
            e.message == 'broken getMessage()'
    
            when:
            transported.toString()
    
            then:
            RuntimeException e2 = thrown()
            e2.message == 'broken toString()'
        }
    
        @Issue("https://github.com/gradle/gradle/issues/1618")
        def "transports mock exception with null cause"() {
            def exceptionWithNullCause = Mock(Exception)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/services/internal/DefaultBuildServicesRegistryTest.groovy

            e.cause.cause.is(BrokenServiceImpl.failure)
            BrokenServiceImpl.attempts == 1
    
            when:
            provider.get()
    
            then:
            def e2 = thrown(RuntimeException)
            e2.is(e)
            BrokenServiceImpl.attempts == 1
        }
    
        def "service has no max parallel usages by default"() {
            expect:
            registerService("service", ServiceImpl) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/daemon-services/src/test/groovy/org/gradle/api/internal/tasks/userinput/DefaultUserInputHandlerTest.groovy

            and:
            0 * action._
            0 * outputEventBroadcaster._
            0 * userInputHandler._
    
            when:
            input.get()
    
            then:
            def e2 = thrown(RuntimeException)
            e2 == failure
    
            and:
            0 * action._
            0 * outputEventBroadcaster._
            0 * userInputHandler._
        }
    
        def "can ask multiple questions in multiple interactions"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/execution/selection/DefaultBuildTaskSelectorTest.groovy

            then:
            def e = thrown(TaskSelectionException)
            e.message == message
    
            when:
            selector.resolveExcludedTaskName(target, path)
    
            then:
            def e2 = thrown(TaskSelectionException)
            e2.message == message
                .replace("tasks that match", "excluded tasks that match")
                .replace("matching tasks", "matching excluded tasks")
    
            where:
            path        | message
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 10:15:47 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. src/crypto/tls/testdata/Client-TLSv12-ClientCert-RSA-RSA

    00000060  00 00 16 03 03 02 59 0b  00 02 55 00 02 52 00 02  |......Y...U..R..|
    00000070  4f 30 82 02 4b 30 82 01  b4 a0 03 02 01 02 02 09  |O0..K0..........|
    00000080  00 e8 f0 9d 3f e2 5b ea  a6 30 0d 06 09 2a 86 48  |....?.[..0...*.H|
    00000090  86 f7 0d 01 01 0b 05 00  30 1f 31 0b 30 09 06 03  |........0.1.0...|
    000000a0  55 04 0a 13 02 47 6f 31  10 30 0e 06 03 55 04 03  |U....Go1.0...U..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509_test.go

    	       Signature Value:
    	           4a:54:07:46:71:c1:b2:a2:d3:32:e7:df:49:8c:af:87:46:ab:
    	           81:11:c6:c5:4b:be:0b:0c:ea:7e:5f:38:14:79:43:92:f9:bb:
    	           82:6f:f6:06:a6:43:19:e2:7c:52:66:36:13:6f:0f:73:16:3d:
    	           79:5f:f9:a6:c8:4c:18:f9:ff:20:2b:de:7f:15:e0:ab:ae:44:
    	           fa:65:7a:86:8a:df:d0:63:82:b1:5c:f3:f8:5c:05:97:4e:1f:
    	           09:d6:d9:55:e7:36:fc:08:3e:3f:66:99:68:b6:31:44:0f:63:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 23:23:03 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  8. hack/make-rules/test-e2e-node.sh

    # The number of tests that can run in parallel depends on what tests
    # are running and on the size of the node. Too many, and tests will
    # fail due to resource contention. 8 is a reasonable default for a
    # e2-standard-2 node.
    # Currently, parallelism only affects when REMOTE=true. For local test,
    # ginkgo default parallelism (cores - 1) is used.
    parallelism=${PARALLELISM:-8}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 09:46:28 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. cluster/gce/config-test.sh

    export REGION=${ZONE%-*}
    RELEASE_REGION_FALLBACK=${RELEASE_REGION_FALLBACK:-false}
    REGIONAL_KUBE_ADDONS=${REGIONAL_KUBE_ADDONS:-true}
    NODE_SIZE=${NODE_SIZE:-e2-standard-2}
    NUM_NODES=${NUM_NODES:-3}
    NUM_WINDOWS_NODES=${NUM_WINDOWS_NODES:-0}
    MASTER_SIZE=${MASTER_SIZE:-e2-standard-$(get-master-size)}
    MASTER_MIN_CPU_ARCHITECTURE=${MASTER_MIN_CPU_ARCHITECTURE:-} # To allow choosing better architectures.
    export MASTER_DISK_TYPE=pd-ssd
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  10. pkg/controller/podgc/gc_controller_test.go

    				// pods a2, b2, c2, d2 and e2 are on node worker-1
    				{name: "a2", nodeName: "worker-1"},
    				{name: "b2", deletionTimeStamp: &metav1.Time{}, nodeName: "worker-1"},
    				{name: "c2", phase: v1.PodPending, nodeName: "worker-1"},
    				{name: "d2", phase: v1.PodRunning, nodeName: "worker-1"},
    				{name: "e2", phase: v1.PodUnknown, nodeName: "worker-1"},
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
Back to top