Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 201 for retractions (0.37 sec)

  1. cmd/cloud-controller-manager/.import-restrictions

    Quan Tian <******@****.***> 1688701915 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 30 15:56:47 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. pkg/proxy/kubemark/.import-restrictions

    Dan Winship <******@****.***> 1678818230 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 13:47:54 UTC 2023
    - 176 bytes
    - Viewed (0)
  3. cmd/kube-apiserver/.import-restrictions

    Lubomir I. Ivanov <******@****.***> 1693913483 +0300
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 13:03:28 UTC 2023
    - 251 bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top