Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 410 for rebind (0.11 sec)

  1. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeContinuousBuildIntegrationTest.groovy

    class CompositeContinuousBuildIntegrationTest extends AbstractContinuousIntegrationTest {
        def setup() {
            buildTestFixture.withBuildInSubDir()
        }
    
        def "will rebuild on input change for included build task dependency"() {
            def outputFile = file("included/build/output.txt")
            def inputFile = file("included/inputs/input.txt")
            inputFile.text = "first"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 06 08:15:28 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/issue9400_linux.go

    	// SetGCPercent waits until the mark phase is over, but the runtime
    	// also preempts at the start of the sweep phase, so make sure that's
    	// done too. See #49695.
    	runtime.GC()
    
    	// Temporarily rewind the stack and trigger SIGSETXID
    	issue9400.RewindAndSetgid()
    
    	// Check test pattern
    	for i := range big {
    		if big[i] != pattern {
    			t.Fatalf("entry %d of test pattern is wrong; %#x != %#x", i, big[i], uint64(pattern))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 19:55:29 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. src/hash/test_cases.txt

    Give me a rock, paper and scissors and I will move the world.  CCFestoon
    If the enemy is within range, then so are you.
    It's well we cannot hear the screams/That we create in others' dreams.
    You remind me of a TV show, but that's all right: I watch it anyway.
    C is as portable as Stonehedge!!
    Even if I could be Shakespeare, I think I should still choose to be Faraday. - A. Huxley
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.3K bytes
    - Viewed (0)
  4. docs/zh/docs/advanced/wsgi.md

    # 包含 WSGI - Flask,Django,其它
    
    您可以挂载多个 WSGI 应用,正如您在 [Sub Applications - Mounts](sub-applications.md){.internal-link target=_blank}, [Behind a Proxy](behind-a-proxy.md){.internal-link target=_blank} 中所看到的那样。
    
    为此, 您可以使用 `WSGIMiddleware` 来包装你的 WSGI 应用,如:Flask,Django,等等。
    
    ## 使用 `WSGIMiddleware`
    
    您需要导入 `WSGIMiddleware`。
    
    然后使用该中间件包装 WSGI 应用(例如 Flask)。
    
    之后将其挂载到某一个路径下。
    
    ```Python hl_lines="2-3  22"
    {!../../../docs_src/wsgi/tutorial001.py!}
    ```
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftIncrementalCompileIntegrationTest.groovy

                }
             """
    
            outputs.snapshot { succeeds("compileDebugSwift") }
    
            expect:
            // rebuild for Swift4
            succeeds("compileDebugSwift", "-Pswift4")
            outputs.recompiledClasses('main', 'sum', 'greeter', 'multiply')
    
            and:
            // rebuild for Swift3
            succeeds("compileDebugSwift")
            outputs.recompiledClasses('main', 'sum', 'greeter', 'multiply')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. releasenotes/notes/39188.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 39188
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 02 05:04:34 UTC 2022
    - 213 bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/FixedExclusiveModeCrossProcessCacheAccess.java

            }
            final FileLock fileLock = lockManager.lock(lockTarget, lockOptions, cacheDisplayName, "", unused -> {});
            try {
                boolean rebuild = initializationAction.requiresInitialization(fileLock);
                if (rebuild) {
                    fileLock.writeFile(() -> initializationAction.initialize(fileLock));
                }
                onOpenAction.accept(fileLock);
            } catch (Exception e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 01 12:21:15 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/ResolveChangesStepTest.groovy

                def changes = delegateContext.changes.get()
                assert delegateContext.rebuildReasons == ImmutableList.of("Forced rebuild.")
                assert !changes.createInputChanges().incremental
                return delegateResult
            }
            _ * context.nonIncrementalReason >> Optional.of("Forced rebuild.")
            _ * context.beforeExecutionState >> Optional.of(beforeExecutionState)
            0 * _
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheScriptTaskDefinitionIntegrationTest.groovy

            when:
            configurationCacheRun ":a:some"
    
            then:
            result.groupedOutput.task(":a:some").assertOutputContains("FIRST").assertOutputContains("LAST")
    
            when: // rebuild task graph, with tasks from the same set of scripts
            configurationCacheRun ":a:some", ":a:other"
    
            then:
            result.groupedOutput.task(":a:some").assertOutputContains("FIRST").assertOutputContains("LAST")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. src/os/readfrom_linux_test.go

    			t.Fatalf("failed to create and feed the file: %v", err)
    		}
    
    		if err := f.Sync(); err != nil {
    			t.Fatalf("failed to save the file: %v", err)
    		}
    
    		// Rewind it.
    		if _, err := f.Seek(0, io.SeekStart); err != nil {
    			t.Fatalf("failed to rewind the file: %v", err)
    		}
    
    		// Read data from the file itself.
    		if _, err := io.Copy(f, f); err != nil {
    			t.Fatalf("failed to read from the file: %v", err)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top