Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 246 for deflate (0.12 sec)

  1. guava/src/com/google/common/io/Closer.java

       * IOException}, {@code RuntimeException} or {@code Error}. Otherwise, it will be rethrown wrapped
       * in a {@code RuntimeException}. <b>Note:</b> Be sure to declare all of the checked exception
       * types your try block can throw when calling an overload of this method so as to avoid losing
       * the original exception type.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. src/go/types/stmt.go

    			if ident, _ := lhs.(*identType); ident != nil {
    				// declare new variable
    				name := identName(ident)
    				obj = NewVar(ident.Pos(), check.pkg, name, nil)
    				check.recordDef(ident, obj)
    				// _ variables don't count as new variables
    				if name != "_" {
    					vars = append(vars, obj)
    				}
    			} else {
    				check.errorf(lhs, InvalidSyntaxTree, "cannot declare %s", lhs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/single_versions.adoc

    ** These special values are **NOT case sensitive**, as opposed to regular string parts and they do not depend on the separator used around them: `1.0-RC-1` == `1.0.rc.1`
    
    == Simple version declaration semantics
    
    When you declare a version using the short-hand notation, for example:
    
    .A simple declaration
    ====
    include::sample[dir="snippets/dependencyManagement/declaringDependencies-concreteVersion/kotlin",files="build.gradle.kts[tags=required-version]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:46:26 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/decl.go

    			check.processDelayed(top)
    
    			// declare all variables
    			// (only at this point are the variable scopes (parents) set)
    			scopePos := syntax.EndPos(s) // see constant declarations
    			for i, name := range s.NameList {
    				// see constant declarations
    				check.declare(check.scope, name, lhs0[i], scopePos)
    			}
    
    		case *syntax.TypeDecl:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  5. fess-crawler-lasta/pom.xml

    		</dependency>
    		<dependency>
    			<groupId>junit</groupId>
    			<artifactId>junit</artifactId>
    			<version>${junit.version}</version>
    			<scope>test</scope>
    		</dependency>
    		<dependency>
    			<groupId>org.dbflute.utflute</groupId>
    			<artifactId>utflute-lasta-di</artifactId>
    			<version>${utflute.version}</version>
    			<scope>test</scope>
    		</dependency>
    		<dependency>
    			<groupId>org.mortbay.jetty</groupId>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 30 06:32:24 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart2IntegrationTest.groovy

                details == 'If you don\'t declare the normalization, outputs can\'t be re-used between machines or locations on the same machine, therefore caching efficiency drops significantly'
                solutions == [ 'Declare the normalization strategy by annotating the property with either @PathSensitive, @Classpath or @CompileClasspath' ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/test_kit.adoc

    .Declaring the TestKit dependency
    ====
    include::sample[dir="snippets/testKit/junitQuickstart/kotlin",files="build.gradle.kts[tags=declare-gradle-testkit-dependency]"]
    include::sample[dir="snippets/testKit/junitQuickstart/groovy",files="build.gradle[tags=declare-gradle-testkit-dependency]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/jvm_test_suite_plugin.adoc

    <3> Declare this test suite uses JUnit Jupiter.  The framework's dependencies are automatically included.  It is always necessary to explicitly configure the built-in `test` suite even if JUnit4 is desired.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 14:47:11 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/stmt.go

    			if ident, _ := lhs.(*identType); ident != nil {
    				// declare new variable
    				name := identName(ident)
    				obj = NewVar(ident.Pos(), check.pkg, name, nil)
    				check.recordDef(ident, obj)
    				// _ variables don't count as new variables
    				if name != "_" {
    					vars = append(vars, obj)
    				}
    			} else {
    				check.errorf(lhs, InvalidSyntaxTree, "cannot declare %s", lhs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/sql-databases.md

    Notice that SQLAlchemy *models* define attributes using `=`, and pass the type as a parameter to `Column`, like in:
    
    ```Python
    name = Column(String)
    ```
    
    while Pydantic *models* declare the types using `:`, the new type annotation syntax/type hints:
    
    ```Python
    name: str
    ```
    
    Keep these in mind, so you don't get confused when using `=` and `:` with them.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 29.6K bytes
    - Viewed (0)
Back to top