Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,096 for unpresent (0.15 sec)

  1. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/MappedPosition.java

            final Optional<Integer> column = this.pointer();
    
            if (sourcePath.isPresent() && line.isPresent() && column.isPresent()) {
                return sourcePath.get() + ":" + line.get() + ":" + (column.get() + 1);
            } else if (sourcePath.isPresent() && line.isPresent()) {
                return sourcePath.get() + ":" + line.get();
            } else {
                return sourcePath.orElse("");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CredentialsProviderFactoryTest.groovy

            def provider = factory.provide(PasswordCredentials, 'myService')
    
            when:
            def isPresent = provider.isPresent()
    
            then:
            noExceptionThrown()
            !isPresent
        }
    
        def "describes single missing property"() {
            given:
            providerFactory.gradleProperty('myServiceUsername') >> Providers.notDefined()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/file/DefaultProjectLayoutTest.groovy

            def provider = layout.projectDirectory.dir(pathProvider)
            !provider.present
            provider.getOrNull() == null
        }
    
        def "regular file is not present when path provider is not present"() {
            def pathProvider = withNoValue()
    
            expect:
            def provider = layout.projectDirectory.file(pathProvider)
            !provider.present
            provider.getOrNull() == null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 23 16:13:03 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            then:
            def e3 = thrown(IllegalStateException)
            e3.message == 'The value for <c> is final and cannot be changed any further.'
    
            where:
            method << ["get", "finalizeValue", "isPresent"]
        }
    
        Property<String> elementProperty() {
            return new DefaultProperty<String>(host, String)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/primitives/Ints.java

          if (array[i] == target) {
            return i;
          }
        }
        return -1;
      }
    
      /**
       * Returns the least value present in {@code array}.
       *
       * @param array a <i>nonempty</i> array of {@code int} values
       * @return the value present in {@code array} that is less than or equal to every other value in
       *     the array
       * @throws IllegalArgumentException if {@code array} is empty
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/jupiter/JUnitJupiterLoggingOutputCaptureIntegrationTest.groovy

                assert junitResult.getSuiteStandardOutput("OkTest").isPresent()
                assert junitResult.getTestCaseStandardOutput("OkTest", "isOk()").isPresent()
            } else {
                assert !junitResult.getSuiteStandardOutput("OkTest").isPresent() // isEmpty not available in Java 8
                assert !junitResult.getTestCaseStandardOutput("OkTest", "isOk()").isPresent()
            }
            if (standardErrIncluded) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:39 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGLoggingOutputCaptureIntegrationTest.groovy

                assert junitResult.getSuiteStandardOutput("FooTest").isPresent()
                assert junitResult.getTestCaseStandardOutput("FooTest", "m1").isPresent()
            } else {
                assert !junitResult.getSuiteStandardOutput("FooTest").isPresent() // isEmpty not available in Java 8
                assert !junitResult.getTestCaseStandardOutput("FooTest", "m1").isPresent()
            }
            if (standardErrIncluded) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:39 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/AbstractPropertySpec.groovy

            given:
            def property = propertyWithNoValue()
    
            expect:
            !property.isPresent()
            !property.isFinalized()
        }
    
        def "finalization checking works with simple values"() {
            given:
            def property = propertyWithValue(someValue())
    
            expect:
            property.isPresent()
            !property.isFinalized()
    
            when:
            property.set(someOtherValue())
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 12:47:05 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_executor_ops.td

    def TfExecutor_Dialect : Dialect {
      let name = "tf_executor";
    
      let description = [{
        The TensorFlow Executor dialect.
    
        This dialect models the TensorFlow executor semantics and can represent
        arbitrary TensorFlow graphs. As such it follows the existing execution model
        that includes deadness propagation, concurrent semantics, and control
        dependencies.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 22K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/CollectionFuture.java

      @CheckForNull @LazyInit private List<@Nullable Present<V>> values;
    
      CollectionFuture(
          ImmutableCollection<? extends ListenableFuture<? extends V>> futures,
          boolean allMustSucceed) {
        super(futures, allMustSucceed, true);
    
        List<@Nullable Present<V>> values =
            futures.isEmpty()
                ? Collections.<@Nullable Present<V>>emptyList()
                : Lists.<@Nullable Present<V>>newArrayListWithCapacity(futures.size());
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top