Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for Wade (0.15 sec)

  1. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

         * changing any bin. The operations must not take any action that could even momentarily
         * cause a concurrent read operation to see inconsistent data. This is made easier by the
         * nature of the read operations in Map. For example, no operation can reveal that the table
         * has grown but the threshold has not yet been updated, so there are no atomicity requirements
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 91.9K bytes
    - Viewed (0)
  2. cmd/xl-storage-format-v2.go

    	// This will prevent downgrades to incompatible versions.
    	xlVersionMajor = 1
    
    	// Non breaking changes.
    	// Bumping this is informational, but should be done
    	// if any change is made to the data stored, bumping this
    	// will allow to detect the exact version later.
    	xlVersionMinor = 3
    )
    
    func init() {
    	binary.LittleEndian.PutUint16(xlVersionCurrent[0:2], xlVersionMajor)
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Apr 19 16:43:43 GMT 2024
    - 63.6K bytes
    - Viewed (1)
  3. src/archive/zip/reader_test.go

    		t.Fatalf("unexpected error, got: %v, want: %v", err, ErrFormat)
    	}
    }
    
    func TestCVE202141772(t *testing.T) {
    	t.Setenv("GODEBUG", "zipinsecurepath=0")
    	// Archive contains a file whose name is exclusively made up of '/', '\'
    	// characters, or "../", "..\" paths, which would previously cause a panic.
    	//
    	//  Length   Method    Size  Cmpr    Date    Time   CRC-32   Name
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 55.3K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

    // ensures that two consecutive runs are unlikely to clash.
    class ModularFileSystemTest : public ::testing::TestWithParam<std::string> {
     public:
      // Initializes `root_dir_` to a unique value made of `::testing::TempDir()`, a
      // static random value unique for all the tests in one invocation, and the
      // current test name.
      //
      // Since the test name contains `/` (due to parameters), this function
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri May 27 20:25:58 GMT 2022
    - 71K bytes
    - Viewed (0)
  5. cmd/iam.go

    // elsewhere), the AssumeRole case (because the parent user is real and their
    // policy is associated via policy-set API) and the AssumeRoleWithLDAP case
    // (because the policy association is made via policy-set API).
    func (sys *IAMSys) SetTempUser(ctx context.Context, accessKey string, cred auth.Credentials, policyName string) (time.Time, error) {
    	if !sys.Initialized() {
    		return time.Time{}, errServerNotInitialized
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 18 19:09:19 GMT 2024
    - 69.9K bytes
    - Viewed (1)
  6. docs/changelogs/changelog_3x.md

        non-101 response code.
    
    
    ## Version 3.3.0
    
    _2016-05-24_
    
     *  New: `Response.sentRequestAtMillis()` and `receivedResponseAtMillis()`
        methods track the system's local time when network calls are made. These
        replace the `OkHttp-Sent-Millis` and `OkHttp-Received-Millis` headers that were
        present in earlier versions of OkHttp.
     *  New: Accept user-provided trust managers in `OkHttpClient.Builder`. This
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sun Feb 06 14:55:54 GMT 2022
    - 50.8K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/filesystem/filesystem_interface.h

    /// TensorFlow and are guaranteed to not be `nullptr`.
    ///
    /// All path-like arguments are null terminated `char*` strings. Plugins can
    /// assume that before any function using path arguments is invoked, the path is
    /// made canonical by calling the function provided by `translate_name` or a
    /// default implementation of that (supplied by core TensorFlow).
    ///
    /// The only time the pointer to the `TF_*` structures from section 1 is not
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri May 27 17:36:54 GMT 2022
    - 53.1K bytes
    - Viewed (0)
  8. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    message GroupVersion {
      optional string group = 1;
    
      optional string version = 2;
    }
    
    // GroupVersion contains the "group/version" and "version" string of a version.
    // It is made a struct to keep extensibility.
    message GroupVersionForDiscovery {
      // groupVersion specifies the API group and version in the form "group/version"
      optional string groupVersion = 1;
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 53.3K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

    			continue
    		}
    
    		if talign > 0 && f.ByteOffset%talign != 0 {
    			// Drop misaligned fields, the same way we drop integer bit fields.
    			// The goal is to make available what can be made available.
    			// Otherwise one bad and unneeded field in an otherwise okay struct
    			// makes the whole program not compile. Much of the time these
    			// structs are in system headers that cannot be corrected.
    			continue
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
Back to top