Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,021 for programs (0.18 sec)

  1. src/os/proc.go

    		panic("unexpected call to os.Exit(0) during test")
    	}
    
    	// Inform the runtime that os.Exit is being called. If -race is
    	// enabled, this will give race detector a chance to fail the
    	// program (racy programs do not have the right to finish
    	// successfully). If coverage is enabled, then this call will
    	// enable us to write out a coverage data file.
    	runtime_beforeExit(code)
    
    	syscall.Exit(code)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. src/runtime/debug/garbage.go

    // the program. Programs working with memory-mapped files or unsafe
    // manipulation of memory may cause faults at non-nil addresses in less
    // dramatic situations; SetPanicOnFault allows such programs to request
    // that the runtime trigger only a panic, not a crash.
    // The runtime.Error that the runtime panics with may have an additional method:
    //
    //	Addr() uintptr
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/mlir_import_options.h

      // This defaults to `false` to avoid breaking existing uses.
      bool include_variables_in_initializers = false;
    
      // Load the model without restoring associated variables from disk. Enables
      // loading raw programs without checkpoints.
      bool allow_uninitialized_variables = false;
    };
    
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 20 13:19:26 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/device_compiler.h

      async_compiler_threads_.reset();
      // TODO(b/110813685): Think about the program ownership model. Programs are
      // currently owned by the compilation cache which means we must wait for
      // program completion in the destructor. There are multiple compilation caches
      // around, which complicates things a little. Perhaps having programs be
      // shared_ptrs (an invasive change) would make the model easier to reason
      // about?
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  5. .github/workflows/codeql-analysis.yml

        # If this step fails, then you should remove it and run the build manually (see below)
        #- name: Autobuild
        #  uses: github/codeql-action/autobuild@v1
    
        # ℹī¸ Command-line programs to run using the OS shell.
        # 📚 https://git.io/JvXDl
    
        # ✏ī¸ If the Autobuild fails above, remove it and uncomment the following three lines
        #    and modify them (or add more) to build your code if your project
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Fri Nov 17 21:22:20 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/robustio/robustio.go

    //
    // Errors considered ephemeral include:
    //   - syscall.ERROR_ACCESS_DENIED
    //   - syscall.ERROR_FILE_NOT_FOUND
    //   - internal/syscall/windows.ERROR_SHARING_VIOLATION
    //
    // This set may be expanded in the future; programs must not rely on the
    // non-ephemerality of any given error.
    func IsEphemeralError(err error) bool {
    	return isEphemeralError(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/device_compiler_client.h

          const XlaCompiler::Options& options,
          const XlaCompiler::CompilationResult& result,
          const std::string& serialized_executable) = 0;
    
      // Waits for the underlying `ClientType` backend's programs to finish
      // executing before returning.
      virtual void WaitForProgramsToFinish() = 0;
    
      virtual ClientType* client() const = 0;
    
     private:
      DeviceCompilerClient(const DeviceCompilerClient&) = delete;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/library/lists.go

    			nextAdder, ok := next.(traits.Adder)
    			if !ok {
    				// Should never happen for type checked CEL programs
    				return types.MaybeNoSuchOverloadErr(next)
    			}
    			if acc != nil {
    				s := acc.Add(next)
    				sum, ok := s.(traits.Adder)
    				if !ok {
    					// Should never happen for type checked CEL programs
    					return types.MaybeNoSuchOverloadErr(s)
    				}
    				acc = sum
    			} else {
    				acc = nextAdder
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  9. src/syscall/rlimit.go

    // (limited by the size of fd_set).
    //
    // Go does not use select, so it should not be subject to these limits.
    // On some systems the limit is 256, which is very easy to run into,
    // even in simple programs like gofmt when they parallelize walking
    // a file tree.
    //
    // After a long discussion on go.dev/issue/46279, we decided the
    // best approach was for Go to raise the limit unconditionally for itself,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:57 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. docs/en/docs/advanced/settings.md

    You can also create an environment variable only for a specific program invocation, that is only available to that program, and only for its duration.
    
    To do that, create it right before the program itself, on the same line:
    
    <div class="termy">
    
    ```console
    // Create an env var MY_NAME in line for this program call
    $ MY_NAME="Wade Wilson" python main.py
    
    // Now it can read the environment variable
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top