Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 388 for exploded (0.11 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/exploded-war-child-copy-spec-example.graffle

    exploded-war-child-copy-spec-example.graffle ApplicationVersionco.omnigroup.OmniGraffle7.MacAppStore186.3ColorProfilesdataAA/gAAAAUbWVhcwAABAwAAA+wEBAQcBDQETARkBHwElA+gIDAgwCFAIdAiYCLwI4A+wD+QQGBBMEIAQtBDsESARVB+BIwEmgSoBLYExATTBOEE+BQ0FHAUrBToFSQVYBWcF/B9IH5Qf4CAsIHwgyCEYI+EL+QwSDCoMQwxcDHUMjgynD/DpsOtg7SDu4PCQ8lD0EP/PD+wQCRAmEEMQYRB+EJsQuRDXEPURExExEU8R+UUBhQnFEkUahSLFK0Uzh/cYGxhAGGUYihivGNUY+hkgGUUZaxmRGbcZ3RoEG+HukfEx8+H2kflB+/H+ogFSBBIGwgmCDEIPAhHC/HL/4wNTBsMKQw2zESMUoxgj/E0KzRlNJ402DUTN...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/customModel/languageType/groovy/buildSrc/src/main/groovy/sample/documentation/DocumentationPlugin.groovy

    // tag::binaries-generation[]
        @ComponentBinaries
        void generateDocBinaries(ModelMap<DocumentationBinary> binaries, VariantComponentSpec component, @Path("buildDir") File buildDir) {
            binaries.create("exploded") { binary ->
                outputDir = new File(buildDir, "${component.name}/${binary.name}")
            }
        }
    // end::binaries-generation[]
    
    // tag::text-tasks-generation[]
        @BinaryTasks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/LanguageTypeSampleIntegrationTest.groovy

            then:
            result.ignoreBuildSrc.assertTasksExecuted(":compileDocsExplodedReference", ":compileDocsExplodedUserguide", ":docsExploded", ":assemble")
    
            and:
            languageTypeSample.dir.file("build/docs/exploded").assertHasDescendants(
                    "reference/README.txt",
                    "userguide/chapter1.html",
                    "userguide/chapter2.html",
                    "userguide/index.html")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/caching_java_projects.adoc

    This is because, as described in <<build_cache_concepts.adoc#concepts_repeatable_task_outputs,repeatable task outputs>>, rebuilding an archive often changes the metadata in the archive.
    You can depend on the exploded contents of the archive instead.
    See also the section on dealing with <<common_caching_problems.adoc#volatile_outputs,non-repeatable outputs>>.
    
    === Dealing with file paths
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  5. hack/verify-flags/excluded-flags.txt

    Vadim Rutkovsky <******@****.***> 1671109648 +0100
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 11 09:42:14 UTC 2023
    - 379 bytes
    - Viewed (0)
  6. docs/compression/README.md

     | `application/x-xz`       |
    
    All files with these extensions and mime types are excluded from compression,
    even if compression is enabled for all types.
    
    ## To test the setup
    
    To test this setup, practice put calls to the server using `mc` and use `mc ls` on
    the data directory to view the size of the object.
    
    ## Explore Further
    
    - [Use `mc` with MinIO Server](https://min.io/docs/minio/linux/reference/minio-mc.html)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 11 11:55:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. test/typeparam/issue51236.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    type I interface {
    	[]byte
    }
    
    func F[T I]() {
    	var t T
    	explodes(t)
    }
    
    func explodes(b []byte) {}
    
    func main() {
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 298 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_require_exclude.txt

    go mod edit -go=1.13
    cmp go.mod go.mod.orig
    
    
    # With the selected version excluded, commands that load only modules should
    # drop the excluded module.
    
    go list -m -mod=mod all
    stderr '^go: dropping requirement on excluded version rsc.io/sampler v1\.99\.99$'
    stdout '^x$'
    ! stdout '^rsc.io/sampler'
    cmp go.mod go.moddrop
    
    # With the latest version excluded, 'go list' should resolve needed packages
    # from the next-highest version.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 14 15:02:11 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  9. tools/packaging/common/sidecar.env

    # If not set, no rules will be enabled
    # ISTIO_INBOUND_PORTS=
    
    # List of ports to exclude from inbound interception, if ISTIO_INBOUND_PORTS is set to *
    # Port 22 is automatically excluded
    # ISTIO_INBOUND_EXCLUDE_PORTS=
    
    # Namespace of the cluster.
    # ISTIO_NAMESPACE=default
    
    # Specify the IP address used in endpoints. If not set, 'hostname --ip-address' will be used.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 18:02:42 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/FilteredMinimalFileTreeTest.groovy

            def spec = Mock(Spec)
            def included = Stub(FileVisitDetails)
            def excluded = Stub(FileVisitDetails)
            def visitor = Mock(FileVisitor)
    
            when:
            tree.visit(visitor)
    
            then:
            _ * patterns.asSpec >> spec
            1 * spec.isSatisfiedBy(included) >> true
            1 * spec.isSatisfiedBy(excluded) >> false
            1 * source.visit(_) >> { FileVisitor nestedVisitor ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top