Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 489 for mechanisms (0.18 sec)

  1. pkg/volume/util/fs/fs.go

    	}
    
    	// First check whether the quota system knows about this directory
    	// A nil quantity or error means that the path does not support quotas
    	// or xfs_quota tool is missing and we should use other mechanisms.
    	startTime := time.Now()
    	consumption, _ := fsquota.GetConsumption(path)
    	if consumption != nil {
    		usage.Bytes = consumption.Value()
    		defer servermetrics.CollectVolumeStatCalDuration("fsquota", startTime)
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 20 02:56:02 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  2. src/plugin/plugin.go

    //     files that blank-import the desired set of plugins and then
    //     compile a static executable in the usual way.
    //
    // For these reasons, many users decide that traditional interprocess
    // communication (IPC) mechanisms such as sockets, pipes, remote
    // procedure call (RPC), shared memory mappings, or file system
    // operations may be more suitable despite the performance overheads.
    package plugin
    
    // Plugin is a loaded Go plugin.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:46:10 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/tls/BasicCertificateChainCleaner.kt

    /**
     * A certificate chain cleaner that uses a set of trusted root certificates to build the trusted
     * chain. This class duplicates the clean chain building performed during the TLS handshake. We
     * prefer other mechanisms where they exist, such as with
     * [okhttp3.internal.platform.AndroidPlatform.AndroidCertificateChainCleaner].
     *
     * This class includes code from [Conscrypt's][Conscrypt] [TrustManagerImpl] and
     * [TrustedCertificateIndex].
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. tests/integration/pilot/README.md

    # Writing Tests for VMs
    
    This document describes the integration and extension mechanisms to exercise VM related code.
    The primary goals are to:
    1. Test VM-related Istio code so that newly submitted commits won't break VM support
    1. Ensure the code works on a range of supported OS types and versions.
    
    **Note: We currently use mock/simulated VMs for testing purposes. In the future, the testing might switch
    to utilize actual compute instances from different providers.**
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 07 21:28:34 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. README.md

    ----
    
    Kubernetes, also known as K8s, is an open source system for managing [containerized applications]
    across multiple hosts. It provides basic mechanisms for the deployment, maintenance,
    and scaling of applications.
    
    Kubernetes builds upon a decade and a half of experience at Google running
    production workloads at scale using a system called [Borg],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. SECURITY.md

    mechanisms that prevent unwanted access to the data from other tenants.
    
    Network isolation between different models is also important not only to prevent
    unauthorized access to data or models, but also to prevent malicious users or
    tenants sending graphs to execute under another tenant’s identity.
    
    The isolation mechanisms are the responsibility of the users to design and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Oct 01 06:06:35 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  7. src/net/smtp/smtp.go

    	// connection later
    	conn net.Conn
    	// whether the Client is using TLS
    	tls        bool
    	serverName string
    	// map of supported extensions
    	ext map[string]string
    	// supported auth mechanisms
    	auth       []string
    	localName  string // the name to use in HELO/EHLO
    	didHello   bool   // whether we've said HELO/EHLO
    	helloError error  // the error from the hello
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. architecture/networking/controllers.md

    A queue is used to give a few properties:
    * Ability to serially process updates received from a variety of different sources. This avoids need for other synchronization mechanisms like mutexes.
    * Correctness at startup; with the sequencing above, items are only processed once all informers are synced. This means queries will not return stale data at startup.
    * Deduping of identical events
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 09 17:41:25 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/security/index.md

    ## **FastAPI** utilities
    
    FastAPI provides several tools for each of these security schemes in the `fastapi.security` module that simplify using these security mechanisms.
    
    In the next chapters you will see how to add security to your API using those tools provided by **FastAPI**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 24 14:47:15 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. 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)
Back to top