Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 729 for Combine2 (0.17 sec)

  1. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classpath/TransformedClassPathTest.groovy

            when:
            def combined = transformed + nonTransformed
    
            then:
            combined.asFiles == [file("1.jar"), file("2.jar")]
            combined.asTransformedFiles == [file("t1.jar"), file("2.jar")]
    
            combined.findTransformedEntryFor(file("1.jar")) == file("t1.jar")
            combined.findTransformedEntryFor(file("2.jar")) == null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 11:14:30 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/printer.go

    	p.print(close)
    }
    
    // combinesWithName reports whether a name followed by the expression x
    // syntactically combines to another valid (value) expression. For instance
    // using *T for x, "name *T" syntactically appears as the expression x*T.
    // On the other hand, using  P|Q or *P|~Q for x, "name P|Q" or name *P|~Q"
    // cannot be combined into a valid (value) expression.
    func combinesWithName(x Expr) bool {
    	switch x := x.(type) {
    	case *Operation:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/ProviderIntegrationTest.groovy

                    void printText() {
                        println text.get()
                    }
                }
            """
    
            when:
            succeeds 'combined'
    
            then:
            executedAndNotSkipped(':myTask1', ':myTask2', ':combined')
            outputContains('Hello, World!')
        }
    
        def "can zip tasks directly"() {
            buildFile << """
                tasks.register('myTask1', MyTask) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 15:32:52 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/BiProvider.java

        private final BiFunction<? super A, ? super B, ? extends R> combiner;
        private final ProviderInternal<A> left;
        private final ProviderInternal<B> right;
    
        public BiProvider(@Nullable Class<R> type, Provider<A> left, Provider<B> right, BiFunction<? super A, ? super B, ? extends R> combiner) {
            this.type = type;
            this.combiner = combiner;
            this.left = Providers.internal(left);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:41 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        /*
         * Futures should be collected even if combiner never runs. This is kind of a silly test, since
         * the combiner is almost certain to hold its own reference to the futures, and a real app would
         * hold a reference to the executor and thus to the combiner. What we really care about is that
         * the futures are released once the combiner is done running. But we happen to provide this
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        /*
         * Futures should be collected even if combiner never runs. This is kind of a silly test, since
         * the combiner is almost certain to hold its own reference to the futures, and a real app would
         * hold a reference to the executor and thus to the combiner. What we really care about is that
         * the futures are released once the combiner is done running. But we happen to provide this
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/hash/BloomFilterStrategies.java

          long hash1 = lowerEight(bytes);
          long hash2 = upperEight(bytes);
    
          boolean bitsChanged = false;
          long combinedHash = hash1;
          for (int i = 0; i < numHashFunctions; i++) {
            // Make the combined hash positive and indexable
            bitsChanged |= bits.set((combinedHash & Long.MAX_VALUE) % bitSize);
            combinedHash += hash2;
          }
          return bitsChanged;
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirScopeProvider.kt

             *
             * A proper combined declared member scope kind also makes it easier to cache combined scopes directly (if needed).
             */
            COMBINED,
        }
    
        private fun getDeclaredMemberScope(classSymbol: KaSymbolWithMembers, kind: DeclaredMemberScopeKind): KaScope {
            val firDeclaration = classSymbol.firSymbol.fir
            val firScope = when (firDeclaration) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  9. maven-model-builder/src/test/resources/poms/inheritance/plugin-configuration-expected.xml

            <configuration>
              <defaults><!-- equivalent to combine.children="merge" combine.self="merge" -->
                <!-- merge the content of the configuration element according to element name -->
                <parent>child</parent>
                <child>child</child>
                <parent-only>parent</parent-only>
              </defaults>
              <appends combine.children="append">
                <parent-only>parent</parent-only>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/route-binding.yaml

          namespaces:
            from: Selector
            selector:
              matchExpressions:
              - key: istio.io/test-name-part
                operator: DoesNotExist
      - name: slctr-combined-yes
        hostname: "*.slctr-combined-yes.example"
        port: 80
        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: Selector
            selector:
              matchLabels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 8.1K bytes
    - Viewed (0)
Back to top