Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 530 for fries (0.06 sec)

  1. pkg/controller/volume/attachdetach/attach_detach_controller_test.go

    	}
    }
    
    func verifyAttachDetachCalls(t *testing.T, testPlugin *controllervolumetesting.TestPlugin, tc vaTest) {
    	for tries := 0; tries <= 10; tries++ { // wait & try few times before failing the test
    		expected_op_map := tc.expected_attaches
    		plugin_map := testPlugin.GetAttachedVolumes()
    		verify_op := "attach"
    		volFound, nodeFound := false, false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/TestClassExecutionEventGeneratorTest.groovy

        def "fires event on test class start"() {
            given:
            idGenerator.generateId() >> 1
            timeProvider.currentTime >> 1200
    
            when:
            processor.testClassStarted("some-test")
    
            then:
            1 * target.started({it.id == 1 && it.className == 'some-test'}, {it.startTime == 1200})
            0 * target._
        }
    
        def "fires event on test class finish"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. src/runtime/os_aix.go

    	sigprocmask(_SIG_SETMASK, &sigset_all, &oset)
    	var ret int32
    	for tries := 0; tries < 20; tries++ {
    		// pthread_create can fail with EAGAIN for no reasons
    		// but it will be ok if it retries.
    		ret = pthread_create(&tid, &attr, fn, nil)
    		if ret != _EAGAIN {
    			break
    		}
    		usleep(uint32(tries+1) * 1000) // Milliseconds.
    	}
    	sigprocmask(_SIG_SETMASK, &oset, nil)
    	if ret != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultNamedDomainObjectListTest.groovy

            given:
            list.add('b')
    
            when:
            list.add(0, 'a')
            list.add(2, 'c')
    
            then:
            list == ['a', 'b', 'c']
        }
    
        def "fires events when element is added at index"() {
            Action<String> action = Mock()
    
            given:
            list.all(action)
    
            when:
            list.add(0, 'a')
            list.add(0, 'b')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:21:31 UTC 2023
    - 13K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resource/transfer/ProgressLoggingExternalResourceAccessorTest.groovy

            when:
            def result = accessor.withContent(location, false, action)
    
            then:
            result == "result"
    
            and:
            1 * action.execute(_, _) >> "result"
        }
    
        def "fires progress events as content is read"() {
            setup:
            metaData.getContentLength() >> 4096
            expectReadBuildOperation(4096)
            expectResourceRead(new ByteArrayInputStream(new byte[4096]))
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 12:31:19 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. ci/official/containers/linux_arm64/builder.devtoolset/build_devtoolset.sh

    devtoolset-9)
      wget --retry-connrefused --waitretry=1 --read-timeout=20 --timeout=15 --tries=5 "https://vault.centos.org/centos/7/sclo/Source/rh/devtoolset-9-gcc-9.3.1-2.2.el7.src.rpm"
      rpm2cpio "devtoolset-9-gcc-9.3.1-2.2.el7.src.rpm" |cpio -idmv
      tar -xvf "gcc-9.3.1-20200408.tar.xz" --strip 1
      ;;
    devtoolset-10)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 29 00:26:34 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  7. test/maplinear.go

    package main
    
    import (
    	"fmt"
    	"math"
    	"time"
    )
    
    // checkLinear asserts that the running time of f(n) is in O(n).
    // tries is the initial number of iterations.
    func checkLinear(typ string, tries int, f func(n int)) {
    	// Depending on the machine and OS, this test might be too fast
    	// to measure with accurate enough granularity. On failure,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. doc/next/6-stdlib/99-minor/os/63703.md

    On Windows, [Readlink] no longer tries to normalize volumes
    to drive letters, which was not always even possible.
    This behavior is controlled by the `winreadlinkvolume` setting.
    For Go 1.23, it defaults to `winreadlinkvolume=1`.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 280 bytes
    - Viewed (0)
  9. src/runtime/mprof.go

    	// active.
    	future [3]memRecordCycle
    }
    
    // memRecordCycle
    type memRecordCycle struct {
    	allocs, frees           uintptr
    	alloc_bytes, free_bytes uintptr
    }
    
    // add accumulates b into a. It does not zero b.
    func (a *memRecordCycle) add(b *memRecordCycle) {
    	a.allocs += b.allocs
    	a.frees += b.frees
    	a.alloc_bytes += b.alloc_bytes
    	a.free_bytes += b.free_bytes
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. src/runtime/mstats.go

    	Lookups uint64
    
    	// Mallocs is the cumulative count of heap objects allocated.
    	// The number of live objects is Mallocs - Frees.
    	Mallocs uint64
    
    	// Frees is the cumulative count of heap objects freed.
    	Frees uint64
    
    	// Heap memory statistics.
    	//
    	// Interpreting the heap statistics requires some knowledge of
    	// how Go organizes memory. Go divides the virtual address
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
Back to top