Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 207 for testLang (0.19 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    
    #if GTEST_HAS_DEATH_TEST
    
    const ::std::vector<testing::internal::string>& GetInjectableArgvs();
    void SetInjectableArgvs(const ::std::vector<testing::internal::string>*
                                 new_argvs);
    
    // A copy of all command line arguments.  Set by InitGoogleTest().
    extern ::std::vector<testing::internal::string> g_argvs;
    
    #endif  // GTEST_HAS_DEATH_TEST
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  2. pilot/pkg/security/authn/policy_applier_test.go

    		t.Run(c.name, func(t *testing.T) {
    			istiotest.SetForTest(t, &features.JwksFetchMode, c.jwksFetchMode)
    			if got := newPolicyApplier("root-namespace", c.in, nil, push).JwtFilter(false, false); !reflect.DeepEqual(c.expected, got) {
    				t.Errorf("got:\n%s\nwanted:\n%s", spew.Sdump(got), spew.Sdump(c.expected))
    			}
    		})
    	}
    }
    
    func TestConvertToEnvoyJwtConfig(t *testing.T) {
    	ms, err := test.StartNewServer()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 60.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    
    #if GTEST_HAS_DEATH_TEST
    
    const ::std::vector<testing::internal::string>& GetInjectableArgvs();
    void SetInjectableArgvs(const ::std::vector<testing::internal::string>*
                                 new_argvs);
    
    // A copy of all command line arguments.  Set by InitGoogleTest().
    extern ::std::vector<testing::internal::string> g_argvs;
    
    #endif  // GTEST_HAS_DEATH_TEST
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    import (
    	"context"
    	"fmt"
    	"reflect"
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/klog/v2/ktesting"
    	"k8s.io/kubernetes/pkg/scheduler/apis/config"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    	plugintesting "k8s.io/kubernetes/pkg/scheduler/framework/plugins/testing"
    	"k8s.io/kubernetes/pkg/scheduler/internal/cache"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/options/options_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package options
    
    import (
    	"fmt"
    	"reflect"
    	"sort"
    	"strings"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/spf13/pflag"
    
    	eventv1 "k8s.io/api/events/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	utilerrors "k8s.io/apimachinery/pkg/util/errors"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/httproute_test.go

    		assert.Equal(t, out, want)
    	}
    
    	for _, c := range cases {
    		c := c
    		t.Run(c.name, func(t *testing.T) {
    			test.SetForTest[bool](t, &features.EnableDualStack, c.enableDualStack)
    			testFn(t, c.service, c.port, c.node, c.want)
    		})
    	}
    }
    
    func TestSidecarOutboundHTTPRouteConfigWithDuplicateHosts(t *testing.T) {
    	virtualServiceSpec := &networking.VirtualService{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    func schemaChecker(schema *schema.Structural, expectedCost uint64, expectedCostExceedsLimit uint64, t *testing.T) func(t *testing.T) {
    	return func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  8. cmd/erasure-healing_test.go

    	"crypto/rand"
    	"crypto/sha256"
    	"errors"
    	"io"
    	"os"
    	"path"
    	"reflect"
    	"testing"
    	"time"
    
    	"github.com/dustin/go-humanize"
    	uuid2 "github.com/google/uuid"
    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/minio/internal/config/storageclass"
    )
    
    // Tests isObjectDangling function
    func TestIsObjectDangling(t *testing.T) {
    	fi := newFileInfo("test-object", 2, 2)
    	fi.Erasure.Index = 1
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
  9. pkg/apis/autoscaling/validation/validation_test.go

    limitations under the License.
    */
    
    package validation
    
    import (
    	"strings"
    	"testing"
    
    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	"k8s.io/kubernetes/pkg/apis/autoscaling"
    	api "k8s.io/kubernetes/pkg/apis/core"
    	"k8s.io/kubernetes/pkg/features"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  10. pkg/kubelet/stats/cri_stats_provider_test.go

    	critest "k8s.io/cri-api/pkg/apis/testing"
    	statsapi "k8s.io/kubelet/pkg/apis/stats/v1alpha1"
    	kubelettypes "k8s.io/kubelet/pkg/types"
    	cadvisortest "k8s.io/kubernetes/pkg/kubelet/cadvisor/testing"
    	"k8s.io/kubernetes/pkg/kubelet/cm"
    	kubecontainertest "k8s.io/kubernetes/pkg/kubelet/container/testing"
    	"k8s.io/kubernetes/pkg/kubelet/kuberuntime"
    	kubepodtest "k8s.io/kubernetes/pkg/kubelet/pod/testing"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
Back to top