Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 740 for nothings (0.24 sec)

  1. maven-api-impl/src/test/remote-repo/org/apache/maven/plugins/maven-surefire-plugin/0.1/maven-surefire-plugin-0.1.jar

    Archiver-Version: Plexus Archiver Created-By: Apache Maven Built-By: BEBE Build-Jdk: 1.6.0_07 META-INF/maven/plugin.xml A test plugin to assist testing of Maven core. org.apache.maven.plugins maven-surefire-plugin 0.1 surefire false true test Does nothing. test false true false false false true org.apache.maven.plugin.coreit.ItMojo java per-lookup once-per-session org.apache.maven maven-plugin-api jar 2.0 org/apache/maven/plugin/coreit/ItMojo.class package org.apache.maven.plugin.coreit; public synchronized...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. maven-api-impl/src/test/remote-repo/org/apache/maven/plugins/maven-install-plugin/0.1/maven-install-plugin-0.1.jar

    Archiver-Version: Plexus Archiver Created-By: Apache Maven Built-By: BEBE Build-Jdk: 1.6.0_07 META-INF/maven/plugin.xml A test plugin to assist testing of Maven core. org.apache.maven.plugins maven-install-plugin 0.1 install false true install Does nothing. false true false false false true org.apache.maven.plugin.coreit.ItMojo java per-lookup once-per-session org.apache.maven maven-plugin-api jar 2.0 org/apache/maven/plugin/coreit/ItMojo.class package org.apache.maven.plugin.coreit; public synchronized...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. src/internal/concurrent/hashtriemap.go

    	var n *node[K, V]
    	for {
    		// Find the key or return when there's nothing to delete.
    		i = ht.root
    		hashShift = 8 * goarch.PtrSize
    		found := false
    		for hashShift != 0 {
    			hashShift -= nChildrenLog2
    
    			slot = &i.children[(hash>>hashShift)&nChildrenMask]
    			n = slot.Load()
    			if n == nil {
    				// Nothing to delete. Give up.
    				return
    			}
    			if n.isEntry {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part6_gradle_caching.adoc

    > Task :app:check UP-TO-DATE
    > Task :app:build UP-TO-DATE
    
    BUILD SUCCESSFUL in 409ms
    7 actionable tasks: 7 up-to-date
    ----
    
    No surprise here, thanks to incremental builds, Gradle noticed nothing changed.
    However, in the background, the local build cache has been populated.
    
    Let's run the clean and build again:
    [source,text]
    ----
    $ ./gradlew :app:clean :app:build
    
    > Task :app:clean
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/base/KtConstantValue.kt

         */
        public abstract fun renderAsKotlinConstant(): String
    
        public class KaNullConstantValue(override val sourcePsi: KtElement?) : KaConstantValue(ConstantValueKind.Null) {
            override val value: Nothing? get() = null
            override fun renderAsKotlinConstant(): String = "null"
        }
    
        public class KaBooleanConstantValue(
            override val value: Boolean,
            override val sourcePsi: KtElement?
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultCacheCleanupExecutor.java

            if (!dir.exists()) {
                // Directory does not exist, nothing to clean up
                return Optional.empty();
            }
    
            if (!gcFile.exists()) {
                // If GC file hasn't been created, then this cache hasn't been used before.
                // We create the GC file, but there's nothing to clean up
                try {
                    FileUtils.touch(gcFile);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:53:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. src/internal/abi/escape.go

    // license that can be found in the LICENSE file.
    
    package abi
    
    import "unsafe"
    
    // NoEscape hides the pointer p from escape analysis, preventing it
    // from escaping to the heap. It compiles down to nothing.
    //
    // WARNING: This is very subtle to use correctly. The caller must
    // ensure that it's truly safe for p to not escape to the heap by
    // maintaining runtime pointer invariants (for example, that globals
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 884 bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/inlineFunctionUsage.ir.txt

                          VALUE_PARAMETER name:it index:0 type:kotlin.Int
                          BLOCK_BODY
                            RETURN type=kotlin.Nothing from='local final fun <anonymous> (it: kotlin.Int): kotlin.Boolean declared in <root>.CodeFragment.run'
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 30 10:27:47 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/redirector/JULRedirectorTest.groovy

            } else {
                System.setProperty("java.util.logging.config.class", savedJULConfigClassProperty)
            }
        }
    
        def "start and stop do nothing when nothing is redirected"() {
            when:
            redirector.start()
            [Level.SEVERE, Level.WARNING, Level.INFO, Level.CONFIG, Level.FINE, Level.FINER, Level.FINEST].each {
                logger1.log(it, "Test");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/concurrent/src/main/java/org/gradle/internal/concurrent/Stoppable.java

    public interface Stoppable {
        /**
         * <p>Requests a graceful stop of this object. Blocks until all concurrent activity has been completed.</p>
         *
         * <p>If this object has already been stopped, this method does nothing.</p>
         */
        void stop();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 989 bytes
    - Viewed (0)
Back to top