Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,912 for necessarily (0.32 sec)

  1. src/cmd/go/testdata/script/mod_get_nopkgs.txt

    cd subdir
    
    # 'go get' on empty patterns that are necessarily local to the module
    # should warn that the patterns are empty, exactly once.
    
    go get ./...
    stderr -count=1 'matched no packages'
    
    go get ./...
    stderr -count=1 'matched no packages'
    
    # 'go get' on patterns that could conceivably match nested modules
    # should report a module resolution error.
    
    go get example.net/emptysubdir/... # control case
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/link/internal/ld/testdata/deadcode/ifacemethod.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that a method of a reachable type is not necessarily
    // live even if it matches an interface method, as long as
    // the type is never converted to an interface.
    
    package main
    
    type I interface{ M() }
    
    type T int
    
    func (T) M() { println("XXX") }
    
    var p *T
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 28 21:30:01 UTC 2020
    - 765 bytes
    - Viewed (0)
  10. 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)
Back to top