Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 112 for SIMPLE (0.19 sec)

  1. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    The following two sections look at the specific cases of simple class/method names and fully-qualified names.
    
    [[simple_name_pattern]]
    === Simple name pattern
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Gradle uses its own optimized serialization mechanism and format to store the configuration cache entries.
    It automatically serializes the state of arbitrary object graphs.
    If your tasks hold references to objects with simple state or of supported types you don't have anything to do to support the serialization.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  3. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/set-registration-initiation",
    				"application/sgml",
    				"application/sgml-open-catalog",
    				"application/shf+xml",
    				"application/sieve",
    				"application/simple-filter+xml",
    				"application/simple-message-summary",
    				"application/simplesymbolcontainer",
    				"application/slate",
    				"application/smil+xml",
    				"application/soap+fastinfoset",
    				"application/soap+xml",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  4. tests/integration/ambient/baseline_test.go

    					opt.Check = check.OK()
    				}
    			}
    			t.NewSubTest("simple deny").Run(func(t framework.TestContext) {
    				opt = opt.DeepCopy()
    				opt.HTTP.Path = "/deny"
    				opt.Check = CheckDeny
    				overrideCheck(&opt)
    				src.CallOrFail(t, opt)
    			})
    			t.NewSubTest("simple allow").Run(func(t framework.TestContext) {
    				opt = opt.DeepCopy()
    				opt.HTTP.Path = "/allowed"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            def sideEffect2 = Mock(ValueSupplier.SideEffect)
            def expectedUnpackedValue = ["some value", "simple value", "other value"]
    
            when:
            property.add(Providers.of("some value").withSideEffect(sideEffect1))
            property.add(Providers.of("simple value"))
            property.add(Providers.of("other value").withSideEffect(sideEffect2))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  6. docs/ru/docs/deployment/docker.md

    ![Swagger UI](https://fastapi.tiangolo.com/img/index/index-01-swagger-ui-simple.png)
    
    ## Альтернативная документация API
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  7. docs/bucket/notifications/README.md

    With the `mc` tool, the configuration is very simple to add. Let us say that the MinIO server is aliased as `myminio` in our mc configuration. Execute the following:
    
    ```
    mc mb myminio/images
    mc event add  myminio/images arn:minio:sqs::1:elasticsearch --suffix .jpg
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  8. src/html/template/exec_test.go

    	return &n
    }
    
    func newString(s string) *string {
    	return &s
    }
    
    func newIntSlice(n ...int) *[]int {
    	p := new([]int)
    	*p = make([]int, len(n))
    	copy(*p, n)
    	return p
    }
    
    // Simple methods with and without arguments.
    func (t *T) Method0() string {
    	return "M0"
    }
    
    func (t *T) Method1(a int) int {
    	return a
    }
    
    func (t *T) Method2(a uint16, b string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    [source,text]
    ----
    ❯ ./gradlew help --task test
    ...
    Type
         Test (org.gradle.api.tasks.testing.Test)
    ----
    
    Note that the IDE can assist you with the required imports, so you only need the simple names of the types, i.e. without the package name part.
    In this case, there's no need to import the `Test` task type as it is part of the Gradle API and is therefore <<kotlin_dsl#sec:implicit_imports,imported implicitly>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. src/regexp/syntax/parse.go

    	PerlX                           // allow Perl extensions
    	UnicodeGroups                   // allow \p{Han}, \P{Han} for Unicode group and negation
    	WasDollar                       // regexp OpEndText was $, not \z
    	Simple                          // regexp contains no counted repetition
    
    	MatchNL = ClassNL | DotNL
    
    	Perl        = ClassNL | OneLine | PerlX | UnicodeGroups // as close to Perl as possible
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top