Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,743 for gives (0.21 sec)

  1. src/time/example_test.go

    	//
    	// Basic full date  "Mon Jan 2 15:04:05 MST 2006" gives "Wed Feb 25 11:06:39 PST 2015"
    	// Basic short date "2006/01/02" gives "2015/02/25"
    	// AM/PM            "3PM==3pm==15h" gives "11AM==11am==11h"
    	// No fraction      "Mon Jan _2 15:04:05 MST 2006" gives "Wed Feb 25 11:06:39 PST 2015"
    	// 0s for fraction  "15:04:05.00000" gives "11:06:39.12340"
    	// 9s for fraction  "15:04:05.99999999" gives "11:06:39.1234"
    
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitPluginIntegrationTest.groovy

      - 'scala-library'""")
        }
    
        def "gives decent error message when triggered with unknown dsl"() {
            when:
            fails('init', '--dsl', 'some-unknown-dsl')
    
            then:
            failure.assertHasCause("""The requested build script DSL 'some-unknown-dsl' is not supported. Supported DSLs:
      - 'kotlin'
      - 'groovy'""")
        }
    
        def "gives decent error message when using unknown test framework"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtMultiplatformInfoProvider.kt

    }
    
    public typealias KtMultiplatformInfoProvider = KaMultiplatformInfoProvider
    
    public interface KaMultiplatformInfoProviderMixin : KaSessionMixIn {
    
        /**
         * Gives expect symbol for the actual one if it is available.
         *
         * @return a single expect declaration corresponds to the [KaDeclarationSymbol] on valid code or multiple expects in a case of erroneous code with multiple expects.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/permissions/KotlinAnalysisPermissionOptions.kt

    import com.intellij.openapi.application.ApplicationManager
    import org.jetbrains.kotlin.analysis.api.platform.KotlinOptionalPlatformComponent
    
    /**
     * [KotlinAnalysisPermissionOptions] gives an Analysis API platform the choice whether to allow analysis on the EDT and in write actions by
     * default.
     *
     * @see KotlinDefaultAnalysisPermissionOptions
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/file/FileResolutionIntegrationTest.groovy

            where:
            expression                        | _
            "new File(projectDir, 'testdir')" | _
            "new File('testdir').toPath()"    | _
            "'testdir'"                       | _
        }
    
        def "gives reasonable error message when value cannot be converted to file"() {
            buildFile """
    def f = file(12)
    """
    
            when:
            fails()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 19:24:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. manifests/charts/istio-cni/values.yaml

          # Note this gives the DaemonSet a relatively high privilege, as modifying pod metadata/status can have wider impacts.
          labelPods: false
          # deletePods will delete any broken pod. These will then be rescheduled, hopefully onto a node that is fully ready.
          # Note this gives the DaemonSet a relatively high privilege, as it can delete any Pod.
          deletePods: false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/MoreMemorySampleModifier.java

    import org.gradle.exemplar.model.Sample;
    import org.gradle.exemplar.test.runner.SampleModifier;
    import org.gradle.util.internal.GUtil;
    
    import java.io.File;
    import java.util.Properties;
    
    /**
     * Gives the sample tests more metaspace, as we currently never collect old buildSrc/buildscript classloaders.
     */
    public class MoreMemorySampleModifier implements SampleModifier {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/static-files.md

    The `directory="static"` refers to the name of the directory that contains your static files.
    
    The `name="static"` gives it a name that can be used internally by **FastAPI**.
    
    All these parameters can be different than "`static`", adjust them with the needs and specific details of your own application.
    
    ## More info
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 19:56:09 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/MBeanOsMemoryInfo.java

     * limitations under the License.
     */
    
    package org.gradle.process.internal.health.memory;
    
    import org.gradle.internal.jvm.Jvm;
    
    /**
     * Uses the JVM's own interpretation of total and free memory. Gives accurate values on Solaris.
     * On Linux or MacOs, the free memory metric doesn't include reclaimable file system caches and will thus always report that the system is almost out of memory.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 21:48:34 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/path-params.md

    ```JSON
    {"item_id":3}
    ```
    
    !!! check
        Notice that the value your function received (and returned) is `3`, as a Python `int`, not a string `"3"`.
    
        So, with that type declaration, **FastAPI** gives you automatic request <abbr title="converting the string that comes from an HTTP request into Python data">"parsing"</abbr>.
    
    ## Data validation
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top