Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 489 for mechanisms (0.36 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/Managed.java

     * <p>
     * Gradle generates implementations for managed types.
     * As such, managed types are declared either as interfaces or abstract classes.
     * The generated implementation integrates with the model space mechanisms, and manages mutability.
     * <p>
     * Managed types are mostly behaviour-less, as they are data.
     * Instances of managed types should effectively be considered value objects.
     *
     * <h3>Properties</h3>
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/security/get-current-user.md

        We are not restricted to having only one dependency that can return that type of data.
    
    ## Other models
    
    You can now get the current user directly in the *path operation functions* and deal with the security mechanisms at the **Dependency Injection** level, using `Depends`.
    
    And you can use any model or data for the security requirements (in this case, a Pydantic model `User`).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. cmd/warm-backend-azure.go

    		return nil, errors.New("multiple authentication mechanisms are provided")
    	case conf.AccountKey == "" && (conf.SPAuth.TenantID == "" || conf.SPAuth.ClientID == "" || conf.SPAuth.ClientSecret == ""):
    		return nil, errors.New("no authentication mechanism was provided")
    	}
    
    	if conf.Bucket == "" {
    		return nil, errors.New("no bucket name was provided")
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 05 16:44:08 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/netbios/UniAddress.java

     * handled internally to the <code>jcifs.smb</code> package.
     * <p>
     * This class is a wrapper for both {@link jcifs.netbios.NbtAddress}
     * and {@link java.net.InetAddress}. The name resolution mechanisms
     * used will systematically query all available configured resolution
     * services including WINS, broadcasts, DNS, and LMHOSTS. See
     * <a href="../../resolver.html">Setting Name Resolution Properties</a>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.3K bytes
    - Viewed (0)
  5. src/runtime/HACKING.md

    `GOTRACEBACK=system`). Whether `throw` crashes or not is still controlled by
    `GOTRACEBACK`.
    
    Synchronization
    ===============
    
    The runtime has multiple synchronization mechanisms. They differ in
    semantics and, in particular, in whether they interact with the
    goroutine scheduler or the OS scheduler.
    
    The simplest is `mutex`, which is manipulated using `lock` and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/InstantiatorFactory.java

    import org.gradle.internal.service.scopes.ServiceScope;
    import org.gradle.internal.state.ManagedFactory;
    
    import java.lang.annotation.Annotation;
    import java.util.Collection;
    
    /**
     * Provides various mechanisms for instantiation of objects.
     *
     * <p>A service of this type is available in all scopes and is the recommended way to obtain an {@link Instantiator} and other types.</p>
     */
    @ServiceScope(Scope.Global.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. src/net/http/httptrace/trace.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package httptrace provides mechanisms to trace the events within
    // HTTP client requests.
    package httptrace
    
    import (
    	"context"
    	"crypto/tls"
    	"internal/nettrace"
    	"net"
    	"net/textproto"
    	"reflect"
    	"time"
    )
    
    // unique type to prevent assignment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. docs/docker/README.md

      -v D:\data:/data \
      quay.io/minio/minio server /data --console-address ":9001"
    ```
    
    ### Run MinIO Docker as a regular user
    
    Docker provides standardized mechanisms to run docker containers as non-root users.
    
    #### GNU/Linux and macOS (regular user)
    
    On Linux and macOS you can use `--user` to run the container as regular user.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.2K bytes
    - Viewed (2)
  9. tensorflow/compiler/mlir/lite/tf_tfl_translate_cl.cc

    // This is not intended to be a general solution for custom ops for the future
    // but mainly for supporting older models like mobilenet_ssd. More appropriate
    // mechanisms, such as op hints or using functions to represent composable ops
    // like https://github.com/tensorflow/community/pull/113 should be encouraged
    // going forward.
    // NOLINTNEXTLINE
    llvm::cl::list<std::string> custom_opdefs(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 20:53:17 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SpnegoContext.java

        }
    
    
        @Override
        public boolean isSupported ( ASN1ObjectIdentifier mechanism ) {
            // prevent nesting
            return false;
        }
    
    
        /**
         * Determines what mechanism is being used for this context.
         * 
         * @return the Oid of the mechanism being used
         */
        ASN1ObjectIdentifier[] getMechs () {
            return this.mechs;
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 04 04:18:31 UTC 2021
    - 14.8K bytes
    - Viewed (0)
Back to top