Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 891 for Capabilities (0.2 sec)

  1. pkg/capabilities/capabilities.go

    limitations under the License.
    */
    
    package capabilities
    
    import (
    	"sync"
    )
    
    // Capabilities defines the set of capabilities available within the system.
    // For now these are global.  Eventually they may be per-user
    type Capabilities struct {
    	AllowPrivileged bool
    
    	// Pod sources from which to allow privileged capabilities like host networking, sharing the host
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 12:51:16 UTC 2019
    - 3K bytes
    - Viewed (0)
  2. gradle/dependency-management/capabilities.json

    // This file is a spike of what externally published rules for capabilities could look like.
    //
    // The idea is that such "rules" could be published, then applied by a plugin.
    //
    // Whenever two libraries provide the same capability, for example, "log4j" and "log4j-over-slfj4",
    // it's illegal to have both of them on the classpath. Use this file to declare that they provide
    // the same capability, and that we prefer to use slf4j in this case.
    [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 14:54:52 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/core/v1/capabilities.go

    // with apply.
    type CapabilitiesApplyConfiguration struct {
    	Add  []v1.Capability `json:"add,omitempty"`
    	Drop []v1.Capability `json:"drop,omitempty"`
    }
    
    // CapabilitiesApplyConfiguration constructs an declarative configuration of the Capabilities type for use with
    // apply.
    func Capabilities() *CapabilitiesApplyConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/gradle/module-with-capabilities.module

            {
                "name": "api",
                "capabilities": [
                    { "group": "g1", "name": "m1", "version": "v1" },
                    { "group": "g2", "name": "m2", "version": "v2" }
                ],
                "attributes": { "usage": "compile" }
            },
            {
                "attributes": { "usage": "runtime", "packaging": "zip" },
                "capabilities": [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 627 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-declaringCapabilities/tests/declaring-capabilities.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 436 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ImmutableCapabilities.java

        }
    
        public static ImmutableCapabilities of(@Nullable Collection<? extends Capability> capabilities) {
            if (capabilities == null || capabilities.isEmpty()) {
                return EMPTY;
            }
            if (capabilities.size() == 1) {
                Capability single = capabilities.iterator().next();
                return of(single);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/component_capabilities.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[declaring-component-capabilities]]
    = Declaring Capabilities of a Library
    
    == Capabilities as first-level concept
    
    Components provide a number of features which are often orthogonal to the software architecture used to provide those features.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java

            this.capabilities &= this.server.scapabilities;
            if ( ( this.server.scapabilities & SmbConstants.CAP_EXTENDED_SECURITY ) == SmbConstants.CAP_EXTENDED_SECURITY )
                this.capabilities |= SmbConstants.CAP_EXTENDED_SECURITY; // & doesn't copy high bit
    
            if ( ctx.getConfig().isUseUnicode() || ctx.getConfig().isForceUnicode() ) {
                this.capabilities |= SmbConstants.CAP_UNICODE;
            }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:52:42 UTC 2020
    - 15.4K bytes
    - Viewed (0)
  9. pkg/capabilities/capabilities_test.go

    limitations under the License.
    */
    
    package capabilities
    
    import (
    	"reflect"
    	"sync"
    	"testing"
    )
    
    func TestGet(t *testing.T) {
    	defer func() {
    		capInstance.lock.Lock()
    		defer capInstance.lock.Unlock()
    		capInstance.capabilities = nil
    		capInstance.once = sync.Once{}
    	}()
    	defaultCap := Capabilities{
    		AllowPrivileged: false,
    		PrivilegedSources: PrivilegedSources{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 13 09:53:47 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/CapabilitiesDescriber.java

            StringBuilder sb = new StringBuilder("capabilit");
            if (capabilities.size() > 1) {
                sb.append("ies ");
                sb.append(describeCapabilities(targetComponentId, capabilities));
            } else {
                sb.append("y ").append(describeCapabilities(targetComponentId, capabilities));
            }
            return sb.toString();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top