Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 633 for Herting (0.17 sec)

  1. pkg/controller/volume/persistentvolume/testing/testing.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package testing
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"reflect"
    	"strconv"
    	"sync"
    
    	"github.com/google/go-cmp/cmp"
    	"k8s.io/klog/v2"
    
    	v1 "k8s.io/api/core/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  2. src/go/doc/testdata/testing.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package testing provides support for automated testing of Go packages.
    // It is intended to be used in concert with the “go test” utility, which automates
    // execution of any function of the form
    //     func TestXxx(*testing.T)
    // where Xxx can be any alphanumeric string (but the first letter must not be in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  3. docs/ru/docs/tutorial/testing.md

    Nils Lindemann <******@****.***> 1713469999 +0200
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    	// if Listener is set, use it and omit BindAddress/BindPort/BindNetwork.
    	Listener net.Listener
    
    	// ServerCert is the TLS cert info for serving secure traffic
    	ServerCert GeneratableKeyCert
    	// SNICertKeys are named CertKeys for serving secure traffic with SNI support.
    	SNICertKeys []cliflag.NamedCertKey
    	// CipherSuites is the list of allowed cipher suites for the server.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (1)
  5. platforms/documentation/docs/src/docs/userguide/img/testing-pyramid.png

    testing-pyramid.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  6. pkg/kubelet/metrics/collectors/resource_metrics_test.go

    package collectors
    
    import (
    	"context"
    	"fmt"
    	"strings"
    	"testing"
    	"time"
    
    	"go.uber.org/mock/gomock"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/component-base/metrics/testutil"
    	statsapi "k8s.io/kubelet/pkg/apis/stats/v1alpha1"
    	summaryprovidertest "k8s.io/kubernetes/pkg/kubelet/server/stats/testing"
    )
    
    func TestCollectResourceMetrics(t *testing.T) {
    	// a static timestamp: 2021-06-23 05:11:18.302091597 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 15.3K bytes
    - Viewed (1)
  7. pkg/kubelet/kubelet_node_status.go

    	// the correct value of the annotation.
    	if !newSet {
    		klog.InfoS("Controller attach-detach setting changed to false; updating existing Node")
    		delete(existingNode.Annotations, volutil.ControllerManagedAttachAnnotation)
    	} else {
    		klog.InfoS("Controller attach-detach setting changed to true; updating existing Node")
    		if existingNode.Annotations == nil {
    			existingNode.Annotations = make(map[string]string)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectCollectionExtensionsTest.kt

            }
        }
    
        @Test
        fun `can access named element by getting`() {
    
            val element = DomainObject()
            val container = mock<NamedDomainObjectContainer<DomainObject>> {
                on { getByName("domainObject") } doReturn element
            }
    
            container {
                // invoke syntax
                val domainObject by getting
                inOrder(container) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  9. pkg/controller/volume/expand/expand_controller.go

    	if errors.IsNotFound(err) {
    		return nil
    	}
    	logger := klog.FromContext(ctx)
    	if err != nil {
    		logger.V(5).Info("Error getting PVC from informer", "pvcKey", key, "err", err)
    		return err
    	}
    
    	pv, err := expc.getPersistentVolume(ctx, pvc)
    	if err != nil {
    		logger.V(5).Info("Error getting Persistent Volume for PVC from informer", "pvcKey", key, "pvcUID", pvc.UID, "err", err)
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/TaskContainerDslIntegrationTest.kt

                "delegated-properties", before = beforeDelegatedProperties,
                script = """
    
                fun untyped() {
    
                    val foo: Task by tasks.getting
                    val bar: Task by tasks.getting {
                        description += "B"
                    }
    
                    val bazar: Task by tasks.creating
                    val castle: Task by tasks.creating {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:27 UTC 2023
    - 15K bytes
    - Viewed (0)
Back to top