Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 139 for restriction (0.17 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_maven.adoc

    Maven restricts `groupId` and `artifactId` to a limited character set (`[A-Za-z0-9_\\-.]+`) and Gradle enforces this restriction. For `version` (as well as the artifact `extension` and `classifier` properties), Gradle will handle any valid Unicode character.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  2. src/cmd/link/internal/amd64/asm.go

    //
    // Permission is hereby granted, free of charge, to any person obtaining a copy
    // of this software and associated documentation files (the "Software"), to deal
    // in the Software without restriction, including without limitation the rights
    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 21K bytes
    - Viewed (0)
  3. src/image/jpeg/scan.go

    			if scan[i].compIndex == scan[j].compIndex {
    				return FormatError("repeated component selector")
    			}
    		}
    		totalHV += d.comp[compIndex].h * d.comp[compIndex].v
    
    		// The baseline t <= 1 restriction is specified in table B.3.
    		scan[i].td = d.tmp[2+2*i] >> 4
    		if t := scan[i].td; t > maxTh || (d.baseline && t > 1) {
    			return FormatError("bad Td value")
    		}
    		scan[i].ta = d.tmp[2+2*i] & 0x0f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. src/cmd/internal/objabi/reloctype.go

    //
    // Permission is hereby granted, free of charge, to any person obtaining a copy
    // of this software and associated documentation files (the "Software"), to deal
    // in the Software without restriction, including without limitation the rights
    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  5. src/syscall/exec_linux_test.go

    }
    
    func TestAmbientCapsUserns(t *testing.T) {
    	b, err := os.ReadFile("/proc/sys/kernel/apparmor_restrict_unprivileged_userns")
    	if err == nil && strings.TrimSpace(string(b)) == "1" {
    		t.Skip("AppArmor restriction for unprivileged user namespaces is enabled")
    	}
    	testAmbientCaps(t, true)
    }
    
    func testAmbientCaps(t *testing.T, userns bool) {
    	if os.Getenv("GO_WANT_HELPER_PROCESS") == "1" {
    		caps, err := getCaps()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/storage/v1/types_swagger_doc_generated.go

    }
    
    func (StorageClass) SwaggerDoc() map[string]string {
    	return map_StorageClass
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 07:07:45 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  7. plugin/pkg/admission/noderestriction/admission.go

    	if len(modifiedLabels) == 0 {
    		return nil
    	}
    
    	forbiddenLabels := sets.NewString()
    	for label := range modifiedLabels {
    		namespace := getLabelNamespace(label)
    		// forbid kubelets from setting node-restriction labels
    		if namespace == v1.LabelNamespaceNodeRestriction || strings.HasSuffix(namespace, "."+v1.LabelNamespaceNodeRestriction) {
    			forbiddenLabels.Insert(label)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParserTest.groovy

            then:
            def e = thrown(MetaDataParseException)
            e.cause.message == "External Entity: Failed to read external document 'external.txt', because 'file' access is not allowed due to restriction set by the accessExternalDTD property."
        }
    
        private void parse(DescriptorParseContext parseContext, TestFile file) {
            def parseResult = parser.parseMetaData(parseContext, file)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 33.8K bytes
    - Viewed (0)
  9. tests/integration/README.md

    ### Adding a Test Suite
    
    All tests that use the framework, must run as part of a *suite*. Only a single suite can be defined per package, since
    it is bootstrapped by a Go `TestMain`, which has the same restriction.
    
    To begin, create a new folder for your suite under
    [tests/integration](https://github.com/istio/istio/tree/master/tests/integration).
    
    ```console
    $ cd ${ISTIO}/tests/integration
    $ mkdir mysuite
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/storage/v1/generated.proto

      // Each volume plugin defines its own supported topology specifications.
      // An empty TopologySelectorTerm list means there is no topology restriction.
      // This field is only honored by servers that enable the VolumeScheduling feature.
      // +optional
      // +listType=atomic
      repeated .k8s.io.api.core.v1.TopologySelectorTerm allowedTopologies = 8;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
Back to top