Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,133 for programs (0.33 sec)

  1. src/crypto/internal/boring/fipstls/tls.go

    var required atomic.Bool
    
    // Force forces crypto/tls to restrict TLS configurations to FIPS-approved settings.
    // By design, this call is impossible to undo (except in tests).
    //
    // Note that this call has an effect even in programs using
    // standard crypto (that is, even when Enabled = false).
    func Force() {
    	required.Store(true)
    }
    
    // Abandon allows non-FIPS-approved settings.
    // If called from a non-test binary, it panics.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. src/internal/cpu/cpu_arm64_darwin.go

    	// to detect their supported state dynamically. Assume the CPU features that
    	// Apple Silicon M1 supports to be available as a minimal set of features
    	// to all Go programs running on darwin/arm64.
    	ARM64.HasAES = true
    	ARM64.HasPMULL = true
    	ARM64.HasSHA1 = true
    	ARM64.HasSHA2 = true
    }
    
    //go:noescape
    func getsysctlbyname(name []byte) (int32, int32)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/internal/configstore/download.go

    // Package configstore abstracts interaction with the telemetry config server.
    // Telemetry config (golang.org/x/telemetry/config) is distributed as a go
    // module containing go.mod and config.json. Programs that upload collected
    // counters download the latest config using `go mod download`. This provides
    // verification of downloaded configuration and cacheability.
    package configstore
    
    import (
    	"bytes"
    	"encoding/json"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  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. 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)
  9. 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)
  10. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    covered by this License; they are outside its scope. The act of running
    the Program is not restricted, and the output from the Program is
    covered only if its contents constitute a work based on the Program
    (independent of having been made by running the Program). Whether that
    is true depends on what the Program does.
    
    1. You may copy and distribute verbatim copies of the Program's source
    code as you receive it, in any medium, provided that you conspicuously
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
Back to top