Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,559 for necessarily (0.17 sec)

  1. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/settings.gradle

    // This is an empty umbrella build including all the component builds.
    // This build is not necessarily needed. The component builds work independently.
    
    includeBuild('platforms')
    includeBuild('build-logic')
    
    includeBuild('aggregation')
    
    includeBuild('user-feature')
    includeBuild('admin-feature')
    
    includeBuild('server-application')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 361 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/settings.gradle.kts

    // This is an empty umbrella build including all the component builds.
    // This build is not necessarily needed. The component builds work independently.
    
    includeBuild("platforms")
    includeBuild("build-logic")
    
    includeBuild("aggregation")
    
    includeBuild("user-feature")
    includeBuild("admin-feature")
    
    includeBuild("server-application")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 361 bytes
    - Viewed (0)
  3. platforms/software/resources/src/main/java/org/gradle/internal/resource/ResourceLocation.java

         */
        String getDisplayName();
    
        /**
         * Returns a file representing the location of the resource. Not all resources are available as a file.
         * Note that the file returned by this method may not necessarily have the same contents as the resource. For example, the file may be compressed,
         * contain text encoded with a different encoding or represent a directory.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. docs/en/docs/advanced/security/index.md

    There are some extra features to handle security apart from the ones covered in the [Tutorial - User Guide: Security](../../tutorial/security/index.md){.internal-link target=_blank}.
    
    !!! tip
        The next sections are **not necessarily "advanced"**.
    
        And it's possible that for your use case, the solution is in one of them.
    
    ## Read the Tutorial first
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 633 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/gccgo_m.txt

    # It's absurd, but builds with -compiler=gccgo used to fail to build module m.
    # golang.org/issue/34358
    
    env GO111MODULE=off
    
    [short] skip
    [cross] skip # gccgo can't necessarily cross-compile
    
    cd m
    go build
    exists m$GOEXE
    rm m$GOEXE
    [exec:gccgo] go build -compiler=gccgo
    [exec:gccgo] exists m$GOEXE
    
    -- m/go.mod --
    module m
    -- m/main.go --
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 14:52:30 UTC 2022
    - 368 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/gccgo_link_c.txt

    # Issue #7573
    # cmd/cgo: undefined reference when linking a C-library using gccgo
    
    [!cgo] skip
    [!exec:gccgo] skip
    [cross] skip  # gccgo can't necessarily cross-compile, so don't assume it will reach the step where we expect it to fail
    
    ! go build -x -compiler gccgo
    stderr 'gccgo.*\-L [^ ]*alibpath \-lalib' # make sure that Go-inline "#cgo LDFLAGS:" ("-L alibpath -lalib") passed to gccgo linking stage
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:38:51 UTC 2023
    - 617 bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/caching/CachingRuleExecutor.java

     * and configuring a rule. From a user point of view, a rule works on a {@link DETAILS} instance,
     * which is often, but not necessarily, a builder. A {@link DETAILS} can mutate an existing object,
     * for example. This means that the result of executing the rule is not necessarily the same as the
     * details object. It must be possible for the consumer (the object which executes the rule) to reproduce
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/Encoder.java

         */
        void encodeChunked(EncodeAction<Encoder> writeAction) throws Exception;
    
        /**
         * Writes a signed 64 bit long value. The implementation may encode the value as a variable number of bytes, not necessarily as 8 bytes.
         */
        void writeLong(long value) throws IOException;
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. platforms/software/resources/src/main/java/org/gradle/internal/resource/ExternalResourceWriteResult.java

        public ExternalResourceWriteResult(long bytesWritten) {
            this.bytesWritten = bytesWritten;
        }
    
        /**
         * The number of content bytes written. This is not necessarily the same as the number of bytes transferred.
         */
        long getBytesWritten() {
            return bytesWritten;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/ComponentWithLinkFile.java

     *
     * @since 4.5
     */
    public interface ComponentWithLinkFile extends ComponentWithNativeRuntime {
        /**
         * Returns the task that should be run to produce the link file of this component. This isn't necessarily the link task for the component.
         *
         * @since 5.1
         */
        Provider<? extends Task> getLinkFileProducer();
    
        /**
         * Returns the link file of this component.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top