Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 587 for corerest (0.15 sec)

  1. pkg/controller/volume/attachdetach/statusupdater/node_status_updater_test.go

    // calls UpdateNodeStatuses()
    // check that asw.GetVolumesToReportAttached reports nothing left to attach
    // checks that each node status.volumesAttached is of length 1 and contains the correct volume
    func TestNodeStatusUpdater_UpdateNodeStatuses_TwoNodesUpdate(t *testing.T) {
    	ctx := context.Background()
    	logger := klog.FromContext(ctx)
    	asw, fakeKubeClient, nsu := setupNodeStatusUpdate(logger, t)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  2. test/fixedbugs/issue20415.go

    // errorcheck
    
    // Copyright 2017 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.
    
    // Make sure redeclaration errors report correct position.
    
    package p
    
    // 1
    var f byte
    
    var f interface{} // ERROR "issue20415.go:12: previous declaration|redefinition|f redeclared"
    
    func _(f int) {
    }
    
    // 2
    var g byte
    
    func _(g int) {
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 22 17:50:13 UTC 2020
    - 638 bytes
    - Viewed (0)
  3. test/fixedbugs/issue19028.go

    // rundir
    
    // Copyright 2017 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.
    
    // This test failed when the compiler didn't use the
    // correct code to identify the type reflect.Method.
    // The failing code relied on Type.String() which had
    // formatting that depended on whether a package (in
    // this case "reflect") was imported more than once.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 21:57:56 UTC 2017
    - 454 bytes
    - Viewed (0)
  4. platforms/jvm/jacoco/src/test/groovy/org/gradle/testing/jacoco/plugins/JacocoTaskExtensionSpec.groovy

        @Rule final TestNameTestDirectoryProvider temporaryFolder = new TestNameTestDirectoryProvider(getClass())
    
        def 'asJvmArg with default arguments assembles correct string'() {
            setup:
            agent.supportsJmx() >> true
            agent.supportsInclNoLocationClasses() >> true
            agent.jar >> temporaryFolder.file('fakeagent.jar')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. docs/en/docs/advanced/security/http-basic-auth.md

    Of course, the attackers would not try all this by hand, they would write a program to do it, possibly with thousands or millions of tests per second. And would get just one extra correct letter at a time.
    
    But doing that, in some minutes or hours the attackers would have guessed the correct username and password, with the "help" of our application, just using the time taken to answer.
    
    #### Fix it with `secrets.compare_digest()`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 14:33:05 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/env_cross_build.txt

    # Test that the correct default GOEXPERIMENT is used when cross
    # building with GOENV (#46815).
    
    # Unset variables set by the TestScript harness. Users typically won't
    # explicitly configure these, and #46815 doesn't repro if they are.
    env GOOS=
    env GOARCH=
    env GOEXPERIMENT=
    
    env GOENV=windows-amd64
    go build internal/abi
    
    env GOENV=ios-arm64
    go build internal/abi
    
    env GOENV=linux-mips
    go build internal/abi
    
    -- windows-amd64 --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 537 bytes
    - Viewed (0)
  7. test/fixedbugs/issue8836.go

    // errorcheck
    
    // Copyright 2015 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.
    
    // Checking that line number is correct in error message.
    
    package main
    
    type Cint int
    
    func foobar(*Cint, Cint, Cint, *Cint)
    
    func main() {
    	a := Cint(1)
    
    	foobar(
    		&a,
    		0,
    		0,
    		42, // ERROR ".*"
    	)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 381 bytes
    - Viewed (0)
  8. tensorflow/c/experimental/grappler/BUILD

        srcs = ["grappler_test.cc"],
        deps = [
            ":grappler",
            "//tensorflow/c:c_api_internal",
            "//tensorflow/c:tf_buffer_internal",
            "//tensorflow/core:framework",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "//tensorflow/core/grappler:grappler_item",
            "//tensorflow/core/grappler/clusters:single_machine",
            "//tensorflow/core/grappler/costs:graph_properties",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. test/fixedbugs/issue20602.go

    // errorcheck
    
    // Copyright 2017 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.
    
    // Verify that the correct (not implicitly dereferenced)
    // type is reported in the error message.
    
    package p
    
    var p = &[1]complex128{0}
    var _ = real(p)  // ERROR "type \*\[1\]complex128|argument must have complex type"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 14 17:37:52 UTC 2020
    - 478 bytes
    - Viewed (0)
  10. test/fixedbugs/issue13415.go

    // Copyright 2015 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.
    
    // Verify that error message regarding := appears on
    // correct line (and not on the line of the 2nd :=).
    
    package p
    
    func f() {
        select {
        case x, x := <-func() chan int { // ERROR "x repeated on left side of :=|redefinition|declared and not used"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 21:10:19 UTC 2022
    - 500 bytes
    - Viewed (0)
Back to top