Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 58 for afterward (0.24 sec)

  1. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/DefaultGradleEnterprisePluginAdapter.java

     * Then the adapter is stored on the {@link org.gradle.internal.enterprise.core.GradleEnterprisePluginManager}.
     * <p>
     * There is some custom logic to store the adapter from the manager in the configuration cache and restore it afterward.
     * The pluginServices need to be recreated when loading from the configuration cache.
     * <p>
     * This must not be a service, since the configuration cache will not serialize services with state to the configuration cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/impl/KtModuleUtils.kt

                    // NB: this intentionally swallows the exception, hence fail-safe.
                    // Skipping subtree doesn't make any sense, since this is not a directory.
                    // Skipping sibling may drop valid file paths afterward, so we just continue.
                    return FileVisitResult.CONTINUE
                }
            }
        )
        return result
    }
    
    internal fun Path.hasSuitableExtensionToAnalyse(): Boolean {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. src/testing/testing_test.go

    	// status.
    	//
    	// This is a somewhat fundamental race: because the race detector hooks into
    	// the runtime at a very low level, no matter where we put the printing it
    	// would be possible to report a race that occurs afterward. However, we could
    	// theoretically move the printing after TestMain, which would at least do a
    	// better job of diagnosing races in cleanup functions within TestMain itself.
    }
    
    func TestTempDirInCleanup(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelInterpolator.java

            // MNG-1927, MNG-2124, MNG-3355:
            // If the build section is present and the project directory is non-null, we should make
            // sure interpolation of the directories below uses translated paths.
            // Afterward, we'll double back and translate any paths that weren't covered during interpolation via the
            // code below...
            translatedPrefixes.add("build.directory");
            translatedPrefixes.add("build.outputDirectory");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/AbstractIteratorTester.java

       * PermittedMetaException}.
       */
      protected final class MultiExceptionListIterator implements ListIterator<E> {
        // TODO: track seen elements when order isn't guaranteed
        // TODO: verify contents afterward
        // TODO: something shiny and new instead of Stack
        // TODO: test whether null is supported (create a Feature)
        /**
         * The elements to be returned by future calls to {@code next()}, with the first at the top of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/collect/testing/AbstractIteratorTester.java

       * PermittedMetaException}.
       */
      protected final class MultiExceptionListIterator implements ListIterator<E> {
        // TODO: track seen elements when order isn't guaranteed
        // TODO: verify contents afterward
        // TODO: something shiny and new instead of Stack
        // TODO: test whether null is supported (create a Feature)
        /**
         * The elements to be returned by future calls to {@code next()}, with the first at the top of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/test.go

    		// Do initial scan for metadata needed for writing _testmain.go
    		// Use that metadata to update the list of imports for package main.
    		// The list of imports is used by recompileForTest and by the loop
    		// afterward that gathers t.Cover information.
    		t, err := loadTestFuncs(p)
    		if err != nil && pmain.Error == nil {
    			pmain.setLoadPackageDataError(err, p.ImportPath, &stk, nil)
    		}
    		t.Cover = cover
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  8. src/runtime/chan.go

    // empty).  It is atomically correct and sequentially consistent at the moment
    // it returns, but since the channel is unlocked, the channel may become
    // non-empty immediately afterward.
    func empty(c *hchan) bool {
    	// c.dataqsiz is immutable.
    	if c.dataqsiz == 0 {
    		return atomic.Loadp(unsafe.Pointer(&c.sendq.first)) == nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/fetch.go

    	//
    	// To prevent other processes from reading the directory if we crash,
    	// create a .partial file before extracting the directory, and delete
    	// the .partial file afterward (all while holding the lock).
    	//
    	// Before Go 1.16, we extracted to a temporary directory with a random name
    	// then renamed it into place with os.Rename. On Windows, this failed with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  10. src/cmd/go/go_test.go

    	}
    }
    
    // If -testwork is specified, the test prints the name of the temp directory
    // and does not remove it when done, so that a programmer can
    // poke at the test file tree afterward.
    var testWork = flag.Bool("testwork", false, "")
    
    // cleanup cleans up a test that runs testgo.
    func (tg *testgoData) cleanup() {
    	tg.t.Helper()
    	if *testWork {
    		if tg.tempdir != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top