Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,079 for after (0.01 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/After.java

    import org.apache.maven.api.annotations.Experimental;
    
    /**
     * Specifies that the mojo should be run after the specific phase.
     *
     * @since 4.0.0
     */
    @Experimental
    @Documented
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.TYPE)
    @Inherited
    public @interface After {
    
        /**
         * Type of pointer.
         * @see org.apache.maven.api.Lifecycle.Pointer.Type
         */
        enum Type {
    Registered: 2025-05-24 08:56
    - Last Modified: 2024-08-29 05:48
    - 1.8K bytes
    - Viewed (0)
  2. tests/associations_many2many_test.go

    	}
    	AssertAssociationCount(t, user2, "Languages", 1, "after delete non-existing data")
    
    	if err := DB.Model(&user2).Association("Languages").Delete(&language2); err != nil {
    		t.Fatalf("Error happened when delete Languages, got %v", err)
    	}
    	AssertAssociationCount(t, user2, "Languages", 0, "after delete")
    
    	// Prepare Data for Clear
    Registered: 2025-05-25 09:35
    - Last Modified: 2023-06-10 13:05
    - 13.2K bytes
    - Viewed (0)
  3. mockwebserver/src/main/kotlin/mockwebserver3/SocketPolicy.kt

    sealed interface SocketPolicy {
      /**
       * Shutdown [MockWebServer] after writing response.
       */
      object ShutdownServerAfterResponse : SocketPolicy
    
      /**
       * Keep the socket open after the response. This is the default HTTP/1.1 behavior.
       */
      object KeepOpen : SocketPolicy
    
      /**
       * Close the socket after the response. This is the default HTTP/1.0 behavior. For HTTP/2
    Registered: 2025-05-30 11:42
    - Last Modified: 2024-01-23 14:31
    - 4.6K bytes
    - Viewed (0)
  4. scripts/sponsors.py

        )
        if response.status_code != 200:
            logging.error(f"Response was not 200, after: {after}")
            logging.error(response.text)
            raise RuntimeError(response.text)
        data = response.json()
        if "errors" in data:
            logging.error(f"Errors in response, after: {after}")
            logging.error(data["errors"])
            logging.error(response.text)
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-01-18 12:58
    - 6.1K bytes
    - Viewed (0)
  5. src/arena/arena.go

    Note that by allowing for this limited form of manual memory allocation
    that use-after-free bugs are possible with regular Go values. This package
    limits the impact of these use-after-free bugs by preventing reuse of freed
    memory regions until the garbage collector is able to determine that it is
    safe. Typically, a use-after-free bug will result in a fault and a helpful
    Registered: 2025-05-27 11:13
    - Last Modified: 2022-10-12 20:23
    - 4.3K bytes
    - Viewed (0)
  6. cmd/api-resources_test.go

    				"continuation-token": []string{"dG9rZW4="},
    				"start-after":        []string{"start-after"},
    				"delimiter":          []string{SlashSeparator},
    				"fetch-owner":        []string{"true"},
    				"max-keys":           []string{"100"},
    				"encoding-type":      []string{"gzip"},
    			},
    			prefix:       "photos/",
    			token:        "token",
    			startAfter:   "start-after",
    			delimiter:    SlashSeparator,
    			fetchOwner:   true,
    Registered: 2025-05-25 19:28
    - Last Modified: 2021-04-23 18:58
    - 7.1K bytes
    - Viewed (0)
  7. tests/multi_primary_keys_test.go

    		t.Fatalf("Blog should has three tags after Append")
    	}
    
    	if DB.Model(&blog).Association("SharedTags").Count() != 3 {
    		t.Fatalf("Blog should has three tags after Append")
    	}
    
    	if DB.Model(&blog2).Association("SharedTags").Count() != 3 {
    		t.Fatalf("Blog should has three tags after Append")
    	}
    
    	var tags []Tag
    	DB.Model(&blog).Association("SharedTags").Find(&tags)
    Registered: 2025-05-25 09:35
    - Last Modified: 2022-01-06 07:02
    - 12.8K bytes
    - Viewed (0)
  8. scripts/people.py

        if response.status_code != 200:
            logging.error(
                f"Response was not 200, after: {after}, category_id: {category_id}"
            )
            logging.error(response.text)
            raise RuntimeError(response.text)
        data = response.json()
        if "errors" in data:
            logging.error(f"Errors in response, after: {after}, category_id: {category_id}")
            logging.error(data["errors"])
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-01-28 20:34
    - 12.1K bytes
    - Viewed (0)
  9. docs/distributed/decom-encrypted-kes.sh

    	echo "BUG: original user count differs after decommission"
    	exit 1
    fi
    
    if [ "$policy_count" -ne "$decom_policy_count" ]; then
    	echo "BUG: original policy count differs after decommission"
    	exit 1
    fi
    
    ./mc version info myminio/versioned | grep -q "versioning is enabled"
    ret=$?
    if [ $ret -ne 0 ]; then
    	echo "BUG: expected versioning enabled after decommission"
    	exit 1
    fi
    
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-05-27 19:17
    - 7.1K bytes
    - Viewed (0)
  10. tests/associations_belongs_to_test.go

    	}
    
    	AssertAssociationCount(t, users, "Company", 2, "After Delete")
    
    	// Clear
    	DB.Model(&users).Association("Company").Clear()
    	AssertAssociationCount(t, users, "Company", 0, "After Clear")
    
    	DB.Model(&users).Association("Manager").Clear()
    	AssertAssociationCount(t, users, "Manager", 0, "After Clear")
    
    	// shared company
    	company := Company{Name: "shared"}
    Registered: 2025-05-25 09:35
    - Last Modified: 2023-10-30 09:15
    - 9.3K bytes
    - Viewed (0)
Back to top