Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 246 for retractions (0.21 sec)

  1. cmd/import-boss/testdata/nested-fwd/aaa/.import-restrictions

    Tim Hockin <******@****.***> 1705473522 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 460 bytes
    - Viewed (0)
  2. pkg/.import-restrictions

    Aaron Crickenberger <******@****.***> 1588088809 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 28 15:46:49 UTC 2020
    - 459 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/.import-restrictions

    Elijah Oyekunle <******@****.***> 1580204995 +0100
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 28 09:51:46 UTC 2020
    - 129 bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/DefaultTask.java

        public String getName() {
            return super.getName();
        }
    
        @Override
        public List<Action<? super Task>> getActions() {
            return super.getActions();
        }
    
        @Override
        public void setActions(List<Action<? super Task>> replacements) {
            super.setActions(replacements);
        }
    
        @Override
        public Set<Object> getDependsOn() {
            return super.getDependsOn();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  5. staging/publishing/import-restrictions.yaml

    Sascha Grunert <******@****.***> 1714653658 +0200
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 13:13:22 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/VersionRangeTest.java

            List<Restriction> restrictions = spec.getRestrictions();
            assertEquals(1, restrictions.size(), CHECK_NUM_RESTRICTIONS);
    
            VersionRange version = VersionRange.createFromVersion("1.0");
            assertSame(version, VersionRange.createFromVersion("1.0")); // same instance from version cache
            restrictions = version.getRestrictions();
            assertEquals(0, restrictions.size(), CHECK_NUM_RESTRICTIONS);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 44.3K bytes
    - Viewed (0)
  7. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/VersionRange.java

        public VersionRange restrict(VersionRange restriction) {
            List<Restriction> r1 = this.restrictions;
            List<Restriction> r2 = restriction.restrictions;
            List<Restriction> restrictions;
    
            if (r1.isEmpty() || r2.isEmpty()) {
                restrictions = Collections.emptyList();
            } else {
                restrictions = Collections.unmodifiableList(intersection(r1, r2));
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. hack/verify-import-boss.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script checks import restrictions. The script looks for a file called
    # `.import-restrictions` in each directory, then all imports of the package are
    # checked against each "rule" in the file.
    # Usage: `hack/verify-import-boss.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. pkg/features/security.go

    var (
    	CompliancePolicy = env.Register("COMPLIANCE_POLICY", "",
    		`If set, applies policy-specific restrictions over all existing TLS
    settings, including in-mesh mTLS and external TLS. Valid values are:
    
    * '' or unset places no additional restrictions.
    * 'fips-140-2' which enforces a version of the TLS protocol and a subset
    of cipher suites overriding any user preferences or defaults for all runtime
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 00:16:21 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. releasenotes/notes/fips.yaml

      curves to `P-256`. These restrictions apply on the following data paths:
    
      * mTLS communication between Envoy proxies;
      * regular TLS on the downstream and the upstream of Envoy proxies (e.g. gateway);
      * Google gRPC side requests from Envoy proxies (e.g. Stackdriver extensions);
      * Istiod xDS server;
      * Istiod injection and validation webhook servers.
    
      The restrictions are not applied on the following data paths:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 00:16:21 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top