Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Executable (0.14 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

                return JavaVersion.current();
            }
        }
    
        @Override
        public GradleExecuter usingExecutable(String script) {
            this.executable = script;
            return this;
        }
    
        public String getExecutable() {
            return executable;
        }
    
        @Override
        public GradleExecuter withStdinPipe() {
            return withStdinPipe(new PipedOutputStream());
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. configure.py

    
    def setup_python(environ_cp):
      """Setup python related env variables."""
      # Get PYTHON_BIN_PATH, default is the current running python.
      default_python_bin_path = sys.executable
      ask_python_bin_path = ('Please specify the location of python. [Default is '
                             '{}]: ').format(default_python_bin_path)
      while True:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. src/time/format.go

    // to the layout defined by the argument. See the documentation for the
    // constant called [Layout] to see how to represent the layout format.
    //
    // The executable example for [Time.Format] demonstrates the working
    // of the layout string in detail and is a good reference.
    func (t Time) Format(layout string) string {
    	const bufSize = 64
    	var b []byte
    	max := len(layout) + 10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

            cleanup.set(Cleanup.DEFAULT)
        }
    }
    ----
    =====
    ====
    
    [no_relative_paths_for_java_executables]
    ==== Deprecated using relative paths to specify Java executables
    Using relative file paths to point to Java executables is now deprecated and will become an error in Gradle 9.
    This is done to reduce confusion about what such relative paths should resolve against.
    
    [[task_convention]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  5. .bazelrc

    build:rbe_cross_compile_base_xla --strategy=Genrule=standalone
    
    # Due to the above strategy, all Genrule commands are executed locally, but the
    # following actions invoke tools (E.g `flatc`, `llvm-tblgen`, etc.) that are
    # only executabe on the RBE (x86) machine, so the strategy_regexp options are
    # added to override and run the actions using remote strategy.
    build:rbe_cross_compile_base_xla --strategy_regexp='Generating code from table.*=remote'
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top