Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,096 for unpresent (0.14 sec)

  1. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/plugins/NativeTestingBasePlugin.java

                TestSuiteComponent unitTestSuite = project.getComponents().withType(TestSuiteComponent.class).findByName(TEST_COMPONENT_NAME);
                if (unitTestSuite != null && unitTestSuite.getTestBinary().isPresent()) {
                    return unitTestSuite.getTestBinary().get().getRunTask();
                }
                return null;
            }));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

    val pluginsRuntimeOnly by bucket()
    pluginsRuntimeOnly.description = "To define dependencies to the Gradle modules that represent additional plugins packaged in the distributions (lib/plugins/*.jar)"
    val agentsRuntimeOnly by bucket()
    agentsRuntimeOnly.description = "To define dependencies to the Gradle modules that represent Java agents packaged in the distribution (lib/agents/*.jar)"
    
    coreRuntimeOnly.withDependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/integTest/groovy/org/gradle/internal/execution/IncrementalExecutionIntegrationTest.groovy

            !result.reusedOutputOriginMetadata.present
    
            when:
            buildId = UniqueId.generate()
            result = outOfDate(builder.build(), "Task has failed previously.")
    
            then:
            result.execution.get().outcome == EXECUTED_NON_INCREMENTALLY
            !result.reusedOutputOriginMetadata.present
        }
    
        def "out of date when no history"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  4. src/internal/trace/event/event.go

    	// the main stack for the current execution context of the event.
    	StackIDs []int
    
    	// StartEv indicates the event type of the corresponding "start"
    	// event, if this event is an "end," for a pair of events that
    	// represent a time range.
    	StartEv Type
    
    	// IsTimedEvent indicates whether this is an event that both
    	// appears in the main event stream and is surfaced to the
    	// trace reader.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/io/ByteSource.java

            Optional<Long> sizeIfKnown = source.sizeIfKnown();
            if (!sizeIfKnown.isPresent()) {
              return Optional.absent();
            }
            result += sizeIfKnown.get();
            if (result < 0) {
              // Overflow (or one or more sources that returned a negative size, but all bets are off in
              // that case)
              // Can't represent anything higher, and realistically there probably isn't anything that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 26.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/g3doc/tf_dialects.md

    semantics and (when combined with the `tf` dialect) can represent arbitrary
    TensorFlow 1.x and 2.x graphs. As such it follows the executor model, including
    deadness propagation, concurrent semantics, and control dependencies. The
    `tf_executor` dialect defines two dialect-specific types:
    
    *   `!tf_executor.control` to represent control dependencies.
    *   `!tf_executor.token` to represent the pair of operations modeling
        NextIteration operation.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 16K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/DefaultValueSourceProviderFactoryTest.groovy

            obtainedValues.size() == 1
        }
    
        def "provider maps null returned from obtain to not present"() {
    
            given:
            def provider = createProviderOf(EchoValueSource) {
                // give no value so `getParameters().getValue().getOrNull()` returns null
            }
    
            expect:
            !provider.isPresent()
            provider.getOrNull() == null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:25 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/precompiled/PrecompiledScriptPluginAccessorsTest.kt

                            """
                            val property = providers.gradleProperty("theGradleProperty")
                            if (property.isPresent) {
                                println("property is present in plugin!")
                            }
                            extensions.add<Provider<String>>(
                                "theGradleProperty",
                                property
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/reqheader/ApiAdminReqheaderAction.java

        }
    
        // DELETE /api/admin/reqheader/setting/{id}
        @Execute
        public JsonResponse<ApiResult> delete$setting(final String id) {
            reqHeaderService.getRequestHeader(id).ifPresent(entity -> {
                try {
                    reqHeaderService.delete(entity);
                    saveInfo(messages -> messages.addSuccessCrudDeleteCrudTable(GLOBAL));
                } catch (final Exception e) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/webauth/ApiAdminWebauthAction.java

        }
    
        // DELETE /api/admin/webauth/setting/{id}
        @Execute
        public JsonResponse<ApiResult> delete$setting(final String id) {
            webAuthService.getWebAuthentication(id).ifPresent(entity -> {
                try {
                    webAuthService.delete(entity);
                    saveInfo(messages -> messages.addSuccessCrudDeleteCrudTable(GLOBAL));
                } catch (final Exception e) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top