Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,096 for unpresent (0.28 sec)

  1. maven-core/src/test/java/org/apache/maven/execution/DefaultBuildResumptionAnalyzerTest.java

            executionResult.setTopologicallySortedProjects(asList(projectA, projectB));
    
            Optional<BuildResumptionData> result = analyzer.determineBuildResumptionData(executionResult);
    
            assertThat(result.isPresent(), is(true));
            assertThat(result.get().getRemainingProjects(), is(asList("test:B")));
        }
    
        @Test
        void resumeFromIsIgnoredWhenFirstProjectFails() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    	// It formats the text as fmt.Print would and adds a final \n if not already present.
    	// For line-based UI, Print writes to standard error.
    	// (Standard output is reserved for report data.)
    	Print(...interface{})
    
    	// PrintErr shows an error message to the user.
    	// It formats the text as fmt.Print would and adds a final \n if not already present.
    	// For line-based UI, PrintErr writes to standard error.
    	PrintErr(...interface{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/test/groovy/org/gradle/language/internal/DefaultBinaryCollectionTest.groovy

        }
    
        def "can get by name before element is present and query after realized"() {
            def binary1 = Stub(SwiftBinary)
            binary1.name >> "test1"
    
            expect:
            def p = container.getByName("test1")
            !p.present
    
            container.add(binary1)
    
            !p.present
    
            container.realizeNow()
    
            p.present
            p.get() == binary1
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/AbstractVirtualFileSystemTest.groovy

            instant.invalidated < instant.snapshottingFinished
            !vfs.findSnapshot(location).present
            !vfs.findSnapshot("${location}/some/child").present
            !vfs.findSnapshot("${location}/some/child2").present
            vfs.findSnapshot("${location}/other/child").present
            vfs.findSnapshot("${location}/other/child2").present
        }
    
        def "does not store snapshot when invalidate all happened in between"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/ProviderSpec.groovy

        }
    
        def "can map to provider that uses value if present or a default value"() {
            expect:
            def present = providerWithValue(someValue())
            def usesValue = present.orElse(someOtherValue())
            usesValue.present
            usesValue.get() == someValue()
    
            def notPresent = providerWithNoValue()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 06:53:07 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/file/FileContents.java

         *
         * <p>
         * The file is read only once and only when the value is requested for the first time.
         * </p>
         * <p>
         * The returned provider won't have a value, i.e., {@link Provider#isPresent} will return {@code false} when:
         * </p>
         * <ul>
         *     <li>the underlying file does not exist;</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 08 14:00:30 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/plugin/plugin.go

    	// It formats the text as fmt.Print would and adds a final \n if not already present.
    	// For line-based UI, Print writes to standard error.
    	// (Standard output is reserved for report data.)
    	Print(...interface{})
    
    	// PrintErr shows an error message to the user.
    	// It formats the text as fmt.Print would and adds a final \n if not already present.
    	// For line-based UI, PrintErr writes to standard error.
    	PrintErr(...interface{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityPluginCheckInIntegrationTest.groovy

            given:
            if (applied) {
                applyPlugin()
            }
    
            settingsFile << """
                println "present: " + services.get($GradleEnterprisePluginManager.name).present
            """
    
            when:
            succeeds "t"
    
            then:
            output.contains("present: ${applied}")
    
            where:
            applied << [true, false]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 08:50:27 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/AbstractMinimalProviderTest.groovy

            expect:
            def mapped = provider.map(transformer)
            !mapped.present
            mapped.getOrNull() == null
            mapped.getOrElse("s2") == "s2"
    
            provider.value("abc")
            mapped.present
            mapped.get() == "[abc]"
    
            provider.value(null)
            !mapped.present
    
            provider.value("123")
            mapped.present
            mapped.get() == "[123]"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/graph/MutableGraph.java

      /**
       * Adds {@code node} if it is not already present.
       *
       * <p><b>Nodes must be unique</b>, just as {@code Map} keys must be. They must also be non-null.
       *
       * @return {@code true} if the graph was modified as a result of this call
       */
      @CanIgnoreReturnValue
      boolean addNode(N node);
    
      /**
       * Adds an edge connecting {@code nodeU} to {@code nodeV} if one is not already present.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 3.9K bytes
    - Viewed (0)
Back to top