Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 296 for defeats (0.22 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractSourceIncrementalCompilationIntegrationTest.groovy

    import org.gradle.integtests.fixtures.CompiledLanguage
    import spock.lang.Issue
    
    abstract class AbstractSourceIncrementalCompilationIntegrationTest extends AbstractJavaGroovyIncrementalCompilationSupport {
    
        def "detects class changes in subsequent runs ensuring the class dependency data is refreshed"() {
            source "class A {}", "class B {}", "class C {}"
            outputs.snapshot { run language.compileTaskName }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketWriter.kt

        if (perMessageDeflate && data.size >= minimumDeflateSize) {
          val messageDeflater =
            this.messageDeflater
              ?: MessageDeflater(noContextTakeover).also { this.messageDeflater = it }
          messageDeflater.deflate(messageBuffer)
          b0 = b0 or B0_FLAG_RSV1
        }
        val dataSize = messageBuffer.size
        sinkBuffer.writeByte(b0)
    
        var b1 = 0
        if (isClient) {
          b1 = b1 or B1_FLAG_MASK
        }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/CaptureIncrementalStateBeforeExecutionStepTest.groovy

            1 * outputSnapshotter.snapshotOutputs(work, _) >> { throw failure }
            interaction { snapshotState() }
            0 * _
    
            assertOperation(ex)
        }
    
        def "detects overlapping outputs when instructed"() {
            def previousExecutionState = Mock(PreviousExecutionState)
            def previousOutputSnapshot = Mock(FileSystemSnapshot)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskConstantChangesIncrementalCompilationIntegrationTest.groovy

            when:
            source api: ["class B { /* change */ }"]
            run "impl:${language.compileTaskName}"
    
            then:
            impl.noneRecompiled()
        }
    
        def "detects that changed class still has the same constants so no recompile is necessary"() {
            source api: ["class A { public static final int FOO = 123;}"],
                impl: ["class B { void foo() { int x = 123; }}"]
    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. docs/es/docs/features.md

    ### Corto
    
    Tiene **configuraciones por defecto** razonables para todo, con configuraciones opcionales en todas partes. Todos los parámetros pueden ser ajustados para tus necesidades y las de tu API.
    
    Pero, todo **simplemente funciona** por defecto.
    
    ### Validación
    
    * Validación para la mayoría (¿o todos?) los **tipos de datos** de Python incluyendo:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. src/runtime/stack_test.go

    	}
    	for i := 0; i < 1<<10; i++ {
    		f(i)
    	}
    }
    
    // TestDeferPtrs tests the adjustment of Defer's argument pointers (p aka &y)
    // during a stack copy.
    func set(p *int, x int) {
    	*p = x
    }
    func TestDeferPtrs(t *testing.T) {
    	var y int
    
    	defer func() {
    		if y != 42 {
    			t.Errorf("defer's stack references were not adjusted appropriately")
    		}
    	}()
    	defer set(&y, 42)
    	growStack(nil)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4TestClassDetectionIntegrationTest.groovy

        abstract boolean isSupportsEmptyClassWithRunner()
    
        // TODO: See if there is some way we can implement the custom runner class as a JUnit Jupiter extension
        def "detects test classes"() {
            given:
            file('src/test/java/org/gradle/AbstractHasRunWith.java') << """
                package org.gradle;
    
                ${testFrameworkImports}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. src/compress/flate/inflate.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package flate implements the DEFLATE compressed data format, described in
    // RFC 1951.  The gzip and zlib packages implement access to DEFLATE-based file
    // formats.
    package flate
    
    import (
    	"bufio"
    	"io"
    	"math/bits"
    	"strconv"
    	"sync"
    )
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  9. src/compress/flate/flate_test.go

    	// >>> hex_string = "010100feff11"
    	// >>> import zlib
    	// >>> zlib.decompress(hex_string.decode("hex"), -15) # Negative means raw DEFLATE
    	// '\x11'
    
    	testCases := []struct {
    		desc   string // Description of the stream
    		stream string // Hexstring of the input DEFLATE stream
    		want   string // Expected result. Use "fail" to expect failure
    	}{{
    		"degenerate HCLenTree",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 11K bytes
    - Viewed (1)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/writers_test.go

    		},
    
    		{
    			name:               "ignore compression on deflate",
    			compressionEnabled: true,
    			out:                largePayload,
    			mediaType:          "application/json",
    			req: &http.Request{
    				Header: http.Header{
    					"Accept-Encoding": []string{"deflate"},
    				},
    				URL: &url.URL{Path: "/path"},
    			},
    			wantCode: http.StatusOK,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top