Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 729 for Combine2 (0.13 sec)

  1. guava/src/com/google/common/collect/MoreCollectors.java

       */
      private static final Collector<Object, ?, Optional<Object>> TO_OPTIONAL =
          Collector.of(
              ToOptionalState::new,
              ToOptionalState::add,
              ToOptionalState::combine,
              ToOptionalState::getOptional,
              Collector.Characteristics.UNORDERED);
    
      /**
       * A collector that converts a stream of zero or one elements to an {@code Optional}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Dec 13 02:09:05 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/route-binding.yaml.golden

        internal.istio.io/parents: Gateway/gateway/slctr-combined-yes.istio-system
      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-slctr-combined-yes
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - group-namespace1/*.slctr-combined-yes.example
        - group-namespace2/*.slctr-combined-yes.example
        port:
          name: default
          number: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  3. scripts/test-cov-html.sh

    #!/usr/bin/env bash
    
    set -e
    set -x
    
    bash scripts/test.sh ${@}
    coverage combine
    coverage report --show-missing
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Nov 03 20:00:29 UTC 2022
    - 124 bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/SwiftSingleFileLib.groovy

        @Override
        List<SourceFile> getFiles() {
            def content = super.files.collect { it.content }.join('\n')
            return [sourceFile("swift", "combined.swift", content)]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. build-logic/uber-plugins/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
    }
    
    description = "Provides plugins that combine and configure other plugins for different kinds of Gradle subprojects"
    
    dependencies {
        implementation("gradlebuild:basics")
    
        implementation(project(":buildquality"))
        implementation(project(":cleanup"))
        implementation(project(":dependency-modules"))
        implementation(project(":jvm"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 17:16:23 UTC 2023
    - 695 bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/TableCollectors.java

            (Supplier<ImmutableTable.Builder<R, C, V>>) ImmutableTable.Builder::new,
            (builder, t) ->
                builder.put(rowFunction.apply(t), columnFunction.apply(t), valueFunction.apply(t)),
            ImmutableTable.Builder::combine,
            ImmutableTable.Builder::build);
      }
    
      static <T extends @Nullable Object, R, C, V>
          Collector<T, ?, ImmutableTable<R, C, V>> toImmutableTable(
              Function<? super T, ? extends R> rowFunction,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Mar 09 00:21:17 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/error_util_test.cc

      auto loc = FileLineColLoc::get(&context, id, 0, 0);
    
      // Test OK without diagnostic gets passed through.
      {
        TF_ASSERT_OK(
            StatusScopedDiagnosticHandler(&context).Combine(absl::OkStatus()));
      }
    
      // Verify diagnostics are captured as Unknown status.
      {
        StatusScopedDiagnosticHandler handler(&context);
        emitError(loc) << "Diagnostic message";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/DefaultDomainObjectSet.java

    import org.gradle.internal.ImmutableActionSet;
    
    import java.util.LinkedHashSet;
    import java.util.Set;
    
    public class DefaultDomainObjectSet<T> extends DefaultDomainObjectCollection<T> implements DomainObjectSet<T> {
        // TODO: Combine these with MutationGuard
        private ImmutableActionSet<Void> beforeContainerChange = ImmutableActionSet.empty();
    
        public DefaultDomainObjectSet(Class<? extends T> type, CollectionCallbackActionDecorator decorator) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/logging/TestStackTraceFilter.java

     * limitations under the License.
     */
    
    package org.gradle.api.tasks.testing.logging;
    
    /**
     * Stack trace filters for test logging. Multiple filters can be combined.
     */
    public enum TestStackTraceFilter {
        // ordered by how much they filter
        ENTRY_POINT, TRUNCATE, GROOVY
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 857 bytes
    - Viewed (0)
  10. LICENSE

    facilities not covered by this License, and distribute such a combined
    library, provided that the separate distribution of the work based on
    the Library and of the other library facilities is otherwise
    permitted, and provided that you do these two things:
    
        a) Accompany the combined library with a copy of the same work
        based on the Library, uncombined with any other library
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 18 20:25:38 UTC 2016
    - 25.8K bytes
    - Viewed (0)
Back to top