Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 130 for iterNested (0.15 sec)

  1. src/runtime/testdata/testprog/coro.go

    		println("expect: OK")
    		CoroLockOSThread(callerExhaustLocked, iterSimple)
    	})
    	register("CoroLockOSThreadLockIterNested", func() {
    		println("expect: OK")
    		CoroLockOSThread(callerExhaustLocked, iterNested)
    	})
    	register("CoroLockOSThreadLockIterLock", func() {
    		println("expect: OK")
    		CoroLockOSThread(callerExhaustLocked, iterLock)
    	})
    	register("CoroLockOSThreadLockIterLockYield", func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. src/runtime/testdata/testprogcgo/coro.go

    	register("CoroCgoCallback", func() {
    		println("expect: OK")
    		CoroCgo(callerExhaustCallback, iterSimple)
    	})
    	register("CoroCgoCallbackIterNested", func() {
    		println("expect: OK")
    		CoroCgo(callerExhaustCallback, iterNested)
    	})
    	register("CoroCgoCallbackIterCallback", func() {
    		println("expect: OK")
    		CoroCgo(callerExhaustCallback, iterCallback)
    	})
    	register("CoroCgoCallbackIterCallbackYield", func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. src/crypto/internal/boring/README.md

    BoringCrypto (the core of [BoringSSL](https://boringssl.googlesource.com/boringssl/))
    for various crypto primitives, in furtherance of some work related to FIPS 140.
    We have heard that some external users of Go would be
    interested in this code as well, so we have published this code
    here in the main Go repository behind the setting GOEXPERIMENT=boringcrypto.
    
    Use of GOEXPERIMENT=boringcrypto outside Google is _unsupported_.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. testing/performance/docs/performance-bisect.md

    ## Modify test for regression search
    
    First, you should change the test so that
     - only the version you are interested in is used as a reference
     - only the test you are interested in is executed
     - tighten the regression limits to get significant results
     - only search for memory/execution time regressions depending on what you are interested in
     
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionStructureVisitor.java

     */
    public interface FileCollectionStructureVisitor {
        enum VisitType {
            // Visitor is interested in the contents of the collection
            Visit,
            // Visitor is not interested in the contents of the collection, but would like to receive the source and other metadata
            NoContents
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r82/TestLauncherTestSpecCrossVersionSpec.groovy

            assertTestExecuted(className: 'example2.MyOtherTest2', methodName: 'baz', task: ':secondTest')
    
            when:
            events.clear()
            stdout.reset() // we are interested in the output of the second build only
            launchTests { TestLauncher launcher ->
                launcher.withArguments("--configuration-cache")
                launcher.withTestsFor { TestSpecs specs ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. src/runtime/netpoll_solaris.go

    // nobody will tell us anymore.
    //
    // Beside calling runtimeĀ·netpollopen, the networking code paths
    // will call runtimeĀ·netpollarm each time goroutines are interested
    // in doing network I/O. Because now we know what kind of I/O we
    // are interested in (reading/writing), we can call port_associate
    // passing the correct type of event set (POLLIN/POLLOUT). As we made
    // sure to have already associated the file descriptor with the port,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/cover_sync_atomic_import.txt

    # In addition to the above, test to make sure there is no funny
    # business if we try "go test -cover" in atomic mode targeting
    # sync/atomic itself (see #57445). Just a short test run is needed
    # since we're mainly interested in making sure the test builds and can
    # execute at least one test.
    
    go test -short -covermode=atomic -run=TestStoreInt64 sync/atomic
    go test -short -covermode=atomic -run=TestAnd8 internal/runtime/atomic
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 00:18:30 UTC 2024
    - 1011 bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/repository/legacy/metadata/ArtifactMetadataSource.java

                throws ArtifactMetadataRetrievalException;
    
        /**
         * Get a list of available versions for an artifact in the remote repository
         *
         * @param artifact           artifact we are interested in. Only <code>groupid</code> and <code>artifactId</code>
         *                           are needed, for instance the following code will work
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/readme-templates/library-summary.adoc.template

    == Next steps
    
    Building a library is just one aspect of reusing code across project boundaries.
    From here, you may be interested in:
    
     - link:{userManualPath}/building_java_projects.html[Building Java & JVM projects]
     - link:{userManualPath}/java_library_plugin.html[Java Library Plugin documentation]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 781 bytes
    - Viewed (0)
Back to top