Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 207 for testLang (0.44 sec)

  1. tensorflow/c/eager/c_api_test.cc

    #include "tensorflow/core/protobuf/config.pb.h"
    #include "tensorflow/core/protobuf/rewriter_config.pb.h"
    #include "tensorflow/core/protobuf/tensorflow_server.pb.h"
    
    using tensorflow::string;
    
    namespace {
    
    void BM_InitOp(::testing::benchmark::State& state) {
      TF_Status* status = TF_NewStatus();
      TFE_ContextOptions* opts = TFE_NewContextOptions();
      TFE_Context* ctx = TFE_NewContext(opts, status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  2. .bazelrc

    # Allow creation of resultstore URLs for any bazel invocation
    build:resultstore --google_default_credentials
    build:resultstore --bes_backend=buildeventservice.googleapis.com
    build:resultstore --bes_instance_name="tensorflow-testing"
    build:resultstore --bes_results_url="https://source.cloud.google.com/results/invocations"
    build:resultstore --bes_timeout=600s
    
    # Flag to enable remote config
    common --experimental_repo_remote_exec
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. src/math/rand/v2/chacha8_test.go

    // license that can be found in the LICENSE file.
    
    package rand_test
    
    import (
    	"bytes"
    	"crypto/sha256"
    	"encoding/hex"
    	"io"
    	. "math/rand/v2"
    	"testing"
    	"testing/iotest"
    )
    
    func TestChaCha8(t *testing.T) {
    	p := NewChaCha8(chacha8seed)
    	for i, x := range chacha8output {
    		if u := p.Uint64(); u != x {
    			t.Errorf("ChaCha8 #%d = %#x, want %#x", i, u, x)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 55K bytes
    - Viewed (0)
  4. pkg/controller/daemon/daemon_controller.go

    	// It resumes normal action after observing the watch events for them.
    	burstReplicas int
    
    	// To allow injection of syncDaemonSet for testing.
    	syncHandler func(ctx context.Context, dsKey string) error
    	// used for unit testing
    	enqueueDaemonSet func(ds *apps.DaemonSet)
    	// A TTLCache of pod creates/deletes each ds expects to see
    	expectations controller.ControllerExpectationsInterface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * The `testClassesDir` property has been removed from the link:{groovyDslPath}/org.gradle.api.tasks.testing.Test.html[Test] task — use link:{groovyDslPath}/org.gradle.api.tasks.testing.Test.html#org.gradle.api.tasks.testing.Test:testClassesDirs[testClassesDirs] instead.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    limitations under the License.
    */
    
    package cel
    
    import (
    	"context"
    	"fmt"
    	"math"
    	"testing"
    
    	"k8s.io/apiextensions-apiserver/pkg/apiserver/schema"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    	celconfig "k8s.io/apiserver/pkg/apis/cel"
    	"k8s.io/utils/ptr"
    )
    
    func TestCelCostStability(t *testing.T) {
    	cases := []struct {
    		name       string
    		schema     *schema.Structural
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  7. pkg/kubelet/apis/config/v1beta1/defaults_test.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 v1beta1
    
    import (
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	logsapi "k8s.io/component-base/logs/api/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package envoyfilter
    
    import (
    	"fmt"
    	"testing"
    	"time"
    
    	udpa "github.com/cncf/xds/go/udpa/type/v1"
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	listener "github.com/envoyproxy/go-control-plane/envoy/config/listener/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    The support for these options will be removed in future releases.
    
    
    [[config_cache:testing]]
    == Testing your build logic
    
    The Gradle TestKit (a.k.a. just TestKit) is a library that aids in testing Gradle plugins and build logic generally.
    For general guidance on how to use TestKit, see the <<test_kit.adoc#test_kit,dedicated chapter>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/MapsTest.java

    import com.google.common.base.Functions;
    import com.google.common.collect.Maps.EntryTransformer;
    import com.google.common.collect.Maps.ValueDifferenceImpl;
    import com.google.common.testing.EqualsTester;
    import com.google.common.testing.NullPointerTester;
    import com.google.common.testing.SerializableTester;
    import java.io.IOException;
    import java.io.StringReader;
    import java.lang.reflect.Field;
    import java.util.Arrays;
    import java.util.Collection;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
Back to top