Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 6,766 for depend (0.16 sec)

  1. src/syscall/badlinkname_unix.go

    // As of Go 1.22, the symbols below are found to be pulled via
    // linkname in the wild. We provide a push linkname here, to
    // keep them accessible with pull linknames.
    // This may change in the future. Please do not depend on them
    // in new code.
    
    // golang.org/x/sys linknames getsockopt.
    // Do not remove or change the type signature.
    //
    //go:linkname getsockopt
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 679 bytes
    - Viewed (0)
  2. pkg/api/testing/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package testing contains
    // - all generic API tests which depend on Kubernetes API types
    // - all cross-Kubernetes-API tests.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 11 14:04:50 UTC 2017
    - 716 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/list_std_vendor.txt

    # https://golang.org/issue/44725: packages in std should have the same
    # dependencies regardless of whether they are listed from within or outside
    # GOROOT/src.
    
    # Control case: net, viewed from outside the 'std' module,
    # should depend on vendor/golang.org/… instead of golang.org/….
    
    go list -deps net
    stdout '^vendor/golang.org/x/net'
    ! stdout '^golang.org/x/net'
    cp stdout $WORK/net-deps.txt
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 883 bytes
    - Viewed (0)
  4. platforms/software/test-suites-base/src/main/java/org/gradle/testing/base/TestingExtension.java

     *
     * @since 7.3
     */
    @Incubating
    public interface TestingExtension {
        /**
         * Available test suites in this project.
         *
         * The type of test suites available depend on which other plugins are applied.
         */
        ExtensiblePolymorphicDomainObjectContainer<TestSuite> getSuites();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 16:02:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/testdata/deadcode/structof_funcof.go

    // Copyright 2023 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.
    
    // Methods of reflect.rtype use StructOf and FuncOf which in turn depend on
    // reflect.Value.Method. StructOf and FuncOf must not disable the DCE.
    
    package main
    
    import "reflect"
    
    type S int
    
    func (s S) M() { println("S.M") }
    
    func (s S) N() { println("S.N") }
    
    type T float64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:07:26 UTC 2023
    - 994 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/cover_test_pkgselect.txt

    stdout 'coverage: 50.0% of statements in example/foo'
    
    # Try to ask for coverage of a package that doesn't exist.
    go test -coverpkg nonexistent example/bar
    stderr 'no packages being tested depend on matches for pattern nonexistent'
    stdout 'coverage: \[no statements\]'
    
    # Ask for foo coverage, but test bar.
    go test -coverpkg=example/foo example/bar
    stdout 'coverage: 50.0% of statements in example/foo'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:50:58 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  7. src/math/log10.go

    	if haveArchLog2 {
    		return archLog2(x)
    	}
    	return log2(x)
    }
    
    func log2(x float64) float64 {
    	frac, exp := Frexp(x)
    	// Make sure exact powers of two give an exact answer.
    	// Don't depend on Log(0.5)*(1/Ln2)+exp being exactly exp-1.
    	if frac == 0.5 {
    		return float64(exp - 1)
    	}
    	return Log(frac)*(1/Ln2) + float64(exp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 873 bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/execution/ReactorManager.java

        public static final String MAKE_MODE = "make";
    
        public static final String MAKE_DEPENDENTS_MODE = "make-dependents";
    
        // make projects that depend on me, and projects that I depend on
        public static final String MAKE_BOTH_MODE = "make-both";
    
        private List<String> blackList = new ArrayList<>();
    
        private Map<String, BuildFailure> buildFailuresByProject = new HashMap<>();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 06:02:04 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/daemon-protocol/build.gradle.kts

        api(project(":base-services"))
        api(project(":logging-api"))
        api(project(":serialization"))
        api(project(":logging"))
        api(project(":stdlib-java-extensions"))
    
        // The client should not depend on core or core-api, but core still contains some types that are shared between the client and daemon
        api(project(":core-api"))
        api(project(":core"))
    
        implementation(libs.guava)
        implementation(libs.slf4jApi)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/vcweb/insecure.go

    func (h *insecureHandler) Available() bool { return true }
    
    func (h *insecureHandler) Handler(dir string, env []string, logger *log.Logger) (http.Handler, error) {
    	// The insecure-redirect handler implementation doesn't depend or dir or env.
    	//
    	// The only effect of the directory is to determine which prefix the caller
    	// will strip from the request before passing it on to this handler.
    	return h, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:22:22 UTC 2022
    - 1.2K bytes
    - Viewed (0)
Back to top