Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 84 for epstest (0.15 sec)

  1. src/cmd/asm/internal/asm/asm.go

    	case obj.TYPE_CONST, obj.TYPE_FCONST, obj.TYPE_SCONST, obj.TYPE_ADDR:
    		// OK
    	default:
    		p.errorf("DATA value must be an immediate constant or address")
    		return
    	}
    
    	// The addresses must not overlap. Easiest test: require monotonicity.
    	if lastAddr, ok := p.dataAddr[name]; ok && nameAddr.Offset < lastAddr {
    		p.errorf("overlapping DATA entry for %s", name)
    		return
    	}
    	p.dataAddr[name] = nameAddr.Offset + int64(sz)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  2. src/crypto/internal/bigmod/nat.go

    	// the Montgomery domain, meaning we can use Montgomery multiplication now).
    	// We could do that by doubling _W * n times, or with a square-and-double
    	// chain log2(_W * n) long. Turns out the fastest thing is to start out with
    	// doublings, and switch to square-and-double once the exponent is large
    	// enough to justify the cost of the multiplications.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    The build scan above shows that `:task1` and `:task3` could be improved and made cacheable
    and shows why Gradle didn't cache them.
    
    == Create builds for specific developer workflows
    
    The fastest task is one that doesn’t execute.
    If you can find ways to skip tasks you don’t need to run, you’ll end up with a faster build overall.
    
    If your build includes multiple subprojects, create tasks to build those subprojects
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/edit.go

    	// indirect upgrade never introduces a conflict that leads to further
    	// downgrades. I really want to be able to prove that editRequirements
    	// terminates, and the easiest way to prove it is to add this map.
    	//
    	// Then the proof of termination is this:
    	// On every iteration where we mark the roots as dirty, we add some new module
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top