Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 2,181 for Avery (0.11 sec)

  1. docs/iam/access-management-plugin.md

    When configured, MinIO sends request and credential details for every API call to an external HTTP(S) endpoint and expects an allow/deny response. MinIO is thus able to delegate access management to an external system, and users are able to use a custom solution instead of S3 standard IAM policies.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Dec 13 22:28:48 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_json_issue35169.txt

    ! go test -json .
    
    	# We should see only JSON output on stdout, no non-JSON.
    	# To simplify the check, we just look for non-curly-braces, since
    	# every JSON entry has them and they're unlikely to occur
    	# in other error messages.
    ! stdout '^[^{]'
    ! stdout '[^}]\n$'
    
    	# Since the only test we requested failed to build, we should
    	# not see any "pass" actions in the JSON stream.
    ! stdout '\{.*"Action":"pass".*\}'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:29:21 UTC 2023
    - 804 bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/ValidityAwareCachedValue.kt

    import org.jetbrains.kotlin.analysis.api.lifetime.assertIsValidAndAccessible
    import kotlin.properties.ReadOnlyProperty
    import kotlin.reflect.KProperty
    
    /**
     * Lazy value that guaranties safe publication and checks validity on every access
     */
    internal class ValidityAwareCachedValue<T>(
        private val token: KaLifetimeToken,
        init: () -> T
    ) : ReadOnlyProperty<Any, T> {
        private val lazyValue = lazy(LazyThreadSafetyMode.PUBLICATION, init)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/internal/metaobject/MethodAccess.java

     */
    public interface MethodAccess {
        /**
         * Returns true when this object is known to have a method with the given name that accepts the given arguments.
         *
         * <p>Note that not every method is known. Some methods may require an attempt invoke it in order for them to be discovered.</p>
         */
        boolean hasMethod(String name, @Nullable Object... arguments);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 10:01:06 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. src/runtime/cgo/gcc_aix_ppc64.c

    /*
     * libinit aims to replace .init_array section which isn't available on aix.
     * Using __attribute__ ((constructor)) let gcc handles this instead of
     * adding special code in cmd/link.
     * However, it will be called for every Go programs which has cgo.
     * Inside _rt0_ppc64_aix_lib(), runtime.isarchive is checked in order
     * to know if this program is a c-archive or a simple cgo program.
     * If it's not set, _rt0_ppc64_ax_lib() returns directly.
     */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/seh.go

    	// it will be updated later with a R_PEIMAGEOFF relocation to the
    	// exception handler.
    	buf.write32(0)
    
    	// The list of unwind infos in a PE binary have very low cardinality
    	// as each info only contains frame pointer operations,
    	// which are very similar across functions.
    	// Dedup them when possible.
    	hash := base64.StdEncoding.EncodeToString(buf.data)
    	symname := fmt.Sprintf("%d.%s", len(buf.data), hash)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. docs_src/schema_extra_example/tutorial001_py310_pv1.py

        price: float
        tax: float | None = None
    
        class Config:
            schema_extra = {
                "examples": [
                    {
                        "name": "Foo",
                        "description": "A very nice Item",
                        "price": 35.4,
                        "tax": 3.2,
                    }
                ]
            }
    
    
    @app.put("/items/{item_id}")
    async def update_item(item_id: int, item: Item):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 631 bytes
    - Viewed (0)
  8. docs_src/schema_extra_example/tutorial004_an_py39.py

    async def update_item(
        *,
        item_id: int,
        item: Annotated[
            Item,
            Body(
                examples=[
                    {
                        "name": "Foo",
                        "description": "A very nice Item",
                        "price": 35.4,
                        "tax": 3.2,
                    },
                    {
                        "name": "Bar",
                        "price": "35.4",
                    },
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jul 01 16:43:29 UTC 2023
    - 936 bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/initialization/DistributionInitScriptFinder.java

     * limitations under the License.
     */
    package org.gradle.initialization;
    
    import java.io.File;
    import java.util.Collection;
    
    /**
     * An {@link InitScriptFinder} that includes every *.gradle file in $gradleHome/init.d.
     */
    public class DistributionInitScriptFinder extends DirectoryInitScriptFinder {
        final File gradleHome;
    
        public DistributionInitScriptFinder(File gradleHome) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/build/BuildAddedListener.java

    import org.gradle.internal.service.scopes.Scope;
    
    /**
     * Listener for changes to the {@link BuildStateRegistry}.
     */
    @EventScope(Scope.BuildTree.class)
    public interface BuildAddedListener {
        /**
         * Called every time a build is added to the {@link BuildStateRegistry}.
         *
         * The first call is always for the root build.
         */
        void buildAdded(BuildState buildState);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top