Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,485 for corerest (0.15 sec)

  1. doc/next/6-stdlib/99-minor/crypto/x509/45990.md

    [CreateCertificateRequest] now correct supports RSA-PSS signature algorithms.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 317 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/tests/analysis/BUILD

            "//tensorflow/compiler/mlir/tfrt/ir:tfrt_fallback_async_opdefs",
            "//tensorflow/compiler/mlir/tfrt/ir:tfrt_fallback_sync_opdefs",
            "//tensorflow/core:test",
            "//tensorflow/core/platform:resource_loader",
            "//tensorflow/core/tfrt/fallback:cost_recorder",
            "@com_google_absl//absl/container:flat_hash_map",
            "@com_google_googletest//:gtest_main",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. cmd/kube-scheduler/app/options/configfile_test.go

    	apiVersionTooOld  = "no kind \"KubeSchedulerConfiguration\" is registered for" +
    		" version \"kubescheduler.config.k8s.io/v1alpha1\""
    
    	// schedulerConfigMinimalCorrect is the minimal
    	// correct scheduler config
    	schedulerConfigMinimalCorrect = `
    apiVersion: kubescheduler.config.k8s.io/v1
    kind: KubeSchedulerConfiguration`
    
    	// schedulerConfigDecodeErr is the scheduler config
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 22 13:43:42 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. src/internal/trace/internal/testgen/go122/trace.go

    // Trace represents an execution trace for testing.
    //
    // It does a little bit of work to ensure that the produced trace is valid,
    // just for convenience. It mainly tracks batches and batch sizes (so they're
    // trivially correct), tracks strings and stacks, and makes sure emitted string
    // and stack batches are valid. That last part can be controlled by a few options.
    //
    // Otherwise, it performs no validation on the trace at all.
    type Trace struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top