Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for FlatMap (0.1 sec)

  1. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                if (results.stream()
                        .flatMap(r -> r.getProblems().stream())
                        .anyMatch(p -> p.getSeverity() != org.apache.maven.model.building.ModelProblem.Severity.WARNING)) {
                    org.apache.maven.model.building.ModelProblem cycle = results.stream()
                            .flatMap(r -> r.getProblems().stream())
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            def b = propertyWithNoValue()
            def c = propertyWithNoValue()
            def property = propertyWithNoValue()
    
            property.set(b.flatMap { supplierWithValues(someOtherValue2()) })
            property.disallowUnsafeRead()
    
            b.set(c.flatMap { supplierWithValues(someOtherValue()) })
            b.attachOwner(owner(), displayName("<b>"))
    
            c.set(someValue())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

            return constructors + listOfNotNull(samConstructor)
        }
    
        fun findFunctionsInScopes(scopes: List<FirScope>, name: Name): List<AvailableSymbol<FirFunctionSymbol<*>>> {
            return scopes.flatMap { scope ->
                val importKind = ImportKind.fromScope(scope)
                buildList {
                    // Collect constructors
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

                }
                propMap.put(DEFAULT_LABEL_VALUES, map);
            }
            return map.entrySet().stream().flatMap(e -> {
                final String key = e.getKey();
                if (StringUtil.isEmpty(key) || userBean
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    #include "tensorflow/core/framework/types.h"
    #include "tensorflow/core/graph/algorithm.h"
    #include "tensorflow/core/graph/control_flow.h"
    #include "tensorflow/core/lib/gtl/cleanup.h"
    #include "tensorflow/core/lib/gtl/flatmap.h"
    #include "tensorflow/core/lib/strings/stringprintf.h"
    #include "tensorflow/core/platform/errors.h"
    #include "tensorflow/core/platform/mutex.h"
    #include "tensorflow/core/platform/statusor.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    [[config_cache:not_yet_implemented:build_services_in_fingerprint]]
    === Using build services to invalidate the configuration cache
    
    Currently, it is impossible to use a `BuildServiceProvider` or provider derived from it with `map` or `flatMap` as a parameter for the `ValueSource`, if the value of the `ValueSource` is accessed at configuration time.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    In Kotlin, this mismatch made valid code difficult to write because the language would not allow you to pass null.
    
    One particular example was returning `null` from a `Provider#map` or `Provider#flatMap`. In both APIs, Gradle allows you to return null, but in the Kotlin DSL this was considered illegal.
    
    This correction may cause compilation errors in code that expected non-null.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top