Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for paper (0.34 sec)

  1. CREDITS

        You should have received a copy of the GNU Affero General Public License
        along with this program.  If not, see <https://www.gnu.org/licenses/>.
    
    Also add information on how to contact you by electronic and paper mail.
    
      If your software can interact with users remotely through a computer
    network, you should also make sure that it provides a way for users to
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 06:31:35 GMT 2024
    - 1.6M bytes
    - Viewed (0)
  2. cmd/warm-backend-gcs.go

    	it := gcs.client.Bucket(gcs.Bucket).Objects(ctx, &storage.Query{
    		Delimiter: "/",
    		Prefix:    gcs.Prefix,
    		Versions:  false,
    	})
    	pager := iterator.NewPager(it, 1, "")
    	gcsObjects := make([]*storage.ObjectAttrs, 0)
    	_, err := pager.NextPage(&gcsObjects)
    	if err != nil {
    		return false, gcsToObjectError(err, gcs.Bucket, gcs.Prefix)
    	}
    	if len(gcsObjects) > 0 {
    		return true, nil
    	}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 21 11:43:18 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  3. docs/pt/docs/async.md

    * **Deep Learning**: Esse é um subcampo do Machine Learning, então o mesmo se aplica. A diferença é que não há apenas uma grande folha de papel com números para multiplicar, mas um grande conjunto de folhas de papel, e em muitos casos, você utiliza um processador especial para construir e/ou usar modelos.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 22.2K bytes
    - Viewed (0)
  4. docs/fr/docs/features.md

    Plus jamais vous ne vous tromperez en tapant le nom d'une clé, vous ne ferez des aller-retour entre votre code et la documentation ou vous ne scrollerez de haut en bas afin d'enfin savoir si vous devez taper `username` ou `user_name`.
    
    ### Court
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 11.1K bytes
    - Viewed (0)
  5. src/main/resources/fess_config.properties

    ldap.attr.homePhone=homePhone
    ldap.attr.homePostalAddress=homePostalAddress
    ldap.attr.labeledURI=labeledURI
    ldap.attr.roomNumber=roomNumber
    ldap.attr.description=description
    ldap.attr.title=title
    ldap.attr.pager=pager
    ldap.attr.street=street
    ldap.attr.postalCode=postalCode
    ldap.attr.physicalDeliveryOfficeName=physicalDeliveryOfficeName
    ldap.attr.destinationIndicator=destinationIndicator
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  6. RELEASE.md

    *   Adds `beta` hyperparameter to
        [FTRL](https://www.tensorflow.org/api_docs/python/tf/keras/optimizers/Ftrl)
        optimizer classes (Keras and others) to match
        [FTRL paper](https://research.google.com/pubs/archive/41159.pdf).
    *   `Optimizer.__init__` now accepts a `gradient_aggregator` to allow for
        customization of how gradients are aggregated across devices, as well as
    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)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. title */
        String LDAP_ATTR_TITLE = "ldap.attr.title";
    
        /** The key of the configuration. e.g. pager */
        String LDAP_ATTR_PAGER = "ldap.attr.pager";
    
        /** The key of the configuration. e.g. street */
        String LDAP_ATTR_STREET = "ldap.attr.street";
    
        /** The key of the configuration. e.g. postalCode */
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
Back to top