Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for Executable (0.17 sec)

  1. testing/architecture-test/src/changes/archunit-store/public-api-symmetrical-accessors-nullability.txt

    Accessors for org.gradle.api.tasks.AbstractExecTask.args don't use symmetrical @Nullable
    Accessors for org.gradle.api.tasks.AbstractExecTask.executable don't use symmetrical @Nullable
    Accessors for org.gradle.api.tasks.JavaExec.executable don't use symmetrical @Nullable
    Accessors for org.gradle.api.tasks.SourceSetOutput.resourcesDir don't use symmetrical @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. licenses/github.com/hashicorp/go-version/LICENSE

         restrict the recipients’ rights in the Source Code Form.
    
    3.2. Distribution of Executable Form
    
         If You distribute Covered Software in Executable Form then:
    
         a. such Covered Software must also be made available in Source Code Form,
            as described in Section 3.1, and You must inform recipients of the
            Executable Form how they can obtain a copy of such Source Code Form by
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:40 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. tensorflow/cc/framework/fuzzing/cc_op_fuzz_gen_main.cc

    // Main executable to generate op fuzzers
    
    /* Copyright 2016 The TensorFlow Authors. All Rights Reserved.
    
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 10:53:49 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/runlit.cfg.py

          ToolSubst('count.exe', unresolved='fatal'),
          ToolSubst('not.exe', unresolved='fatal')
      ]
    
      llvm_config.config.substitutions.append(
          ('%python', '"%s"' % (sys.executable)))
    
      llvm_config.add_tool_substitutions(tool_patterns,
                                         [llvm_config.config.llvm_tools_dir])
    else:
      llvm_config.use_default_substitutions()
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 18:52:19 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. src/os/exec_windows.go

    	}
    	return newHandleProcess(pid, uintptr(h)), nil
    }
    
    func init() {
    	cmd := windows.UTF16PtrToString(syscall.GetCommandLine())
    	if len(cmd) == 0 {
    		arg0, _ := Executable()
    		Args = []string{arg0}
    	} else {
    		Args = commandLineToArgv(cmd)
    	}
    }
    
    // appendBSBytes appends n '\\' bytes to b and returns the resulting slice.
    func appendBSBytes(b []byte, n int) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. 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)
  7. src/os/exec/exec_test.go

    	}
    	return cmd
    }
    
    // exePath returns the path to the running executable.
    func exePath(t testing.TB) string {
    	exeOnce.Do(func() {
    		// Use os.Executable instead of os.Args[0] in case the caller modifies
    		// cmd.Dir: if the test binary is invoked like "./exec.test", it should
    		// not fail spuriously.
    		exeOnce.path, exeOnce.err = os.Executable()
    	})
    
    	if exeOnce.err != nil {
    		if t == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheStandardStreamsIntegrationTest.groovy

        @SuppressWarnings('unused')
        // called by string
        def execTask(Map<String, String> args) {
            """
                tasks.register("run", Exec) {
                    dependsOn(compileJava)
                    executable = ${Jvm.canonicalName}.current().javaExecutable
                    args '-cp', project.layout.files(compileJava).asPath, 'Main' ${formatArgument args["extraArg"], { ", '$it'" }}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. pkg/ctrlz/ctrlz.go

    func Run(o *Options, customTopics []fw.Topic) (*Server, error) {
    	topicMutex.Lock()
    	allTopics = append(allTopics, coreTopics...)
    	allTopics = append(allTopics, customTopics...)
    	topicMutex.Unlock()
    
    	exec, _ := os.Executable()
    	instance := exec + " - " + getLocalIP()
    
    	funcs := template.FuncMap{
    		"getTopics": getTopics,
    		"normalize": normalize,
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 21:22:53 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. 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)
Back to top