Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for env_pn (0.12 sec)

  1. pkg/bootstrap/platform/gcp_test.go

    			func() (string, error) { return "createdBy", nil },
    			map[string]string{
    				GCPProject:       "env_pid",
    				GCPProjectNumber: "env_pn",
    				GCPCluster:       "env_cluster",
    				GCPLocation:      "env_location",
    			},
    			map[string]string{
    				GCPProject: "env_pid", GCPProjectNumber: "env_pn", GCPLocation: "env_location", GCPCluster: "env_cluster",
    			},
    		},
    		{
    			"use env variable without fill",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 00:37:33 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  2. src/syscall/exec_unix.go

    			uintptr(unsafe.Pointer(&argvp[0])),
    			uintptr(unsafe.Pointer(&envvp[0])))
    	} else if runtime.GOOS == "darwin" || runtime.GOOS == "ios" {
    		// Similarly on Darwin.
    		err1 = execveDarwin(argv0p, &argvp[0], &envvp[0])
    	} else if runtime.GOOS == "openbsd" && runtime.GOARCH != "mips64" {
    		// Similarly on OpenBSD.
    		err1 = execveOpenBSD(argv0p, &argvp[0], &envvp[0])
    	} else {
    		_, _, err1 = RawSyscall(SYS_EXECVE,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. src/syscall/env_windows.go

    			}
    		}
    	}
    }
    
    func Environ() []string {
    	envp, e := GetEnvironmentStrings()
    	if e != nil {
    		return nil
    	}
    	defer FreeEnvironmentStrings(envp)
    
    	r := make([]string, 0, 50) // Empty with room to grow.
    	const size = unsafe.Sizeof(*envp)
    	for *envp != 0 { // environment block ends with empty string
    		// find NUL terminator
    		end := unsafe.Pointer(envp)
    		for *(*uint16)(end) != 0 {
    			end = unsafe.Add(end, size)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 04 15:31:54 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/generate.txt

    # Test go generate provides the right "$GOPACKAGE" name in an x_test
    go generate './generate/env_test.go'
    stdout 'main_test'
    
    # Test go generate provides the right "$PWD"
    go generate './generate/env_pwd.go'
    stdout $WORK'[/\\]gopath[/\\]src[/\\]generate'
    
    -- echo.go --
    package main
    
    import (
    	"fmt"
    	"os"
    	"strings"
    )
    
    func main() {
    	fmt.Println(strings.Join(os.Args[1:], " "))
    	fmt.Println()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 17 03:24:24 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/cc/save_variables_test.cc

     protected:
      SaveVariablesToCheckpointTest() : env_(Env::Default()) {
        ctx_.loadDialect<mlir::func::FuncDialect, mlir::TF::TensorFlowDialect,
                         mlir::tf_saved_model::TensorFlowSavedModelDialect>();
      }
    
      absl::StatusOr<std::string> MakeTempDir() {
        std::string tmp_dir{};
        if (!env_->LocalTempFilename(&tmp_dir)) {
          return absl::InternalError("Failed to create temp file.");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

      status = env_->NewWritableFile(filepath, &new_file);
      if (!status.ok())
        GTEST_SKIP() << "NewWritableFile() not supported: " << status;
    
      status = env_->DeleteFile(filepath);
      EXPECT_PRED2(UnimplementedOrReturnsCode, status, Code::OK);
    }
    
    TEST_P(ModularFileSystemTest, TestDeleteFileDoesNotExist) {
      const std::string filepath = GetURIForPath("a_file");
      Status status = env_->DeleteFile(filepath);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/lower_cluster_to_runtime_ops_test.cc

     public:
      LowerClusterToRuntimeOpsTest() {
        mlir::RegisterCommonToolingDialects(registry_);
        context_.appendDialectRegistry(registry_);
        context_.loadAllAvailableDialects();
    
        env_ = Env::Default();
        test_group_name_ = "TestGroup";
        test_dir_ = testing::TmpDir();
        setenv("TF_DUMP_GRAPH_PREFIX", test_dir_.c_str(), /*overwrite=*/1);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:44:37 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/AbstractProcessInstrumentationIntegrationTest.groovy

                    public Process exec(String command, String[] envp) { return null; }
                    public Process exec(String command, String[] envp, File file) { return null; }
                    public Process exec(String command, List<?> envp, File file) { return null; }
                    public Process exec(String[] command) { return null; }
                    public Process exec(String[] command, String[] envp) { return null; }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/classpath/Instrumented.java

            externalProcessStarted(command, consumer);
            return runtime.exec(command, envp);
        }
    
        public static Process exec(Runtime runtime, String[] command, String[] envp, String consumer) throws IOException {
            externalProcessStarted(command, consumer);
            return runtime.exec(command, envp);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/debugging/mlir_dump_test.cc

        // Delete files in the test directory.
        std::vector<std::string> files;
        TF_ASSERT_OK(
            env_->GetMatchingPaths(tsl::io::JoinPath(test_dir_, "*"), &files));
        for (const std::string& file : files) {
          TF_ASSERT_OK(env_->DeleteFile(file));
        }
      }
    
      tsl::Env* env_;
      std::string test_dir_;
      std::unique_ptr<mlir::MLIRContext> ctx_;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 03:17:14 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top