Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,606 for nothings (0.15 sec)

  1. releasenotes/notes/drop-iop.yaml

        of what was installed.
        However, it was a common source of confusion (as users would change it and nothing would happen), and did not reliably represent the current state.
        As there is no `IstioOperator` needed for these usages anymore, `istioctl install` and `helm install` no longer install the `IstioOperator` CRD.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 22:41:06 UTC 2023
    - 769 bytes
    - Viewed (0)
  2. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/NoOpProblemEmitter.java

    import org.gradle.internal.operations.OperationIdentifier;
    
    public class NoOpProblemEmitter implements ProblemEmitter {
        @Override
        public void emit(Problem problem, OperationIdentifier id) {
            // Do nothing
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:26:04 UTC 2024
    - 888 bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/BroadcastDispatchTest.groovy

    import java.lang.reflect.Method
    import java.lang.reflect.Proxy
    
    class BroadcastDispatchTest extends Specification {
        def method = TestListener.getMethod("doSomething", String)
    
        def "does nothing when no listeners"() {
            expect:
            def dispatch = BroadcastDispatch.empty(TestListener)
            dispatch.empty
            dispatch.size() == 0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  4. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/Adapters.kt

          BitString::class to BIT_STRING,
          ByteString::class to OCTET_STRING,
          Unit::class to NULL,
          Nothing::class to OBJECT_IDENTIFIER,
          Nothing::class to UTF8_STRING,
          String::class to PRINTABLE_STRING,
          Nothing::class to IA5_STRING,
          Nothing::class to UTC_TIME,
          Long::class to GENERALIZED_TIME,
          AnyValue::class to ANY_VALUE,
        )
    
      fun any(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/suggest/converter/AnalyzerConverter.java

            this.client = client;
            this.settings = settings;
            this.analyzerSettings = settings.analyzer();
        }
    
        @Override
        public void init() throws IOException {
            // nothing
        }
    
        @Override
        public List<String> convert(final String text, final String field, final String... langs) throws IOException {
            final ReadingConverter converter;
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/thumbnail/impl/EmptyGenerator.java

        @Override
        public boolean generate(final String thumbnailId, final File outputFile) {
            return false;
        }
    
        @Override
        public void destroy() {
            // nothing
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 939 bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/NativeBasePluginIntegrationTest.groovy

     */
    
    package org.gradle.language
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    
    class NativeBasePluginIntegrationTest extends AbstractIntegrationSpec {
        def "assemble does nothing when no other plugins applied"() {
            given:
            buildFile << """
                apply plugin: NativeBasePlugin
    """
    
            when:
            run "assemble"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/composableFunctionMultiModules.ir.txt

                  annotations:
                    MyComposable
                  BLOCK_BODY
                    RETURN type=kotlin.Nothing from='local final fun <anonymous> (): kotlin.Unit declared in <root>.Bar'
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Feb 26 21:57:23 UTC 2024
    - 886 bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/AbstractExecutionThreadService.java

       *
       * <p>By default this method does nothing.
       */
      // TODO: consider supporting a TearDownTestCase-like API
      protected void shutDown() throws Exception {}
    
      /**
       * Invoked to request the service to stop.
       *
       * <p>By default this method does nothing.
       *
       * <p>Currently, this method is invoked while holding a lock. If an implementation of this method
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/expressionInfoProvider/FirIdeDependentAnalysisSourceModuleWhenMissingCasesTestGenerated.java

        runTest("analysis/analysis-api/testData/components/expressionInfoProvider/whenMissingCases/enum_partial.kt");
      }
    
      @Test
      @TestMetadata("nothing.kt")
      public void testNothing() {
        runTest("analysis/analysis-api/testData/components/expressionInfoProvider/whenMissingCases/nothing.kt");
      }
    
      @Test
      @TestMetadata("nullableBoolean.kt")
      public void testNullableBoolean() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Feb 27 20:30:06 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top