Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 296 for defeats (0.17 sec)

  1. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/IncrementalCompileProcessorTest.groovy

            virtualFileSystem.invalidateAll()
            graph.remove(sourceFile)
            sourceFile.delete()
        }
    
        def "detects unchanged source files"() {
            given:
            initialFiles()
    
            expect:
            checkCompile recompiled: [], removed: []
        }
    
        def "detects new source files"() {
            given:
            initialFiles()
    
            when:
            def file3 = sourceFile("file3")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:31:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. docs/es/docs/tutorial/query-params.md

    * Validación de datos
    * Documentación automática
    
    ## Configuraciones por defecto
    
    Como los parámetros de query no están fijos en una parte del path pueden ser opcionales y pueden tener valores por defecto.
    
    El ejemplo arriba tiene `skip=0` y `limit=10` como los valores por defecto.
    
    Entonces, si vas a la URL:
    
    ```
    http://127.0.0.1:8000/items/
    ```
    
    Sería lo mismo que ir a:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractClassChangeIncrementalCompilationIntegrationTest.groovy

        }
    
        def "detects change of an isolated class"() {
            source "class A {}", "class B {}"
    
            outputs.snapshot { run language.compileTaskName }
    
            when:
            source "class A { /* change */ }"
            run language.compileTaskName
    
            then:
            outputs.recompiledClasses 'A'
        }
    
        def "detects deletion of an inner class"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/jpms/compile/CachingAndIncrementalJavaModuleCompileIntegrationTest.groovy

        def setup() {
            buildFile << """
                dependencies {
                    api 'org:moda:1.0'
                }
            """
        }
    
        def "detects changes in module-info file"() {
            when:
            publishJavaModule('moda')
            consumingModuleInfo()
            consumingModuleClass('moda.ModaClass')
    
            then:
            fails ':compileJava'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/ws/WebSocketHttpTest.kt

        successfulExtensions("permessage-deflate")
      }
    
      @Test
      @Throws(Exception::class)
      fun compressedMessagesNoClientContextTakeover() {
        successfulExtensions("permessage-deflate; client_no_context_takeover")
      }
    
      @Test
      @Throws(Exception::class)
      fun compressedMessagesNoServerContextTakeover() {
        successfulExtensions("permessage-deflate; server_no_context_takeover")
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 31 17:16:15 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  6. src/archive/zip/example_test.go

    }
    
    func ExampleWriter_RegisterCompressor() {
    	// Override the default Deflate compressor with a higher compression level.
    
    	// Create a buffer to write our archive to.
    	buf := new(bytes.Buffer)
    
    	// Create a new zip archive.
    	w := zip.NewWriter(buf)
    
    	// Register a custom Deflate compressor.
    	w.RegisterCompressor(zip.Deflate, func(out io.Writer) (io.WriteCloser, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 27 00:22:03 UTC 2016
    - 2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/phi.go

    // Uses FwdRef ops to find all uses of variables, and s.defvars to find
    // all definitions.
    // Phi values are inserted, and all FwdRefs are changed to a Copy
    // of the appropriate phi or definition.
    // TODO: make this part of cmd/compile/internal/ssa somehow?
    func (s *state) insertPhis() {
    	if len(s.f.Blocks) <= smallBlocks {
    		sps := simplePhiState{s: s, f: s.f, defvars: s.defvars}
    		sps.insertPhis()
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  8. docs/es/docs/advanced/response-directly.md

    # Devolver una respuesta directamente
    
    Cuando creas una *operación de path* normalmente puedes devolver cualquier dato: un `dict`, una `list`, un modelo Pydantic, un modelo de base de datos, etc.
    
    Por defecto, **FastAPI** convertiría automáticamente ese valor devuelto a JSON usando el `jsonable_encoder` explicado en [Codificador Compatible JSON](../tutorial/encoder.md){.internal-link target=_blank}.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jan 13 11:57:27 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/impl/DefaultOverlappingOutputDetectorTest.groovy

    import org.gradle.internal.snapshot.RegularFileSnapshot
    import spock.lang.Specification
    
    class DefaultOverlappingOutputDetectorTest extends Specification {
        def detector = new DefaultOverlappingOutputDetector()
    
        def "detects no overlap when there are none"() {
            def previousOutputFiles = ImmutableSortedMap.<String, FileSystemSnapshot> of(
                "output", FileSystemSnapshot.EMPTY
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/CallableCodecTest.kt

        @Test
        fun `defers evaluation of Callable objects`() {
            assertDeferredEvaluationOf(callable()) {
                call()
            }
        }
    
        @Test
        fun `defers evaluation of dynamic Callable fields`() {
            assertDeferredEvaluationOf(BeanOf(callable())) {
                value.call()
            }
        }
    
        @Test
        fun `defers evaluation of static Callable fields`() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top