Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 207 for testLang (0.19 sec)

  1. tests/integration/ambient/baseline_test.go

    			// We are testing to svc traffic but presently sidecar has not been updated to know that to svc traffic should not
    			// go to a workload-attached waypoint
    			t.Skip("https://github.com/istio/istio/pull/50182")
    		}
    
    		// TODO test from all source workloads as well
    		src.CallOrFail(t, opt)
    	})
    }
    
    func TestPodIP(t *testing.T) {
    	framework.NewTest(t).Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

    namespace {
    tensorflow::string* g_test_model_dir = nullptr;
    }  // namespace
    
    namespace tflite {
    namespace optimize {
    namespace {
    
    using testing::Eq;
    using testing::FloatEq;
    using testing::FloatNear;
    using testing::IsEmpty;
    using testing::NotNull;
    using testing::SizeIs;
    
    // Unpacks the given flatbuffer model.
    //
    // This helper is useful as UnPackTo requires the input to not have any existing
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  3. plugin/pkg/admission/resourcequota/admission_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package resourcequota
    
    import (
    	"context"
    	"fmt"
    	"strconv"
    	"strings"
    	"testing"
    
    	corev1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apiserver/pkg/admission"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  4. src/encoding/xml/marshal_test.go

    	}
    }
    
    func BenchmarkMarshal(b *testing.B) {
    	b.ReportAllocs()
    	b.RunParallel(func(pb *testing.PB) {
    		for pb.Next() {
    			Marshal(atomValue)
    		}
    	})
    }
    
    func BenchmarkUnmarshal(b *testing.B) {
    	b.ReportAllocs()
    	xml := []byte(atomXML)
    	b.RunParallel(func(pb *testing.PB) {
    		for pb.Next() {
    			Unmarshal(xml, &Feed{})
    		}
    	})
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package validating_test
    
    import (
    	"context"
    	"fmt"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"testing"
    	"time"
    
    	"github.com/stretchr/testify/require"
    
    	admissionregistrationv1 "k8s.io/api/admissionregistration/v1"
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/meta"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  6. pilot/pkg/model/virtualservice_test.go

    		},
    	}
    
    	for _, tc := range cases {
    		t.Run(tc.name, func(t *testing.T) {
    			got, _ := mergeVirtualServicesIfNeeded(tc.virtualServices, tc.defaultExportTo)
    			assert.Equal(t, got, tc.expectedVirtualServices)
    		})
    	}
    
    	t.Run("test merge order", func(t *testing.T) {
    		root := rootVs.DeepCopy()
    		delegate := delegateVs.DeepCopy()
    		normal := independentVs.DeepCopy()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  7. pkg/kubelet/nodestatus/setters_test.go

    	fakecloud "k8s.io/cloud-provider/fake"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	"k8s.io/component-base/version"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/kubelet/cm"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    	kubecontainertest "k8s.io/kubernetes/pkg/kubelet/container/testing"
    	"k8s.io/kubernetes/pkg/kubelet/events"
    	"k8s.io/kubernetes/pkg/kubelet/util/sliceutils"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  8. src/html/template/escape_test.go

    		}
    	}
    }
    
    func TestEscapeErrorsNotIgnorable(t *testing.T) {
    	var b bytes.Buffer
    	tmpl, _ := New("dangerous").Parse("<a")
    	err := tmpl.Execute(&b, nil)
    	if err == nil {
    		t.Errorf("Expected error")
    	} else if b.Len() != 0 {
    		t.Errorf("Emitted output despite escaping failure")
    	}
    }
    
    func TestEscapeSetErrorsNotIgnorable(t *testing.T) {
    	var b bytes.Buffer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_tls_test.go

    package core
    
    import (
    	"fmt"
    	"reflect"
    	"testing"
    	"time"
    
    	cluster "github.com/envoyproxy/go-control-plane/envoy/config/cluster/v3"
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	tls "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/tls/v3"
    	"github.com/google/go-cmp/cmp"
    	"google.golang.org/protobuf/testing/protocmp"
    	"google.golang.org/protobuf/types/known/durationpb"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  10. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.tasks.testing.Test.getTestFramework()> has arguments/return type org.gradle.api.internal.tasks.testing.TestFramework that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (Test.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
Back to top