Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of about 10,000 for useN (0.33 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

     private:
      linked_ptr<const ParamGeneratorInterface<T> > impl_;
    };
    
    // Generates values from a range of two comparable values. Can be used to
    // generate sequences of user-defined types that implement operator+() and
    // operator<().
    // This class is used in the Range() function.
    template <typename T, typename IncrementT>
    class RangeGenerator : public ParamGeneratorInterface<T> {
     public:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/GradleEnterprisePluginServiceRef.java

    /**
     * A service that provides the plugin service for the current build invocation.
     *
     * The plugin uses this to encapsulate its service in user facing code that may be cached.
     * This allows such cached code to use the plugin service for the current build when used from-cache.
     */
    @ServiceScope(Scope.BuildTree.class)
    public interface GradleEnterprisePluginServiceRef {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. docs/sts/ldap.md

    - The user can now use these credentials to make requests to the MinIO server.
    
    The administrator will associate IAM access policies with each group and if required with the user too. The MinIO server then evaluates applicable policies on a user (these are the policies associated with the groups along with the policy on the user if any) to check if the request should be allowed or denied.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/core-plugins/build_init_plugin.adoc

    
    [[sec:java_gradle_plugin]]
    === `java-gradle-plugin` build type
    
    The “`java-gradle-plugin`” build type is not inferable. It must be explicitly specified.
    
    It has the following features:
    
    * Uses the “`java-gradle-plugin`” plugin to produce a Gradle plugin implemented in Java
    * Uses the “`mavenCentral`” dependency repository
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/help/helpdoc.go

    	GitHub (Git)
    
    		import "github.com/user/project"
    		import "github.com/user/project/sub/directory"
    
    	Launchpad (Bazaar)
    
    		import "launchpad.net/project"
    		import "launchpad.net/project/series"
    		import "launchpad.net/project/series/sub/directory"
    
    		import "launchpad.net/~user/project/branch"
    		import "launchpad.net/~user/project/branch/sub/directory"
    
    	IBM DevOps Services (Git)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  6. pkg/kubelet/eviction/api/types.go

    	SignalNodeFsAvailable Signal = "nodefs.available"
    	// SignalNodeFsInodesFree is amount of inodes available on filesystem that kubelet uses for volumes, daemon logs, etc.
    	SignalNodeFsInodesFree Signal = "nodefs.inodesFree"
    	// SignalImageFsAvailable is amount of storage available on filesystem that container runtime uses for storing images layers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/security/simple-oauth2.md

    ```JSON
    {
      "detail": "Not authenticated"
    }
    ```
    
    ### Inactive user
    
    Now try with an inactive user, authenticate with:
    
    User: `alice`
    
    Password: `secret2`
    
    And try to use the operation `GET` with the path `/users/me`.
    
    You will get an "Inactive user" error, like:
    
    ```JSON
    {
      "detail": "Inactive user"
    }
    ```
    
    ## Recap
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/config/common.go

    	// v1.13: v1alpha3 read-only, writes only v1beta1 config. Errors if the user tries to use v1alpha1 or v1alpha2
    	// v1.14: v1alpha3 convert only, writes only v1beta1 config. Errors if the user tries to use v1alpha1 or v1alpha2
    	// v1.15: v1beta1 read-only, writes only v1beta2 config. Errors if the user tries to use v1alpha1, v1alpha2 or v1alpha3
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/security/first-steps.md

        * Normally, a token is set to expire after some time.
            * So, the user will have to log in again at some point later.
            * And if the token is stolen, the risk is less. It is not like a permanent key that will work forever (in most of the cases).
    * The frontend stores that token temporarily somewhere.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:48:20 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #  define GTEST_HAS_TR1_TUPLE 0
    # else
    // The user didn't tell us not to do it, so we assume it's OK.
    #  define GTEST_HAS_TR1_TUPLE 1
    # endif
    #endif  // GTEST_HAS_TR1_TUPLE
    
    // Determines whether Google Test's own tr1 tuple implementation
    // should be used.
    #ifndef GTEST_USE_OWN_TR1_TUPLE
    // The user didn't tell us, so we need to figure it out.
    
    // We use our own TR1 tuple if we aren't sure the user has an
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
Back to top