Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,736 for doens (0.06 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/features/MapFeature.java

    @GwtCompatible
    public enum MapFeature implements Feature<Map> {
      /**
       * The map does not throw {@code NullPointerException} on calls such as {@code containsKey(null)},
       * {@code get(null)}, {@code keySet().contains(null)} or {@code remove(null)}.
       */
      ALLOWS_NULL_KEY_QUERIES,
      ALLOWS_NULL_KEYS(ALLOWS_NULL_KEY_QUERIES),
      /**
       * The map does not throw {@code NullPointerException} on calls such as {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/Configuration.java

        /**
         * Gets the set of declared dependencies directly contained in this configuration
         * (ignoring superconfigurations).
         * <p>
         * This method does not resolve the configuration. Therefore, the return value does not include
         * transitive dependencies.
         *
         * @implSpec Usage: This method should only be called on declarable configurations, but will not warn if used otherwise.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/locator/ModelLocator.java

     * Locates a POM file within a project base directory.
     *
     */
    public interface ModelLocator {
    
        /**
         * Locates the POM file within the specified project directory. In case the given project directory does not exist
         * or does not contain a POM file, the return value indicates the expected path to the POM file. Subdirectories of
         * the project directory will not be considered when locating the POM file. The return value will be an absolute
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionResultTest.groovy

            error(e).startsWith(error('''
                Build output does not contain the expected tasks.
                Expected: [:a]
                Actual: [:a, :b]
                '''))
    
            when:
            result.assertTasksExecuted(":a", ":b", ":c")
    
            then:
            def e2 = thrown(AssertionError)
            error(e2).startsWith(error('''
                Build output does not contain the expected tasks.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleHandle.java

         */
        GradleHandle abort();
    
        /**
         * Cancel a build that was started as a cancellable build by closing stdin.  Does not block until the build has finished.
         */
        GradleHandle cancel();
    
        /**
         * Cancel a build that was started as a cancellable build by sending EOT (ctrl-d).  Does not block until the build has finished.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. pkg/registry/flowcontrol/ensurer/prioritylevelconfiguration_test.go

    		bootstrap *flowcontrolv1.PriorityLevelConfiguration
    		expected  *flowcontrolv1.PriorityLevelConfiguration
    	}{
    		// for suggested configurations
    		{
    			name:      "suggested priority level configuration does not exist - the object should always be re-created",
    			strategy:  NewSuggestedEnsureStrategy[*flowcontrolv1.PriorityLevelConfiguration],
    			bootstrap: newPLConfiguration("pl1").WithLimited(10).Object(),
    			current:   nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  7. platforms/jvm/jvm-services/src/integTest/groovy/org/gradle/jvm/toolchain/JavaInstallationRegistryIntegrationTest.groovy

            outputContains("Directory '${new File("/unknown/path").absolutePath}' (Gradle property 'org.gradle.java.installations.paths') used for java installations does not exist")
            outputContains("Directory '${new File("/unknown/env").absolutePath}' (environment variable 'JDK1') used for java installations does not exist")
            outputContains(firstJavaHome)
            outputContains(secondJavaHome)
    
            when:
            result = executer
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:29:03 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/RangeSet.java

      boolean contains(C value);
    
      /**
       * Returns the unique range from this range set that {@linkplain Range#contains contains} {@code
       * value}, or {@code null} if this range set does not contain {@code value}.
       */
      @CheckForNull
      Range<C> rangeContaining(C value);
    
      /**
       * Returns {@code true} if there exists a non-empty range enclosed by both a member range in this
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/resource/BrokenTextResourceIntegrationTest.groovy

                text.text = resources.text.fromFile('no-such-file')
    """
    
            expect:
            fails("text")
    
            def file = file('no-such-file')
            failure.assertHasCause("Could not read '${file}' as it does not exist.")
        }
    
        def "reports read of missing archive"() {
            given:
            buildFile << """
                text.text = resources.text.fromArchiveEntry('no-such-file', 'config.txt')
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. test/escape_runtime_atomic.go

    var ptr unsafe.Pointer
    
    func Storep() {
    	var x int // ERROR "moved to heap: x"
    	atomic.StorepNoWB(unsafe.Pointer(&ptr), unsafe.Pointer(&x))
    }
    
    func Casp1() {
    	// BAD: should always be "does not escape"
    	x := new(int) // ERROR "escapes to heap|does not escape"
    	var y int     // ERROR "moved to heap: y"
    	atomic.Casp1(&ptr, unsafe.Pointer(x), unsafe.Pointer(&y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 874 bytes
    - Viewed (0)
Back to top