Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 124 for measure (0.15 sec)

  1. pilot/pkg/config/kube/gateway/conversion.go

    		}
    		for _, gw := range gateways[gk] {
    			// Append all matches. Note we may be adding mismatch section or ports; this is handled later
    			appendParent(gw, pk)
    		}
    	}
    	// Ensure stable order
    	slices.SortBy(parentRefs, func(a routeParentReference) string {
    		return parentRefString(a.OriginalReference)
    	})
    	return parentRefs
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/sidecar_simulation_test.go

    				// The wildcard
    				"*.cluster.local": {"outbound|80||arbitrary.example.com"},
    			},
    		},
    		{
    			name: "wildcard first then explicit (oldest wins feature flag)",
    			cfg: []Configer{
    				vsArgs{
    					Namespace: "default",
    					Match:     "*.cluster.local",
    					Dest:      "wild.example.com",
    					Time:      TimeOlder,
    				},
    				vsArgs{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. cmd/object-api-listobjects_test.go

    			}
    		})
    	}
    }
    
    // Wrapper for calling ListObjectsOnVersionedBuckets tests for both
    // Erasure multiple disks and single node setup.
    func TestListObjectsOnVersionedBuckets(t *testing.T) {
    	ExecObjectLayerTest(t, testListObjectsOnVersionedBuckets)
    }
    
    // Wrapper for calling ListObjects tests for both Erasure multiple
    // disks and single node setup.
    func TestListObjects(t *testing.T) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  4. src/net/http/request.go

    }
    
    var (
    	// ErrNotSupported indicates that a feature is not supported.
    	//
    	// It is returned by ResponseController methods to indicate that
    	// the handler does not support the method, and by the Push method
    	// of Pusher implementations to indicate that HTTP/2 Push support
    	// is not available.
    	ErrNotSupported = &ProtocolError{"feature not supported"}
    
    	// Deprecated: ErrUnexpectedTrailer is no longer returned by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	}
    
    	watchCtx, watchCancel := context.WithTimeout(context.Background(), 250*time.Millisecond)
    	defer watchCancel()
    
    	_, err = cacher.Watch(watchCtx, "/pods/ns", opts)
    	if err != nil && apierrors.IsTooManyRequests(err) {
    		t.Errorf("Unexpected 429 error without ResilientWatchCacheInitialization feature for Watch")
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  6. plugin/pkg/admission/resourcequota/admission_test.go

    	}
    	if newPod.Namespace != namespace {
    		t.Errorf("Got unexpected pod namespace: %q != %q", newPod.Namespace, namespace)
    	}
    }
    
    // TestAdmitRejectsNegativeUsage verifies that usage for any measured resource cannot be negative.
    func TestAdmitRejectsNegativeUsage(t *testing.T) {
    	resourceQuota := &corev1.ResourceQuota{
    		ObjectMeta: metav1.ObjectMeta{Name: "quota", Namespace: "test", ResourceVersion: "124"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            1 * sideEffect1.execute("some value")
            then: // ensure ordering
            1 * sideEffect2.execute("other value")
            0 * _
    
            when:
            unpackedValue = executionTimeValue.toValue().get()
            then:
            unpackedValue == expectedUnpackedValue
            1 * sideEffect1.execute("some value")
            then: // ensure ordering
            1 * sideEffect2.execute("other value")
            0 * _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1/types.go

    	// Absolute number is calculated from percentage by rounding up. This can not be 0.
    	// Defaults to 1. This field is alpha-level and is only honored by servers that enable the
    	// MaxUnavailableStatefulSet feature. The field applies to all pods in the range 0 to
    	// Replicas-1. That means if there is any unavailable pod in the range 0 to Replicas-1, it
    	// will be counted towards MaxUnavailable.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  9. pkg/kubelet/nodestatus/setters_test.go

    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/util/rand"
    	"k8s.io/apimachinery/pkg/util/uuid"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	cloudprovider "k8s.io/cloud-provider"
    	fakecloud "k8s.io/cloud-provider/fake"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	"k8s.io/component-base/version"
    	"k8s.io/kubernetes/pkg/features"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/pv_controller.go

    // PV subsystem. During that effort, it became clear that we needed to ensure
    // that every single condition was handled and accounted for in the code, even
    // if it resulted in no-op code branches.
    //
    // As a result, the controller code may seem overly verbose, commented, and
    // 'branchy'. However, a large amount of business knowledge and context is
    // recorded here in order to ensure that future maintainers can correctly
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
Back to top