Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,024 for Blog (0.15 sec)

  1. tests/multi_primary_keys_test.go

    	DB.Model(&blog).Association("LocaleTags").Find(&tags2)
    	if !compareTags(tags2, []string{"tag1", "tag2", "tag3"}) {
    		t.Fatalf("CN Blog's tags should not be changed after EN Blog Replace")
    	}
    
    	var blog11 Blog
    	DB.Preload("LocaleTags").First(&blog11, "id = ? AND locale = ?", blog.ID, blog.Locale)
    	if !compareTags(blog11.LocaleTags, []string{"tag1", "tag2", "tag3"}) {
    		t.Fatalf("CN Blog's tags should not be changed after EN Blog Replace")
    	}
    Go
    - Registered: Sun Apr 14 09:35:11 GMT 2024
    - Last Modified: Thu Jan 06 07:02:53 GMT 2022
    - 12.8K bytes
    - Viewed (0)
  2. schema/relationship_test.go

    		Relation{
    			Name: "Tags", Type: schema.Many2Many, Schema: "Blog", FieldSchema: "Tag",
    			JoinTable: JoinTable{Name: "blog_tags", Table: "blog_tags"},
    			References: []Reference{
    				{"ID", "Blog", "BlogID", "blog_tags", "", true},
    				{"Locale", "Blog", "BlogLocale", "blog_tags", "", true},
    				{"ID", "Tag", "TagID", "blog_tags", "", false},
    				{"Locale", "Tag", "TagLocale", "blog_tags", "", false},
    			},
    		},
    Go
    - Registered: Sun Apr 14 09:35:11 GMT 2024
    - Last Modified: Fri Dec 15 08:36:08 GMT 2023
    - 25K bytes
    - Viewed (0)
  3. docs/en/data/external_links.yml

    Articles:
      English:
      - author: Kurtis Pykes - NVIDIA
        link: https://developer.nvidia.com/blog/building-a-machine-learning-microservice-with-fastapi/
        title: Building a Machine Learning Microservice with FastAPI
      - author: Ravgeet Dhillon - Twilio
        link: https://www.twilio.com/en-us/blog/booking-appointments-twilio-notion-fastapi
        title: Booking Appointments with Twilio, Notion, and FastAPI
      - author: Abhinav Tripathi - Microsoft Blogs
    Others
    - Registered: Sun Apr 14 07:19:09 GMT 2024
    - Last Modified: Thu Mar 21 20:57:27 GMT 2024
    - 21.3K bytes
    - Viewed (2)
  4. SECURITY.md

    3. Code is audited to find any potential similar problems.
    4. Fixes are prepared for the latest release.
    5. On the date that the fixes are applied a security advisory will be published on <https://blog.min.io>.
       Please inform us in your report email whether MinIO should mention your contribution w.r.t. fixing
       the security issue. By default MinIO will **not** publish this information to protect your privacy.
    
    Plain Text
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Sat Feb 12 00:51:25 GMT 2022
    - 2.2K bytes
    - Viewed (0)
  5. samples/guide/src/main/java/okhttp3/recipes/kt/YubikeyClientAuth.kt

     *
     * Using a yubikey device as a SSL key store.
     * https://lauri.võsandi.com/2017/03/yubikey-for-ssh-auth.html
     *
     * Using PKCS11 support in the JDK.
     * https://tersesystems.com/blog/2018/09/08/keymanagers-and-keystores/
     *
     * Install OpenSC separately. On a mac `brew cast install opensc`.
     */
    @SuppressSignatureCheck
    class YubikeyClientAuth {
      fun run() {
    Plain Text
    - Registered: Fri Apr 12 11:42:09 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 4.2K bytes
    - Viewed (1)
  6. docs/de/docs/tutorial/security/oauth2-jwt.md

    Sie könnten beispielsweise ein „Auto“ oder einen „Blog-Beitrag“ identifizieren.
    
    Anschließend könnten Sie Berechtigungen für diese Entität hinzufügen, etwa „Fahren“ (für das Auto) oder „Bearbeiten“ (für den Blog).
    
    Plain Text
    - Registered: Sun Apr 14 07:19:09 GMT 2024
    - Last Modified: Sat Mar 30 20:27:06 GMT 2024
    - 15.1K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/security/oauth2-jwt.md

    For example, you could identify a "car" or a "blog post".
    
    Then you could add permissions about that entity, like "drive" (for the car) or "edit" (for the blog).
    
    And then, you could give that JWT token to a user (or bot), and they could use it to perform those actions (drive the car, or edit the blog post) without even needing to have an account, just with the JWT token your API generated for that.
    
    Plain Text
    - Registered: Sun Apr 14 07:19:09 GMT 2024
    - Last Modified: Thu Jan 11 21:21:35 GMT 2024
    - 13K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/promotion/BasePromotionBuildType.kt

            }
    
            features {
                // https://www.jetbrains.com/help/teamcity/shared-resources.html#Viewing+Shared+Resources+Usage
                // https://blog.jetbrains.com/teamcity/2013/05/explaining-the-shared-resources-plugin/
                // we only allow 1 promotion job running at the same time to avoid website xml conflicts
                feature {
    Plain Text
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  9. README.md

    *   [TensorFlow Examples](https://github.com/tensorflow/examples)
    *   [TensorFlow Codelabs](https://codelabs.developers.google.com/?cat=TensorFlow)
    *   [TensorFlow Blog](https://blog.tensorflow.org)
    *   [Learn ML with TensorFlow](https://www.tensorflow.org/resources/learn-ml)
    *   [TensorFlow Twitter](https://twitter.com/tensorflow)
    Plain Text
    - Registered: Tue Apr 16 12:39:09 GMT 2024
    - Last Modified: Thu Oct 05 15:00:10 GMT 2023
    - 11.9K bytes
    - Viewed (0)
  10. CONTRIBUTING.md

    If you need to check on [CI](http://builds.gradle.org/) status as an external contributor, you can click "Log in as guest".
    
    ## Useful tips
    
    ### How Gradle Works
    
    We have [a series of blog](https://blog.gradle.org/how-gradle-works-1) that explains how Gradle works.
    This may help you better understand and contribute to Gradle.
    
    ### Debugging Gradle
    
    Plain Text
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Fri Feb 09 15:30:53 GMT 2024
    - 15.6K bytes
    - Viewed (0)
Back to top