Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,485 for corerest (0.31 sec)

  1. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceIntegrationTest.groovy

        }
    
        def "build does not leak credentials in cache URL"() {
            httpBuildCacheServer.withBasicAuth("correct-username", "correct-password")
            settingsFile << """
                buildCache {
                    remote.credentials {
                        username = "correct-username"
                        password = "correct-password"
                    }
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. src/go/build/testdata/doc/f.go

    // Correct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 07 14:35:52 UTC 2018
    - 23 bytes
    - Viewed (0)
  3. test/fixedbugs/bug120.go

    	// If "1e23+8388608" is implemented as "1e23" + "8388608",
    	// that ends up computing 1e23-8388608 + 8388608 = 1e23,
    	// which rounds back to 1e23-8388608.
    	// The correct answer, of course, would be "1e23+8388608" = 1e23+8388608.
    	// This is not going to be correct until 6g has multiprecision floating point.
    	// A simpler case is "1e23+1", which should also round to 1e23+8388608.
    	Test{1e23 + 8.388608e6, "1e23+8.388608e6", "1.0000000000000001e+23"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 1.8K bytes
    - Viewed (0)
  4. src/internal/coverage/decodemeta/decode.go

    		return err
    	}
    	if d.debug {
    		fmt.Fprintf(os.Stderr, "=-= after readHeader: %+v\n", d.hdr)
    	}
    	return nil
    }
    
    func (d *CoverageMetaDataDecoder) readStringTable() error {
    	// Seek to the correct location to read the string table.
    	stringTableLocation := int64(coverage.CovMetaHeaderSize + 4*d.hdr.NumFuncs)
    	if _, err := d.r.Seek(stringTableLocation, io.SeekStart); err != nil {
    		return err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:28 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. src/cmd/vet/README

    Correctness:
    
    Vet's checks are about correctness, not style. A vet check must identify real or
    potential bugs that could cause incorrect compilation or execution. A check that
    only identifies stylistic points or alternative correct approaches to a situation
    is not acceptable.
    
    Frequency:
    
    Vet is run every day by many programmers, often as part of every compilation or
    submission. The cost in execution time is considerable, especially in aggregate,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 04:15:59 UTC 2017
    - 1.6K bytes
    - Viewed (0)
  6. test/fixedbugs/issue15528.go

    func (x *RWS) String() string                                     { return "rws" }
    
    func makeRWS() io.ReadWriteSeeker { return &RWS{} }
    func makeStringer() fmt.Stringer  { return &RWS{} }
    
    // Test correct construction of static empty interface values
    var efaces = [...]struct {
    	x interface{}
    	s string
    }{
    	{nil, "<nil> <nil>"},
    	{1, "int 1"},
    	{int(1), "int 1"},
    	{Int(int(2)), "main.Int Int=2"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 12 14:31:26 UTC 2016
    - 3.1K bytes
    - Viewed (0)
  7. tensorflow/cc/tools/BUILD

            "//tensorflow/core:core_cpu",
            "//tensorflow/core:framework_internal",
            "//tensorflow/core:protos_all_cc",
            "//tensorflow/core:tensorflow",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "//tensorflow/core:testlib",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/ops/gen/common/BUILD

    tf_cc_tests(
        name = "all_tests",
        size = "small",
        srcs = glob(["*_test.cc"]),
        deps = [
            ":common",
            "//tensorflow/core:core_cpu",
            "//tensorflow/core:framework",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "//tensorflow/core:testlib",
            "//tensorflow/core/platform:types",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 30 18:35:29 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/BUILD

            ":calibration_statistics_collector_histogram",
            ":calibration_statistics_collector_min_max",
            ":calibration_statistics_proto_cc",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "@com_google_googletest//:gtest_main",
        ],
    )
    
    tf_kernel_library(
        name = "custom_aggregator_op",
        srcs = ["custom_aggregator_op.cc"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 01:31:23 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/tests/saved_model/BUILD

        tags = ["no_oss"],
        deps = [
            "//tensorflow/compiler/mlir/tensorflow",
            "//tensorflow/compiler/mlir/tfrt:import_model",
            "//tensorflow/compiler/mlir/tfrt:saved_model",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "//tensorflow/core/platform:resource_loader",
            "@com_google_absl//absl/strings",
            "@com_google_googletest//:gtest_main",
            "@llvm-project//mlir:IR",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 26 01:22:34 UTC 2023
    - 1011 bytes
    - Viewed (0)
Back to top