Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 111 for Herting (0.12 sec)

  1. src/testing/testing.go

    //
    // # Fuzzing
    //
    // 'go test' and the testing package support fuzzing, a testing technique where
    // a function is called with randomly generated inputs to find bugs not
    // anticipated by unit tests.
    //
    // Functions of the form
    //
    //	func FuzzXxx(*testing.F)
    //
    // are considered fuzz tests.
    //
    // For example:
    //
    //	func FuzzHex(f *testing.F) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  2. pkg/volume/testing/testing.go

    limitations under the License.
    */
    
    package testing
    
    import (
    	"fmt"
    	"os"
    	"path/filepath"
    	goruntime "runtime"
    	"strings"
    	"sync"
    	"testing"
    	"time"
    
    	"k8s.io/klog/v2"
    
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/utils/exec"
    	testingexec "k8s.io/utils/exec/testing"
    	utilstrings "k8s.io/utils/strings"
    
    	v1 "k8s.io/api/core/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    // same fields and the latter one will override the former one. If you don't
    // want that happen, you need to run func MergingMapsHaveConflicts before
    // merging these patches. Applying the resulting merged merge patch to a JSONMap
    // yields the same as merging each strategic merge patch to the JSONMap in
    // succession.
    func MergeStrategicMergeMapPatchUsingLookupPatchMeta(schema LookupPatchMeta, patches ...JSONMap) (JSONMap, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

    import os
    import re
    from typing import Mapping, Optional, Sequence
    
    from absl.testing import parameterized
    import numpy as np
    
    from google.protobuf import text_format
    from tensorflow.compiler.mlir.quantization.common.python import testing
    from tensorflow.compiler.mlir.quantization.stablehlo import quantization_config_pb2 as qc
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            "getOrNull" | _
            "getOrElse" | _
        }
    
        def "runs side effect when getting #description"() {
            def valueSideEffect = Mock(ValueSupplier.SideEffect)
    
            when:
            property.put("some key", Providers.of("some value").withSideEffect(valueSideEffect))
            def valueProvider = property.getting(key)
            then:
            0 * _ // no side effects until values are unpacked
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  6. docs/bucket/notifications/README.md

    MINIO_NOTIFY_AMQP_COMMENT        (sentence)  optionally add a comment to this setting
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

            then:
            1 * service3.close()
        }
    
        def "cannot add provider after getting a service via class"() {
            when:
            registry.get(Integer)
            registry.addProvider(new TestProvider())
    
            then:
            thrown IllegalStateException
        }
    
        def "cannot add provider after getting a service via type"() {
            when:
            registry.get(Integer as Type)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  8. pkg/controller/cronjob/cronjob_controllerv2_test.go

    			}
    		})
    	}
    }
    
    func TestControllerV2GetJobsToBeReconciled(t *testing.T) {
    	trueRef := true
    	tests := []struct {
    		name     string
    		cronJob  *batchv1.CronJob
    		jobs     []runtime.Object
    		expected []*batchv1.Job
    	}{
    		{
    			name:    "test getting jobs in namespace without controller reference",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // mutually exclusive properties. If one is set, the other must be unset.
      //
      // A single parameter used for all admission requests can be configured
      // by setting the `name` field, leaving `selector` blank, and setting namespace
      // if `paramKind` is namespace-scoped.
      optional string name = 1;
    
      // namespace is the namespace of the referenced resource. Allows limiting
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. pkg/kubelet/nodestatus/setters_test.go

    			kubeProxyVersion: true,
    		},
    		{
    			desc:             "error getting version info",
    			node:             &v1.Node{},
    			versionInfoError: fmt.Errorf("foo"),
    			expectNode:       &v1.Node{},
    			expectError:      fmt.Errorf("error getting version info: foo"),
    			kubeProxyVersion: true,
    		},
    		{
    			desc:                "error getting runtime version results in Unknown runtime",
    			node:                &v1.Node{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top