Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for della (0.15 sec)

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

        checkNonnegative(count, "count");
    
        int oldCount = self.count(element);
    
        int delta = count - oldCount;
        if (delta > 0) {
          self.add(element, delta);
        } else if (delta < 0) {
          self.remove(element, -delta);
        }
    
        return oldCount;
      }
    
      /** An implementation of {@link Multiset#setCount(Object, int, int)}. */
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 41.7K bytes
    - Viewed (0)
  2. cmd/storage-rest-server.go

    	requestTime, err := time.Parse(time.RFC3339, requestTimeStr)
    	if err != nil {
    		return errMalformedAuth
    	}
    	utcNow := UTCNow()
    	delta := requestTime.Sub(utcNow)
    	if delta < 0 {
    		delta *= -1
    	}
    	if delta > DefaultSkewTime {
    		return errSkewedAuthTime
    	}
    
    	return nil
    }
    
    // IsAuthValid - To authenticate and verify the time difference.
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 44.8K bytes
    - Viewed (0)
  3. RELEASE.md

    *   Disallow conversion of python floating types to uint32/64 (matching behavior
        of other integer types) in `tf.constant`.
    *   Make the `gain` argument of convolutional orthogonal initializers
        (`convolutional_delta_orthogonal`, `convolutional_orthogonal_1D`,
        `convolutional_orthogonal_2D`, `convolutional_orthogonal_3D`) have
        consistent behavior with the `tf.initializers.orthogonal` initializer, i.e.
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
Back to top