Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 819 for combinations (0.17 sec)

  1. docs/en/docs/tutorial/dependencies/dependencies-with-yield.md

    And you could have a single dependency that requires several other dependencies with `yield`, etc.
    
    You can have any combinations of dependencies that you want.
    
    **FastAPI** will make sure everything is run in the correct order.
    
    !!! note "Technical Details"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Feb 24 23:06:37 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/math/QuantilesTest.java

       * - scale with indexes taking integer-collection with compute taking a double-collection and with
       *   computeInPlace;
       * - (except that, for non-finite values, we don't do all combinations exhaustively);
       * - percentiles with index and with indexes taking int-varargs, and with compute taking a
       *   double-collection and with computeInPlace.
       */
    
      private static final double ALLOWED_ERROR = 1.0e-10;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 29.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/MapPropertyIntegrationTest.groovy

                [
                    'flatMap { it.output }.map { it.asFile.text }',
                    'flatMap { it.output }.map { it.asFile }.map { it.text }',
                ],
                [false, true]
            ].combinations()
        }
    
        def "circular evaluation of map property is detected"() {
            buildFile """
                def myMap = objects.mapProperty(String, String)
                def myLazyProv = provider {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 15:28:53 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/vendor/golang.org/x/text/internal/language/parse.go

    			continue
    		}
    		varID = append(varID, v)
    		variant = append(variant, scan.token)
    		if !needSort {
    			if last < int(v) {
    				last = int(v)
    			} else {
    				needSort = true
    				// There is no legal combinations of more than 7 variants
    				// (and this is by no means a useful sequence).
    				const maxVariants = 8
    				if len(varID) > maxVariants {
    					break
    				}
    			}
    		}
    		end = scan.end
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/cached_token_authenticator_test.go

    		tok := fmt.Sprintf("%v-%v", jwtToken, i)
    		r := cacheRecord{
    			resp: &authenticator.Response{
    				User: &user.DefaultInfo{Name: fmt.Sprintf("holder of token %v", i)},
    			},
    		}
    		// make different combinations of audience, failures, denies for the tokens.
    		auds := []string{}
    		for i := 0; i < rr.Intn(4); i++ {
    			auds = append(auds, string(uuid.NewUUID()))
    		}
    		choice := rr.Float64()
    		switch {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  9. tensorflow/cc/gradients/math_grad.cc

      return scope.status();
    }
    REGISTER_GRADIENT_OP("SegmentSum", SegmentSumGrad);
    
    // MatMulGrad helper function used to compute two MatMul operations
    // based on input matrix transposition combinations.
    Status MatMulGradHelper(const Scope& scope, const bool is_batch,
                            const Output& x0, const bool adj_x0, const Output& x1,
                            const bool adj_x1, const DataType x_data_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K 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