Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 202 for combinations (0.16 sec)

  1. docs/en/docs/advanced/settings.md

    So, the function below it will be executed once for each combination of arguments. And then the values returned by each of those combinations of arguments will be used again and again whenever the function is called with exactly the same combination of arguments.
    
    For example, if you have a function:
    
    ```Python
    @lru_cache
    def say_hi(name: str, salutation: str = "Ms."):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/test_kit.adoc

    * The build's output;
    * The build's logging (i.e. console output);
    * The set of tasks executed by the build and their results (e.g. FAILED, UP-TO-DATE etc.).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/SetsTest.java

                      public boolean apply(Set<Integer> input) {
                        return input.size() == size;
                      }
                    });
            assertWithMessage("Sets.combinations(%s, %s)", sampleSet, k)
                .that(Sets.combinations(sampleSet, k))
                .containsExactlyElementsIn(expected)
                .inOrder();
          }
        }
      }
    
      private static <E> Set<E> set(E... elements) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 47.8K bytes
    - Viewed (0)
  4. src/hash/maphash/smhasher_test.go

    	if k == 0 {
    		return
    	}
    	for j := i; j < len(b)*8; j++ {
    		b[j/8] |= byte(1 << uint(j&7))
    		setbits(h, b, j+1, k-1)
    		b[j/8] &= byte(^(1 << uint(j&7)))
    	}
    }
    
    // Test all possible combinations of n blocks from the set s.
    // "permutation" is a bad name here, but it is what Smhasher uses.
    func TestSmhasherPermutation(t *testing.T) {
    	if runtime.GOARCH == "wasm" {
    		t.Skip("Too slow on wasm")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

            where:
            [operator, orElseKind] << [
                ['systemProperty', 'environmentVariable'],
                ['primitive', 'provider', 'task output']
            ].combinations()
            orElseArgument = orElseKind == 'primitive'
                ? '"absent"'
                : orElseKind == 'provider'
                ? 'providers.provider { "absent" }'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  6. src/index/suffixarray/suffixarray_test.go

    			if n > 8 && testing.Short() {
    				break
    			}
    			x[n] = 0 // for sais.New
    			testRec(t, x[:n], 0, 3, &numFail, build)
    		}
    	})
    }
    
    // testRec fills x[i:] with all possible combinations of values in [1,max]
    // and then calls testSA(t, x, build) for each one.
    func testRec(t *testing.T, x []byte, i, max int, numFail *int, build func([]byte) []int) {
    	if i < len(x) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/hash/BloomFilterTest.java

        double actualReportedFpp = bf.expectedFpp();
        assertEquals(expectedReportedFpp, actualReportedFpp, 0.00033);
      }
    
      /** Sanity checking with many combinations of false positive rates and expected insertions */
      public void testBasic() {
        for (double fpr = 0.0000001; fpr < 0.1; fpr *= 10) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/SetsTest.java

                      public boolean apply(Set<Integer> input) {
                        return input.size() == size;
                      }
                    });
            assertWithMessage("Sets.combinations(%s, %s)", sampleSet, k)
                .that(Sets.combinations(sampleSet, k))
                .containsExactlyElementsIn(expected)
                .inOrder();
          }
        }
      }
    
      private static <E> Set<E> set(E... elements) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedCustomTaskExecutionIntegrationTest.groovy

        @Issue("https://github.com/gradle/gradle/issues/3537")
        @ToBeFixedForIsolatedProjects(because = "subprojects")
        def "concurrent access to local cache works"() {
            String[] projectNames = GroovyCollections.combinations(('a'..'p'), ('a'..'p'), ('a'..'d'))*.join("")
            println "Running with ${projectNames.size()} projects"
            createDirs(projectNames)
            projectNames.each { projectName ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  10. docs/en/docs/deployment/concepts.md

    Here are some possible combinations and strategies:
    
    * **Gunicorn** managing **Uvicorn workers**
        * Gunicorn would be the **process manager** listening on the **IP** and **port**, the replication would be by having **multiple Uvicorn worker processes**.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
Back to top