Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 296 for defeats (0.12 sec)

  1. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ChangesByGradleFileWatchingIntegrationTest.groovy

    import org.gradle.integtests.fixtures.DirectoryBuildCacheFixture
    
    @LocalOnly
    class ChangesByGradleFileWatchingIntegrationTest extends AbstractFileSystemWatchingIntegrationTest implements DirectoryBuildCacheFixture {
    
        def "detects when outputs are removed for tasks without sources"() {
            buildFile << """
                apply plugin: 'base'
    
                abstract class Producer extends DefaultTask {
                    @InputDirectory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalTaskWithNormalizedInputsIntegrationTest.groovy

        private static final String INCREMENTAL_TASK_NAME = "incrementalTask"
    
        @Issue("https://github.com/gradle/gradle/issues/9320")
        def "incremental task with NAME_ONLY input (matching file names and content) detects changed input"() {
            def inputs = folderNames().collect { file("${it}/input.txt").createFile() }
            def modifiedInput = inputs[1]
    
            buildFile << incrementalTaskWithNameOnlyInputFiles(inputs)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 30 07:31:26 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/processing/AnnotationProcessorDetectorTest.groovy

        }
    
        def "detects no processors when processor declaration is missing"() {
            given:
            def jar = tmpDir.file("classes.jar")
            jar << JarUtils.jarWithContents()
            def dir = tmpDir.file("classes")
            def cp = files(jar, dir)
    
            expect:
            detector.detectProcessors(cp) == [:]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 10:14:55 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. src/compress/bzip2/bzip2.go

    		// object.
    
    		if bz2.repeats > 0 {
    			buf[n] = byte(bz2.lastByte)
    			n++
    			bz2.repeats--
    			if bz2.repeats == 0 {
    				bz2.lastByte = -1
    			}
    			continue
    		}
    
    		bz2.tPos = bz2.preRLE[bz2.tPos]
    		b := byte(bz2.tPos)
    		bz2.tPos >>= 8
    		bz2.preRLEUsed++
    
    		if bz2.byteRepeats == 3 {
    			bz2.repeats = uint(b)
    			bz2.byteRepeats = 0
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. src/archive/zip/register.go

    	compressors.Store(Deflate, Compressor(func(w io.Writer) (io.WriteCloser, error) { return newFlateWriter(w), nil }))
    
    	decompressors.Store(Store, Decompressor(io.NopCloser))
    	decompressors.Store(Deflate, Decompressor(newFlateReader))
    }
    
    // RegisterDecompressor allows custom decompressors for a specified method ID.
    // The common methods [Store] and [Deflate] are built in.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 18:36:46 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. docs/es/docs/advanced/response-change-status-code.md

    Pero en algunos casos necesitas retornar un status code diferente al predeterminado.
    
    ## Casos de uso
    
    Por ejemplo, imagina que quieres retornar un HTTP status code de "OK" `200` por defecto.
    
    Pero si los datos no existen, quieres crearlos y retornar un HTTP status code de "CREATED" `201`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Feb 06 19:56:23 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. docs/es/docs/advanced/additional-status-codes.md

    # Códigos de estado adicionales
    
    Por defecto, **FastAPI** devolverá las respuestas utilizando una `JSONResponse`, poniendo el contenido que devuelves en tu *operación de path* dentro de esa `JSONResponse`.
    
    Utilizará el código de estado por defecto, o el que hayas asignado en tu *operación de path*.
    
    ## Códigos de estado adicionales
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jan 13 11:57:27 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/enduser/GradleRunnerDefaultTestKitDirIntegrationTest.groovy

                    allprojects {
                        tasks.withType(Test) {
                            // Do not set the DefaultGradleRunner.TEST_KIT_DIR_SYS_PROP system property, that will defeat the purpose of this test
                            systemProperty "java.io.tmpdir", "${TextUtil.normaliseFileSeparators(file("tmp").createDir().absolutePath)}"
                        }
                    }
                """)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/classpath/ClasspathEntryVisitor.java

         */
        void visit(Entry entry) throws IOException;
    
        interface Entry {
            enum CompressionMethod {
                /**
                 * The entry is compressed with DEFLATE algorithm.
                 */
                DEFLATED,
                /**
                 * The entry is not compressed and stored as is.
                 */
                STORED,
                /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 30 22:03:46 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  10. test/fixedbugs/issue27518a.go

    	defer func() {
    		// Ignore the panic.
    		recover()
    		// Force a stack walk. Go 1.11 will fail because x is now
    		// considered live again.
    		runtime.GC()
    	}()
    	// Make x live at the defer's PC.
    	runtime.KeepAlive(x)
    
    	// x is no longer live. Garbage collect the [32]*int on the
    	// heap.
    	runtime.GC()
    	// At this point x's dead stack slot points to dead memory.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 03 19:54:23 UTC 2018
    - 1.1K bytes
    - Viewed (0)
Back to top