Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 751 for Combine (0.47 sec)

  1. tensorflow/cc/experimental/libtf/impl/string.h

      const std::string& str() const { return *value_; }
    
      /** Absl hash function. */
      template <typename H>
      friend H AbslHashValue(H h, const String& s) {
        return H::combine(std::move(h), *s.value_);
      }
    
     private:
      //! The interned string value. This is never null.
      const std::string* value_;
    };
    
    // This is defined in the `iostream.cc` file in this directory. It is not
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 30 17:28:28 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  2. operator/pkg/util/yaml_test.go

    		err     error
    	}{
    		{
    			desc: "overlay-yaml",
    			base: `foo: bar
    yo: lo
    `,
    			overlay: `yo: go`,
    			expect: `foo: bar
    yo: go
    `,
    			err: nil,
    		},
    		{
    			desc:    "combine-yaml",
    			base:    `foo: bar`,
    			overlay: `baz: razmatazz`,
    			expect: `baz: razmatazz
    foo: bar
    `,
    			err: nil,
    		},
    		{
    			desc:    "blank",
    			base:    `R#)*J#FN`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 17:00:14 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/AbstractProcessInstrumentationInDynamicGroovyIntegrationTest.groovy

         * @return the list of indy modes
         */
        def indyModes() {
            return [true, false]
        }
    
        final def testCasesWithIndyModes() {
            // Combine each test case with enableIndy=true and/or enableIndy=false
            return [testCases(), indyModes()].combinations().collect { it.flatten() }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/plugin-config-append/with-profile/pom.xml

      <version>1.0</version>
      <packaging>pom</packaging>
    
      <name>Maven Integration Test :: MNG-2591</name>
      <description>
        Test aggregation of list configuration items for build plugins when using
        'combine.children=append' attribute.
      </description>
    
      <modules>
        <module>subproject</module>
      </modules>
    
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  5. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableBiMap.java

          super.orderEntriesByValue(valueComparator);
          return this;
        }
    
        @CanIgnoreReturnValue
        Builder<K, V> combine(Builder<K, V> other) {
          super.combine(other);
          return this;
        }
    
        @Override
        public ImmutableBiMap<K, V> build() {
          return buildOrThrow();
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 23 18:43:40 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. platforms/software/resources/src/main/java/org/gradle/internal/resource/ExternalResourceName.java

        private ExternalResourceName(@Nullable String encodedRoot, String path) {
            this(encodedRoot, path, "");
        }
    
        public ExternalResourceName(URI parent, String path) {
            this(encodeRoot(parent), combine(parent, path), "");
        }
    
        private ExternalResourceName(@Nullable String encodedRoot, String path, String encodedQuery) {
            this.encodedRoot = encodedRoot;
            this.path = path;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftDependenciesIntegrationTest.groovy

    @RequiresInstalledToolChain(ToolChainRequirement.SWIFTC)
    class SwiftDependenciesIntegrationTest extends AbstractInstalledToolChainIntegrationSpec {
        def app = new SwiftAppWithLibraries()
    
        def "can combine swift builds in a composite"() {
            given:
            createDirs("app", "hello", "log")
            settingsFile << """
                include 'app'
                includeBuild 'hello'
                includeBuild 'log'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  8. samples/tlssurvey/src/main/kotlin/okhttp3/survey/RunSurvey.kt

      val survey = CipherSuiteSurvey(clients = clients, ianaSuites = ianaSuitesNew, orderBy = orderBy)
    
      survey.printGoogleSheet()
    }
    
    fun rest(clients: List<Client>): List<SuiteId> {
      // combine all ciphers to get these near the top
      return clients.flatMap { it.enabled }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    //
    inline internal::ParamGenerator<bool> Bool() {
      return Values(false, true);
    }
    
    # if GTEST_HAS_COMBINE
    // Combine() allows the user to combine two or more sequences to produce
    // values of a Cartesian product of those sequences' elements.
    //
    // Synopsis:
    // Combine(gen1, gen2, ..., genN)
    //   - returns a generator producing sequences with elements coming from
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java

                }
            }
    
            return dr;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.dfs.DfsReferralDataInternal#combine(jcifs.DfsReferralData)
         */
        @Override
        public DfsReferralDataInternal combine ( DfsReferralData n ) {
            DfsReferralDataImpl dr = new DfsReferralDataImpl();
            dr.server = n.getServer();
            dr.share = n.getShare();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Nov 13 15:13:49 UTC 2021
    - 11K bytes
    - Viewed (0)
Back to top