Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 170 for epstest (0.12 sec)

  1. src/cmd/go/internal/vcs/vcs.go

    func (v *Cmd) IsSecure(repo string) bool {
    	u, err := urlpkg.Parse(repo)
    	if err != nil {
    		// If repo is not a URL, it's not secure.
    		return false
    	}
    	if VCSTestRepoURL != "" && web.IsLocalHost(u) {
    		// If the vcstest server is in use, it may redirect to other local ports for
    		// other protocols (such as svn). Assume that all loopback addresses are
    		// secure during testing.
    		return true
    	}
    	return v.isSecureScheme(u.Scheme)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  2. src/runtime/asm_ppc64x.s

    // module containing runtime) to the frame that goexit will execute in when
    // the goroutine exits. It's implemented in assembly mainly because that's the
    // easiest way to get access to R2.
    TEXT runtime·prepGoExitFrame(SB),NOSPLIT,$0-8
    	MOVD    sp+0(FP), R3
    	MOVD    R2, 24(R3)
    	RET
    
    TEXT runtime·addmoduledata(SB),NOSPLIT|NOFRAME,$0-0
    	ADD	$-8, R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    If you want to set up your own `Test` task with its own set of test classes, then the easiest approach is to create your own source set and `Test` task instance, as shown in <<#sec:configuring_java_integration_tests,Configuring integration tests>>.
    
    [[sec:test_execution]]
    == Test execution
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass.cc

          const OpDef* op_def;
          TF_RETURN_IF_ERROR(
              graph_->op_registry()->LookUpOpDef(node->type_string(), &op_def));
          if (op_def->is_stateful()) {
            // It is easiest to demonstrate the problem we're trying to solve with
            // an example.  Say we have this graph:
            //
            //   shape = RandomUniformInt();
            //   reshape = Reshape(input, shape)
            //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  5. src/go/build/build.go

    		if info.parsed != nil {
    			pkg = info.parsed.Name.Name
    			if pkg == "documentation" {
    				p.IgnoredGoFiles = append(p.IgnoredGoFiles, name)
    				continue
    			}
    		}
    
    		isTest := strings.HasSuffix(name, "_test.go")
    		isXTest := false
    		if isTest && strings.HasSuffix(pkg, "_test") && p.Name != pkg {
    			isXTest = true
    			pkg = pkg[:len(pkg)-len("_test")]
    		}
    
    		if p.Name == "" {
    			p.Name = pkg
    			firstFile = name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  6. pkg/api/pod/util_test.go

    	case reflect.Struct:
    		// ObjectMeta is generic and therefore should never have a field with a specific resource's name;
    		// it contains cycles so it's easiest to just skip it.
    		if name == "ObjectMeta" {
    			break
    		}
    		for i := 0; i < tp.NumField(); i++ {
    			field := tp.Field(i)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      if (one_by_one && trivial_strides && trivial_dilations) {
        return "NHWC";
      }
    
      // If filter spatial dimensions are unknown or not 1x1 we prefer NCHW, because
      // it's the fastest option on NVIDIA GPUs with cuDNN library support.
      return "NCHW";
    }
    
    //===----------------------------------------------------------------------===//
    // Conv2dBackpropFilterOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    }
    
    Status ImporterBase::PrepareConvert(const Graph& graph,
                                        std::unique_ptr<GraphDef> graph_def) {
      // TODO(fengliuai): Converting to GraphDef and back is the easiest way to
      // clone a graph.
      // TODO(fengliuai): clone the graph without going to graph_def first.
      if (graph_def == nullptr) {
        graph_def = std::make_unique<GraphDef>();
        graph.ToGraphDef(graph_def.get());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  9. src/reflect/all_test.go

    func TestTypeOfTypeOf(t *testing.T) {
    	// Check that all the type constructors return concrete *rtype implementations.
    	// It's difficult to test directly because the reflect package is only at arm's length.
    	// The easiest thing to do is just call a function that crashes if it doesn't get an *rtype.
    	check := func(name string, typ Type) {
    		if underlying := TypeOf(typ).String(); underlying != "*reflect.rtype" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  10. RELEASE.md

    * Introducing `tf.types.experimental.AtomicFunction` as the fastest way to perform TF computations in Python.
    
        * Can be accessed through `inference_fn` property of `ConcreteFunction`s
        * Does not support gradients.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top