Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 917 for checkDep (0.47 sec)

  1. docs/em/docs/advanced/advanced-dependencies.md

    {!../../../docs_src/dependencies/tutorial011.py!}
    ```
    
    & πŸ‘ˆ 🌌 πŸ‘₯ πŸ’ͺ "πŸ”—" πŸ‘† πŸ”—, πŸ‘ˆ πŸ”œ βœ”οΈ `"bar"` πŸ”˜ ⚫️, πŸ”’ `checker.fixed_content`.
    
    ## βš™οΈ πŸ‘ πŸ”—
    
    ‴️, πŸ‘₯ πŸ’ͺ βš™οΈ πŸ‘‰ `checker` `Depends(checker)`, ↩️ `Depends(FixedContentQueryChecker)`, ↩️ πŸ”— πŸ‘, `checker`, 🚫 πŸŽ“ ⚫️.
    
    & πŸ•β” ❎ πŸ”—, **FastAPI** πŸ”œ πŸ€™ πŸ‘‰ `checker` πŸ’–:
    
    ```Python
    checker(q="somequery")
    ```
    
    ...& πŸšΆβ€β™€οΈ βš«οΈβ” πŸ‘ˆ πŸ“¨ πŸ’² πŸ”— πŸ‘† *➑ πŸ› οΈ πŸ”’* πŸ”’ `fixed_content_included`:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Apr 01 09:26:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/checkstyle/CheckstylePluginHtmlReportIntegrationTest.groovy

            file("config/checkstyle/checkstyle.xml") << """
    <!DOCTYPE module PUBLIC
              "-//Checkstyle//DTD Checkstyle Configuration 1.3//EN"
              "https://checkstyle.org/dtds/configuration_1_3.dtd">
    <module name="Checker">
        <module name="TreeWalker">
            <module name="$nameOfCheck"/>
        </module>
    </module>
            """
        }
    
        private void goodCode() {
            file("src/main/java/com/example/Foo.java").java """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 16 22:34:07 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiModelChecker.groovy

                        assert actualValue instanceof Map
                        checkMap(actualValue, expectedValue, checker)
                    } else {
                        checker(actualValue, expectedValue)
                    }
                } else if (checker instanceof List) {
                    def subSpecs = checker as List
                    checkModel(actualValue, expectedValue, subSpecs)
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 10:26:50 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyHttpRepoResolveIntegrationTest.groovy

                }
                configurations { compile }
                dependencies { compile 'org.group.name:projectA:1.2' }
            """
            failedResolve.prepare()
    
            when:
    
            fails 'checkDeps'
            then:
            failedResolve.assertFailurePresent(failure)
            failure.assertHasCause("Could not resolve all files for configuration ':compile'.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  5. src/runtime/proc_runtime_test.go

    		}
    		for co := 0; co < len(ord.coprimes); co++ {
    			enum := ord.start(uint32(co))
    			checked := make([]bool, procs)
    			for p := 0; p < procs; p++ {
    				x := enum.position()
    				if checked[x] {
    					println("procs:", procs, "inc:", enum.inc)
    					panic("duplicate during enumeration")
    				}
    				checked[x] = true
    				enum.next()
    			}
    			if !enum.done() {
    				panic("not done")
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 18:43:08 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDescriptorResolveIntegrationTest.groovy

            when:
            run "checkDeps"
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    module("org.gradle:test:1.45") {
                        module("org.gradle.dep:dep_module:1.1")
                    }
                }
            }
    
            when:
            server.resetExpectations()
            run "checkDeps"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentMetadataRulesInSettingsIntegrationTest.groovy

                }
            """
    
            when:
            repositoryInteractions {
                'org:module:1.0' {
                    expectResolve()
                }
            }
            run ':checkDeps'
    
            then:
            outputContains 'Rule from settings applied on org:module:1.0'
        }
    
        def "can declare component metadata rules in settings using registar"() {
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/BadPomFileResolveIntegrationTest.groovy

                configurations { compile }
                dependencies {
                    compile "group:artifact:1.0"
                }
            """
            resolve.prepare()
    
            expect:
            succeeds ":checkDeps"
            resolve.expectGraph {
                root(":", ":test:") {
                    module("group:artifact:1.0")
                }
            }
        }
    
        def "reports POM that cannot be parsed"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 18:31:50 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/LoadingCache.java

       * new value.
       *
       * <p>If the cache loader associated with this cache is known not to throw checked exceptions,
       * then prefer {@link #getUnchecked} over this method.
       *
       * @throws ExecutionException if a checked exception was thrown while loading the value. ({@code
       *     ExecutionException} is thrown <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Aug 06 17:12:03 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/preflight/checks_linux.go

    	return validators
    }
    
    // addIPv6Checks adds IPv6 related checks
    func addIPv6Checks(checks []Checker) []Checker {
    	checks = append(checks,
    		FileContentCheck{Path: ipv6DefaultForwarding, Content: []byte{'1'}},
    	)
    	return checks
    }
    
    // addIPv4Checks adds IPv4 related checks
    func addIPv4Checks(checks []Checker) []Checker {
    	checks = append(checks,
    		FileContentCheck{Path: ipv4Forward, Content: []byte{'1'}})
    	return checks
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top