Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 998 for deflate (0.12 sec)

  1. src/go/parser/resolver.go

    					ast.Walk(r, spec.Type)
    				}
    				r.declare(spec, i, r.topScope, kind, spec.Names...)
    			}
    		case token.TYPE:
    			for _, spec := range n.Specs {
    				spec := spec.(*ast.TypeSpec)
    				// Go spec: The scope of a type identifier declared inside a function begins
    				// at the identifier in the TypeSpec and ends at the end of the innermost
    				// containing block.
    				r.declare(spec, nil, r.topScope, ast.Typ, spec.Name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  2. docs/pt/docs/tutorial/header-params.md

        {!> ../../../docs_src/header_params/tutorial001_py310.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="3"
        {!> ../../../docs_src/header_params/tutorial001.py!}
        ```
    
    ## Declare parâmetros de `Header`
    
    Então declare os paramêtros de cabeçalho usando a mesma estrutura que em `Path`, `Query` e `Cookie`.
    
    O primeiro valor é o valor padrão, você pode passar todas as validações adicionais ou parâmetros de anotação:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/path-params.md

    # Path Parameters
    
    You can declare path "parameters" or "variables" with the same syntax used by Python format strings:
    
    ```Python hl_lines="6-7"
    {!../../../docs_src/path_params/tutorial001.py!}
    ```
    
    The value of the path parameter `item_id` will be passed to your function as the argument `item_id`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/plugins/jvm/internal/JvmFeatureInternal.java

         * relevant for single-target features.
         *
         * @return This feature's source set.
         */
        SourceSet getSourceSet();
    
        /**
         * Gets the dependency configuration for which to declare dependencies internal to the feature.
         * Dependencies declared on this configuration are present during compilation and runtime, but are not
         * exposed as part of the feature's API variant.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/validation/GradleMetadataValidationResolveIntegrationTest.groovy

            fails ":checkDeps"
            failure.assertHasCause("missing 'url' at /variants[0]/files[0]")
        }
    
        @Issue("gradle/gradle#7888")
        def "fails with reasonable error message if Gradle Module Metadata doesn't declare any variant"() {
            buildFile << """
                dependencies {
                    conf 'org.test:projectA:1.1'
                }
            """
    
            when:
            repository {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/DependencyManagementIntegrationTest.kt

    import org.hamcrest.MatcherAssert.assertThat
    import org.junit.Test
    import spock.lang.Issue
    
    
    class DependencyManagementIntegrationTest : AbstractKotlinIntegrationTest() {
    
        @Test
        fun `declare dependency constraints`() {
    
            withFile("repo/in-block/accessor-1.0.jar")
            withFile("repo/in-block/accessor-with-action-1.0.jar")
            withFile("repo/in-block/string-invoke-1.0.jar")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 06:41:25 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/user/exbhv/RoleBhv.java

    import org.codelibs.core.misc.Pair;
    import org.codelibs.fess.es.user.bsbhv.BsRoleBhv;
    import org.codelibs.fess.es.user.exentity.Role;
    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.exception.IllegalBehaviorStateException;
    import org.dbflute.util.DfTypeUtil;
    
    /**
     * @author FreeGen
     */
    public class RoleBhv extends BsRoleBhv {
        private String indexName = null;
    
        @Override
        protected String asEsIndex() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/LabelTypeService.java

    import org.codelibs.fess.helper.LabelTypeHelper;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.cbean.result.PagingResultBean;
    import org.dbflute.optional.OptionalEntity;
    
    public class LabelTypeService extends FessAppService {
    
        @Resource
        protected LabelTypeBhv labelTypeBhv;
    
        @Resource
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/init_scripts.adoc

    ====
    
    The closure passed to the `initscript()` method configures a link:{javadocPath}/org/gradle/api/initialization/dsl/ScriptHandler.html[ScriptHandler] instance.
    You declare the init script classpath by adding dependencies to the `classpath` configuration.
    
    This is the same way you declare, for example, the Java compilation classpath.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/extra-models.md

    We could do better.
    
    We can declare a `UserBase` model that serves as a base for our other models. And then we can make subclasses of that model that inherit its attributes (type declarations, validation, etc).
    
    All the data conversion, validation, documentation, etc. will still work as normally.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top