Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 3,430 for overridden (0.12 sec)

  1. CHANGELOG/CHANGELOG-1.28.md

    - `component-base/logs` is now stricter about not applying configurations multiple
      times and will return an error when that is attempted. Can be overridden by binaries
      which need to do that. ([#117108](https://github.com/kubernetes/kubernetes/pull/117108), [@pohly](https://github.com/pohly))
    - `kube-controller-manager`: The `LegacyServiceAccountTokenCleanUp` feature gate
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Wed Oct 23 04:34:59 UTC 2024
    - 456.9K bytes
    - Viewed (0)
  2. tests/test_default_response_class_router.py

    
    class OverrideResponse(JSONResponse):
        media_type = "application/x-override"
    
    
    app = FastAPI()
    router_a = APIRouter()
    router_a_a = APIRouter()
    router_a_b_override = APIRouter()  # Overrides default class
    router_b_override = APIRouter()  # Overrides default class
    router_b_a = APIRouter()
    router_b_a_c_override = APIRouter()  # Overrides default class again
    
    
    @app.get("/")
    def get_root():
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Mar 01 20:49:20 UTC 2020
    - 5K bytes
    - Viewed (0)
  3. RELEASE.md

            Protocol available through
            `tf.types.experimental.SupportsTracingProtocol`.
        *   `TypeSpec` classes (as associated with `ExtensionTypes`) also implement
            the Tracing Protocol which can be overridden if necessary.
        *   The newly introduced `reduce_retracing` option also uses the Tracing
            Protocol to proactively generate generalized traces similar to
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Tue Oct 22 14:33:53 UTC 2024
    - 735.3K bytes
    - Viewed (0)
  4. tests/test_default_response_class.py

    class OverrideResponse(JSONResponse):
        media_type = "application/x-override"
    
    
    app = FastAPI(default_response_class=ORJSONResponse)
    router_a = APIRouter()
    router_a_a = APIRouter()
    router_a_b_override = APIRouter()  # Overrides default class
    router_b_override = APIRouter()  # Overrides default class
    router_b_a = APIRouter()
    router_b_a_c_override = APIRouter()  # Overrides default class again
    
    
    @app.get("/")
    def get_root():
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Mar 01 20:49:20 UTC 2020
    - 5.2K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/eventbus/outside/AnnotatedNotAbstractInSuperclassTest.java

        @Override
        public void overriddenNotAnnotatedInSubclass(Object o) {
          super.overriddenNotAnnotatedInSubclass(o);
        }
    
        @Subscribe
        @Override
        public void overriddenAndAnnotatedInSubclass(Object o) {
          super.overriddenAndAnnotatedInSubclass(o);
        }
    
        @Override
        public void differentlyOverriddenNotAnnotatedInSubclass(Object o) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Feb 08 21:35:40 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  6. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/CommonsCliOptions.java

            this.source = requireNonNull(source);
            this.cliManager = requireNonNull(cliManager);
            this.commandLine = requireNonNull(commandLine);
        }
    
        @Override
        public String source() {
            return source;
        }
    
        @Override
        public Optional<Map<String, String>> userProperties() {
            if (commandLine.hasOption(CLIManager.USER_PROPERTY)) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. compat/maven-model-builder/src/test/resources/poms/inheritance/plugin-configuration-child.xml

              <appends combine.children="append">
                <parent>child</parent>
                <child>child</child>
              </appends>
              <overrides combine.self="override">
                <parent>child</parent>
                <child>child</child>
              </overrides>
            </configuration>
          </plugin>
        </plugins>
      </build>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. okhttp-testing-support/src/main/kotlin/okhttp3/OkHttpClientTestRule.kt

                  if (parameters != null) {
                    clientEventsList.add(parameters.first().toString())
                  }
                }
              }
            }
          }
    
          override fun flush() {
          }
    
          override fun close() {
          }
        }.apply {
          level = Level.FINEST
        }
    
      private fun applyLogger(fn: Logger.() -> Unit) {
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.15.md

    - Communication between the etcd server and kube-apiserver on master is now overridden to use HTTPS instead of HTTP when mTLS is enabled in GCE. ([#74690](https://github.com/kubernetes/kubernetes/pull/74690), [@wenjiaswe](https://github.com/wenjiaswe))
    
    ### GCP
    
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/AbstractSortedKeySortedSetMultimap.java

        super(map);
      }
    
      @Override
      public SortedMap<K, Collection<V>> asMap() {
        return (SortedMap<K, Collection<V>>) super.asMap();
      }
    
      @Override
      SortedMap<K, Collection<V>> backingMap() {
        return (SortedMap<K, Collection<V>>) super.backingMap();
      }
    
      @Override
      public SortedSet<K> keySet() {
        return (SortedSet<K>) super.keySet();
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jun 15 21:08:00 UTC 2021
    - 1.8K bytes
    - Viewed (0)
Back to top