Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,606 for nothings (0.25 sec)

  1. pkg/controller/volume/attachdetach/metrics/metrics_test.go

    	if !ok {
    		t.Errorf("Expected desired_state_of_world, got nothing")
    	}
    
    	fakePluginCount := dswCount["fake-plugin"]
    	if fakePluginCount != 1 {
    		t.Errorf("Expected 1 fake-plugin volume in DesiredStateOfWorld, got %d", fakePluginCount)
    	}
    
    	aswCount, ok := totalVolumesMap["actual_state_of_world"]
    	if !ok {
    		t.Errorf("Expected actual_state_of_world, got nothing")
    	}
    
    	fakePluginCount = aswCount["fake-plugin"]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. analysis/analysis-api/testData/components/compilerFacility/compilation/annotationWithVararg.ir.txt

    MODULE_FRAGMENT
      FILE fqName:<root> fileName:main.kt
        FUN name:foo visibility:public modality:FINAL <> () returnType:kotlin.Int
          annotations:
            Anno(x = ["A", "B"])
          BLOCK_BODY
            RETURN type=kotlin.Nothing from='public final fun foo (): kotlin.Int declared in <root>'
              CONST Int type=kotlin.Int value=10
        FUN name:test visibility:public modality:FINAL <> () returnType:kotlin.Unit
          BLOCK_BODY
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Feb 29 06:44:05 UTC 2024
    - 577 bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyResolutionEventsIntegrationTest.groovy

                    from configurations.things
                    into buildDir
                }
            """
    
            when:
            run "resolveIt"
    
            then:
            output.count("before :things") == 1
            output.count("after :things") == 1
        }
    
        @Issue("https://issues.gradle.org/browse/GRADLE-2047")
        def "can access resolved files from afterResolve hook"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-linked_ptr.h

    // *containing* linked_ptr<> must have a constructor and destructor (even
    // if they do nothing!).
    //
    // Bill Gibbons suggested we use something like this.
    //
    // Thread Safety:
    //   Unlike other linked_ptr implementations, in this implementation
    //   a linked_ptr object is thread-safe in the sense that:
    //     - it's safe to copy linked_ptr objects concurrently,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/util/CollectionUtils.java

        }
    
        /**
         * Recursively unpacks all the given things into a flat list.
         *
         * Nulls are not removed, they are left intact.
         *
         * @param things The things to flatten
         * @return A flattened list of the given things
         */
        public static List<?> flattenCollections(Object... things) {
            return flattenCollections(Object.class, things);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:19 UTC 2024
    - 26K bytes
    - Viewed (0)
  8. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/impl/DefaultDeleterTest.groovy

        }
    
        def "creates directory if nothing existed before"() {
            given:
            TestFile dir = tmpDir.getTestDirectory()
            def file = dir.file("someFile")
    
            when:
            boolean didWork = deleter.ensureEmptyDirectory(file)
    
            then:
            file.assertIsDir()
            didWork
        }
    
        def "didWork is false when nothing has been deleted"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 12:40:48 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. 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)
  10. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/text/TreeFormatterTest.groovy

      - child 1.
    Some other things.
      - child 1.
      - child 2.""")
        }
    
        def "formats node with trailing ':'"() {
            when:
            formatter.node("Some things:")
            formatter.startChildren()
            formatter.node("child 1.")
            formatter.endChildren()
            formatter.node("Some other things:")
            formatter.startChildren()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 12.4K bytes
    - Viewed (0)
Back to top