Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for restrictions (0.12 sec)

  1. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCurtainBeforeHookTest.java

        private DfFinalTimeZoneProvider getDBFluteSystemTimeZoneProvider() {
            try {
                // Try to access the field, handling potential security restrictions
                Field field = DBFluteSystem.class.getDeclaredField("finalTimeZoneProvider");
                field.setAccessible(true);
                return (DfFinalTimeZoneProvider) field.get(null);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/annotation/SecuredTest.java

        }
    
        // Test annotation on constructor (should not compile, but test for completeness)
        static class ConstructorClass {
            // Note: @Secured cannot be applied to constructors due to @Target restrictions
            public ConstructorClass() {
            }
        }
    
        public void test_constructorCannotBeAnnotated() throws NoSuchMethodException {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.32.md

    - Kubernetes is now built using Go 1.23.11 ([#132898](https://github.com/kubernetes/kubernetes/pull/132898), [@cpanato](https://github.com/cpanato)) [SIG Release and Testing]
    
    ### Bug or Regression
    
    - Changed the node restrictions to disallow the node to change it's ownerReferences. ([#133469](https://github.com/kubernetes/kubernetes/pull/133469), [@natherz97](https://github.com/natherz97)) [SIG Auth]
    
    ## Dependencies
    
    ### Added
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 14:49:49 UTC 2025
    - 412.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/TreeRangeSet.java

        private final Range<C> restriction;
    
        SubRangeSet(Range<C> restriction) {
          super(
              new SubRangeSetRangesByLowerBound<C>(
                  Range.<Cut<C>>all(), restriction, TreeRangeSet.this.rangesByLowerBound));
          this.restriction = restriction;
        }
    
        @Override
        public boolean encloses(Range<C> range) {
          if (!restriction.isEmpty() && restriction.encloses(range)) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 32.3K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.33.md

    - Kubernetes is now built using Go 1.24.5 ([#132897](https://github.com/kubernetes/kubernetes/pull/132897), [@cpanato](https://github.com/cpanato)) [SIG Release and Testing]
    
    ### Bug or Regression
    
    - Changed the node restrictions to disallow the node to change it's ownerReferences. ([#133468](https://github.com/kubernetes/kubernetes/pull/133468), [@natherz97](https://github.com/natherz97)) [SIG Auth]
    
    ## Dependencies
    
    ### Added
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 19:46:23 UTC 2025
    - 294.3K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.34.md

    ### Bug or Regression
    
    - Changed the node restrictions to disallow the node to change it's ownerReferences. ([#133467](https://github.com/kubernetes/kubernetes/pull/133467), [@natherz97](https://github.com/natherz97)) [SIG Auth]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 27 10:36:10 UTC 2025
    - 292.8K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.31.md

    - Kubernetes is now built using Go 1.23.11 ([#132899](https://github.com/kubernetes/kubernetes/pull/132899), [@cpanato](https://github.com/cpanato)) [SIG Release and Testing]
    
    ### Bug or Regression
    
    - Changed the node restrictions to disallow the node to change it's ownerReferences. ([#133470](https://github.com/kubernetes/kubernetes/pull/133470), [@natherz97](https://github.com/natherz97)) [SIG Auth]
    
    ## Dependencies
    
    ### Added
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 19:49:57 UTC 2025
    - 429.6K bytes
    - Viewed (0)
Back to top