Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,565 for 50$ (0.07 sec)

  1. docs_src/settings/app01/config.py

    from pydantic_settings import BaseSettings
    
    
    class Settings(BaseSettings):
        app_name: str = "Awesome API"
        admin_email: str
        items_per_user: int = 50
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 183 bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/ResultSpecification.groovy

            result1.version('5.0-mockbaseline-1').results.addAll(measuredOperations([1]))
            result1.version('master').results.addAll(measuredOperations([2]))
    
            CrossVersionPerformanceResults result2 = crossVersionResults([startTime: 200])
            result2.version('5.0-mockbaseline-2').results.addAll(measuredOperations([2, 2]))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/modelRules/modelDslCoercion/groovy/data.csv

    widget123,42,2.50,JUST_RIGHT...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 29 bytes
    - Viewed (0)
  4. docs_src/settings/app03/config.py

    from pydantic_settings import BaseSettings
    
    
    class Settings(BaseSettings):
        app_name: str = "Awesome API"
        admin_email: str
        items_per_user: int = 50
    
        class Config:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 204 bytes
    - Viewed (0)
  5. test/fixedbugs/issue7995b.dir/x1.go

    package x1
    
    import "fmt"
    
    var P int
    
    //go:noinline
    func F(x *int) string {
    	P = 50
    	*x = 100
    	return fmt.Sprintln(P, *x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 03 02:01:34 UTC 2015
    - 123 bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/experimental/tac/execution_metadata_exporter_test.cc

      %1 = "tfl.mul"(%0, %arg2) {fused_activation_function = "RELU6", per_device_costs = {CPU = 5.0 : f32, GPU = 1.0 : f32}, tac.device = "GPU"} : (tensor<1xf32>, tensor<1xf32>) -> tensor<1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/webAppWithVarsWtpFacet.xml

    <faceted-project>
    	<fixed facet="jst.java"/>
    	<fixed facet="jst.web"/>
    	<installed facet="jst.web" version="2.4"/>
    	<installed facet="jst.java" version="5.0"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 179 bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/webserviceWtpFacet.xml

    <faceted-project>
    	<fixed facet="jst.java"/>
    	<fixed facet="jst.web"/>
    	<installed facet="jst.web" version="2.4"/>
    	<installed facet="jst.java" version="5.0"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 179 bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/readme.md

    ### Executing with Kotlin scripts on Gradle Version prior to 5.0.
        
    This will result in an invocation as if no script is present and you'll be puzzled why nothing you wrote in the script is happening.
    The reason is that Kotlin DSL was introduced in Gradle 5.0. Older Gradle versions simply ignore Kotlin scripts.
    The solution is to use a `groovy` script since it works on all Gradle Versions. 
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 19 21:50:04 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-groovy/src/crossVersionTest/groovy/org/gradle/integtests/StaticGroovyTaskSubclassingBinaryCompatibilityCrossVersionSpec.groovy

     * broke compatibility with plugins compiled with Gradle 4.x. And that's why the first version we test with now is
     * Gradle 5.0.
     */
    @TargetVersions("5.0+")
    class StaticGroovyTaskSubclassingBinaryCompatibilityCrossVersionSpec extends CrossVersionIntegrationSpec {
    
        @Issue("https://github.com/gradle/gradle/issues/6027")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 12:37:02 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top