Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,808 for compilers (0.18 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/bisect/bisect.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package bisect can be used by compilers and other programs
    // to serve as a target for the bisect debugging tool.
    // See [golang.org/x/tools/cmd/bisect] for details about using the tool.
    //
    // To be a bisect target, allowing bisect to help determine which of a set of independent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/lib.go

    		// by default. With these compilers, however you can turn it
    		// off if you want using "--disable-dynamicbase" or
    		// "--no-dynamicbase".
    		//
    		// The strategy below is to try using "--disable-dynamicbase";
    		// if this succeeds, then assume we're working with more
    		// modern compilers and act accordingly. If it fails, assume
    		// an ancient compiler with ancient defaults.
    		var dbopt string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    	compiler() string
    	linker() string
    }
    
    type noToolchain struct{}
    
    func noCompiler() error {
    	log.Fatalf("unknown compiler %q", cfg.BuildContext.Compiler)
    	return nil
    }
    
    func (noToolchain) compiler() string {
    	noCompiler()
    	return ""
    }
    
    func (noToolchain) linker() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. src/go/token/position.go

    	//
    	// With better compiler optimizations, this may not be needed in the
    	// future, but at the moment this change improves the go/printer
    	// benchmark performance by ~30%. This has a direct impact on the
    	// speed of gofmt and thus seems worthwhile (2011-04-29).
    	// TODO(gri): Remove this when compilers have caught up.
    	i, j := 0, len(a)
    	for i < j {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  5. src/cmd/cgo/doc.go

    "C", it will look for other non-Go files in the directory and compile
    them as part of the Go package. Any .c, .s, .S or .sx files will be
    compiled with the C compiler. Any .cc, .cpp, or .cxx files will be
    compiled with the C++ compiler. Any .f, .F, .for or .f90 files will be
    compiled with the fortran compiler. Any .h, .hh, .hpp, or .hxx files will
    not be compiled separately, but, if these header files are changed,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/aot/codegen.cc

    #include "absl/strings/str_split.h"
    #include "absl/strings/substitute.h"
    #include "absl/types/span.h"
    #include "tensorflow/compiler/aot/embedded_protocol_buffers.h"
    #include "tensorflow/compiler/tf2xla/tf2xla.pb.h"
    #include "tensorflow/compiler/tf2xla/tf2xla_util.h"
    #include "xla/cpu_function_runtime.h"
    #include "xla/service/compiler.h"
    #include "xla/service/cpu/buffer_info_util.h"
    #include "xla/shape_util.h"
    #include "xla/xla_data.pb.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    NOTE: The `compile` and `runtime` configurations have been removed with Gradle 7.0.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

            when:
            run "compile"
            then:
            executedAndNotSkipped ":compile"
    
            when:
            run "compile"
            then:
            skipped ":compile"
    
            when:
            buildFile.text = buildScriptWithClasspath("lib2.jar", "lib1.jar")
            run "compile"
            then:
            executedAndNotSkipped ":compile"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  9. src/internal/bisect/bisect.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package bisect can be used by compilers and other programs
    // to serve as a target for the bisect debugging tool.
    // See [golang.org/x/tools/cmd/bisect] for details about using the tool.
    //
    // To be a bisect target, allowing bisect to help determine which of a set of independent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/stmt.go

    func goVal(val constant.Value) interface{} {
    	// val should exist, but be conservative and check
    	if val == nil {
    		return nil
    	}
    	// Match implementation restriction of other compilers.
    	// gc only checks duplicates for integer, floating-point
    	// and string values, so only create Go values for these
    	// types.
    	switch val.Kind() {
    	case constant.Int:
    		if x, ok := constant.Int64Val(val); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
Back to top