Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 847 for requested (0.16 sec)

  1. src/main/java/jcifs/smb/NetServerEnumIterator.java

            }
    
            if ( this.workgroup && this.response.getStatus() == WinError.ERROR_MORE_DATA ) {
                this.request.reset(0, this.response.getLastName());
                this.response.reset();
                this.request.setSubCommand(SmbComTransaction.NET_SERVER_ENUM3);
                this.treeHandle.send(this.request, this.response);
                checkStatus();
                this.ridx = 0;
                return advance();
            }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6K bytes
    - Viewed (0)
  2. architecture/security/istio-agent.md

    ### Default CA Flow through istio-agent
    
    ![CA Flow](docs/ca.svg)
    
    A single SDS request from Envoy goes through a few different layers in istio-agent.
    
    1. First, the request is handled by the SDS server. This is mostly just an intermediate translation layer exposing
       the `SecretManager` to Envoy, without much business logic. For each resource requested by Envoy, the SDS server
       will call `SecretManager.GenerateSecret(resourceName)`
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Aug 22 16:45:50 GMT 2023
    - 7.2K bytes
    - Viewed (1)
  3. cmd/sts-datatypes.go

    }
    
    // AssumeRoleResponse contains the result of successful AssumeRole request.
    type AssumeRoleResponse struct {
    	XMLName xml.Name `xml:"https://sts.amazonaws.com/doc/2011-06-15/ AssumeRoleResponse" json:"-"`
    
    	Result           AssumeRoleResult `xml:"AssumeRoleResult"`
    	ResponseMetadata struct {
    		RequestID string `xml:"RequestId,omitempty"`
    	} `xml:"ResponseMetadata,omitempty"`
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 27 00:58:09 GMT 2022
    - 9.9K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/io/RandomAmountInputStream.java

    import static com.google.common.base.Preconditions.checkNotNull;
    
    import java.io.FilterInputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.util.Random;
    
    /** Returns a random portion of the requested bytes on each call. */
    class RandomAmountInputStream extends FilterInputStream {
      private final Random random;
    
      public RandomAmountInputStream(InputStream in, Random random) {
        super(checkNotNull(in));
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Dec 04 17:37:03 GMT 2017
    - 1.2K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/ProjectBuildingResult.java

        /**
         * Gets the result of the dependency resolution for the project.
         *
         * @return The result of the dependency resolution for the project or {@code null} if the project dependencies were
         *         not requested.
         */
        DependencyResolutionResult getDependencyResolutionResult();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/Configuration.java

         * 
         * @return maxmimum number of elements to request in a list request
         */
        int getListCount ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.listSize</tt> (int, default 65435)
         * 
         * @return maximum data size for list/info requests (known overhead is subtracted)
         */
        int getListSize ();
    
    
        /**
         * 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
  7. internal/grid/errors.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package grid
    
    import (
    	"errors"
    	"fmt"
    )
    
    var (
    	// ErrUnknownHandler is returned when an unknown handler is requested.
    	ErrUnknownHandler = errors.New("unknown mux handler")
    
    	// ErrHandlerAlreadyExists is returned when a handler is already registered.
    	ErrHandlerAlreadyExists = errors.New("mux handler already exists")
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Nov 21 01:09:35 GMT 2023
    - 1.4K bytes
    - Viewed (0)
  8. docs/sts/keycloak.md

    ```
    
    > NOTE: You can configure the `scopes` parameter to restrict the OpenID scopes requested by minio to the IdP, for example, `"openid,policy_role_attribute"`, being `policy_role_attribute` a client_scope / client_mapper that maps a role attribute called policy to a `policy` claim returned by Keycloak
    
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Sep 29 04:28:45 GMT 2022
    - 8.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/CacheStats.java

      }
    
      /**
       * Returns the ratio of cache requests which were misses. This is defined as {@code missCount /
       * requestCount}, or {@code 0.0} when {@code requestCount == 0}. Note that {@code hitRate +
       * missRate =~ 1.0}. Cache misses include all requests which weren't cache hits, including
       * requests which resulted in either successful or failed loading attempts, and requests which
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Sun Aug 07 02:38:22 GMT 2022
    - 12.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/CacheStats.java

      }
    
      /**
       * Returns the ratio of cache requests which were misses. This is defined as {@code missCount /
       * requestCount}, or {@code 0.0} when {@code requestCount == 0}. Note that {@code hitRate +
       * missRate =~ 1.0}. Cache misses include all requests which weren't cache hits, including
       * requests which resulted in either successful or failed loading attempts, and requests which
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Sun Aug 07 02:38:22 GMT 2022
    - 12.6K bytes
    - Viewed (0)
Back to top