Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 383 for nothings (0.21 sec)

  1. src/internal/abi/escape.go

    // license that can be found in the LICENSE file.
    
    package abi
    
    import "unsafe"
    
    // NoEscape hides the pointer p from escape analysis, preventing it
    // from escaping to the heap. It compiles down to nothing.
    //
    // WARNING: This is very subtle to use correctly. The caller must
    // ensure that it's truly safe for p to not escape to the heap by
    // maintaining runtime pointer invariants (for example, that globals
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 884 bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/inlineFunctionUsage.ir.txt

                          VALUE_PARAMETER name:it index:0 type:kotlin.Int
                          BLOCK_BODY
                            RETURN type=kotlin.Nothing from='local final fun <anonymous> (it: kotlin.Int): kotlin.Boolean declared in <root>.CodeFragment.run'
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 30 10:27:47 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/util/XmlUtil.java

                            dataMap.put(fieldName, buffer.toString());
                        }
                        fieldName = null;
                    }
                    // } else if ("list".equals(qName)) {
                    // nothing
                } else if ("item".equals(qName) && fieldName != null) {
                    final Object obj = dataMap.get(fieldName);
                    if (obj instanceof List) {
                        @SuppressWarnings("unchecked")
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/redirector/JULRedirectorTest.groovy

            } else {
                System.setProperty("java.util.logging.config.class", savedJULConfigClassProperty)
            }
        }
    
        def "start and stop do nothing when nothing is redirected"() {
            when:
            redirector.start()
            [Level.SEVERE, Level.WARNING, Level.INFO, Level.CONFIG, Level.FINE, Level.FINER, Level.FINEST].each {
                logger1.log(it, "Test");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/concurrent/src/main/java/org/gradle/internal/concurrent/Stoppable.java

    public interface Stoppable {
        /**
         * <p>Requests a graceful stop of this object. Blocks until all concurrent activity has been completed.</p>
         *
         * <p>If this object has already been stopped, this method does nothing.</p>
         */
        void stop();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 989 bytes
    - Viewed (0)
  6. src/os/stat_darwin.go

    		fs.mode |= ModeDevice | ModeCharDevice
    	case syscall.S_IFDIR:
    		fs.mode |= ModeDir
    	case syscall.S_IFIFO:
    		fs.mode |= ModeNamedPipe
    	case syscall.S_IFLNK:
    		fs.mode |= ModeSymlink
    	case syscall.S_IFREG:
    		// nothing to do
    	case syscall.S_IFSOCK:
    		fs.mode |= ModeSocket
    	}
    	if fs.sys.Mode&syscall.S_ISGID != 0 {
    		fs.mode |= ModeSetgid
    	}
    	if fs.sys.Mode&syscall.S_ISUID != 0 {
    		fs.mode |= ModeSetuid
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. src/os/stat_dragonfly.go

    		fs.mode |= ModeDevice | ModeCharDevice
    	case syscall.S_IFDIR:
    		fs.mode |= ModeDir
    	case syscall.S_IFIFO:
    		fs.mode |= ModeNamedPipe
    	case syscall.S_IFLNK:
    		fs.mode |= ModeSymlink
    	case syscall.S_IFREG:
    		// nothing to do
    	case syscall.S_IFSOCK:
    		fs.mode |= ModeSocket
    	}
    	if fs.sys.Mode&syscall.S_ISGID != 0 {
    		fs.mode |= ModeSetgid
    	}
    	if fs.sys.Mode&syscall.S_ISUID != 0 {
    		fs.mode |= ModeSetuid
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/expressionInfoProvider/FirIdeNormalAnalysisSourceModuleWhenMissingCasesTestGenerated.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)
  9. analysis/analysis-api-standalone/tests-gen/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/generated/cases/components/expressionInfoProvider/FirStandaloneNormalAnalysisSourceModuleWhenMissingCasesTestGenerated.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.9K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/symbols/symbolUtils.kt

        ClassKind.OBJECT -> if (isCompanionObject) KaClassKind.COMPANION_OBJECT else KaClassKind.OBJECT
        ClassKind.ENUM_ENTRY -> invalidEnumEntryAsClassKind()
    }
    
    @KaAnalysisApiInternals
    fun invalidEnumEntryAsClassKind(): Nothing {
        error("KtClassKind is not applicable for enum entry, as enum entry is a callable, not a classifier")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top