Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for env_pn (0.13 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. tensorflow/c/experimental/ops/gen/common/controller.cc

          const string file_name = absl::Substitute("api_def_$0.pbtxt", op.name());
          const string file_path = io::JoinPath(dir, file_name);
          if (env_->FileExists(file_path).ok()) {
            TF_CHECK_OK(api_def_map_->LoadFile(env_, file_path)) << file_path;
          } else {
            // API defs are currently used for only optional pieces.
          }
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/logging_hooks_test.cc

      }
    
      DialectRegistry registry_;
      MLIRContext context_;
      OwningOpRef<mlir::ModuleOp> mlir_module_;
      Env* env_;
      std::string test_dir_;
      std::string test_group_name_;
    };
    
    TEST_F(LoggingHooksTest, DumpsPassData) {
      std::vector<std::string> files;
      TF_ASSERT_OK(env_->GetChildren(test_dir_, &files));
      EXPECT_THAT(files, ::testing::IsEmpty());
    
      TF_ASSERT_OK(CreateMlirModule("dead_const.mlir"));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 20:29:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. pkg/test/framework/suitecontext.go

    	contextMu    sync.Mutex
    	contextNames sets.String
    
    	suiteLabels label.Set
    
    	dumpCount *atomic.Uint64
    
    	traceContext context.Context
    	traces       sync.Map
    }
    
    func newSuiteContext(s *resource.Settings, envFn resource.EnvironmentFactory, labels label.Set) (*suiteContext, error) {
    	scopeID := fmt.Sprintf("[suite(%s)]", s.TestID)
    
    	workDir := path.Join(s.RunDir(), "_suite_context")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top