Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for fixArg (0.13 sec)

  1. docs/pt/docs/deployment.md

    Se tudo estiver funcionando, ou após você fazer as alterações necessárias, e todos seus testes estiverem passando, então você poderá fixar o `fastapi` para a versão mais recente.
    
    ### Sobre Starlette
    
    Você não deve fixar a versão do `starlette`.
    
    Versões diferentes do **FastAPI** irão utilizar uma versão mais nova específica do Starlette.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Aug 18 16:16:54 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  2. .github/workflows/build.yml

            uses: gradle/actions/setup-gradle@v3
    
          - name: Run Checks
            run: ./gradlew test -Dokhttp.platform=bouncycastle
    
      testcorretto:
        runs-on: ubuntu-latest
        # TODO add master build after fixing all tests in CI
        if: contains(github.event.pull_request.labels.*.name, 'providers')
    
        steps:
          - name: Checkout
            uses: actions/checkout@v4
            with:
              fetch-depth: 0
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 01:51:50 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Joiner.java

      @CanIgnoreReturnValue
      public final <A extends Appendable> A appendTo(A appendable, @Nullable Object[] parts)
          throws IOException {
        @SuppressWarnings("nullness") // TODO: b/316358623 - Remove suppression after fixing checker
        List<?> partsList = Arrays.<@Nullable Object>asList(parts);
        return appendTo(appendable, partsList);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/Joiner.java

      @CanIgnoreReturnValue
      public final <A extends Appendable> A appendTo(A appendable, @Nullable Object[] parts)
          throws IOException {
        @SuppressWarnings("nullness") // TODO: b/316358623 - Remove suppression after fixing checker
        List<?> partsList = Arrays.<@Nullable Object>asList(parts);
        return appendTo(appendable, partsList);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionFailureTest.groovy

            def output = """
    FAILURE: Build completed with 2 failures.
    
    * Where: build file 'build.gradle' line: 123
    
    * What went wrong:
    something bad
    
    * Try:
    fixing
    
    * What went wrong:
    something else bad
    
    * Try:
    fixing
    """
            when:
            def failure = OutputScrapingExecutionFailure.from(output, "")
    
            then:
            failure.assertHasFailures(2)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/prettyPrintResults.kt

    }
    
    
    private
    fun SourceData.prettyPrint(): String =
        buildString {
            // We add +1 here as that was how the original implementation worked, just to avoid fixing all test data:
            append("indexes: ${indexRange.start}..${indexRange.endInclusive + 1}, ")
            append("line/column: ${lineRange.first}/$startColumn..${lineRange.last}/${endColumn + 1}, ")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesUseCasesIntegrationTest.groovy

         * individual modules on the classpath, so we need a way to declare that we prefer to use
         * the fat jar.
         *
         * This is from the consumer point of view, fixing the fact the library doesn't declare capabilities.
         */
        def "can select groovy-all over individual groovy-whatever (#description)"() {
            given:
            repository {
                'org.apache:groovy:1.0'()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  8. CONTRIBUTING.md

    If you made changes to build logic in the `build-logic` included build, you can run its tests by executing `./gradlew :build-logic:check`.
    
    ### Fixing DCO failures/Signing Off Commits After Submitting a Pull Request
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. src/debug/dwarf/type.go

    	// because it may need to resolve cycles in a different order than
    	// readType encounters them.
    	if fixups == nil {
    		var fixer typeFixer
    		defer func() {
    			fixer.apply()
    		}()
    		fixups = &fixer
    	}
    
    	// Parse type from Entry.
    	// Must always set typeCache[off] before calling
    	// d.readType recursively, to handle circular types correctly.
    	var typ Type
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  10. istioctl/pkg/tag/generate_test.go

    			if err != nil {
    				t.Fatalf("webhook parsing failed with error: %v", err)
    			}
    			webhookConfig, err = fixWhConfig(fakeClient, webhookConfig)
    			if err != nil {
    				t.Fatalf("webhook fixing failed with error: %v", err)
    			}
    			opts := &GenerateOptions{
    				ManifestsPath: filepath.Join(env.IstioSrc, "manifests"),
    			}
    			if tc.userManaged {
    				opts.UserManaged = true
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 17:43:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top