Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 395 for isopen (0.09 sec)

  1. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/symbols/AbstractSymbolTest.kt

    import org.jetbrains.kotlin.utils.mapToSetOrEmpty
    import kotlin.test.fail
    
    abstract class AbstractSymbolTest : AbstractAnalysisApiBasedTest() {
        open val defaultRenderer = KaDeclarationRendererForDebug.WITH_QUALIFIED_NAMES
    
        open val defaultRendererOption: PrettyRendererOption? = null
    
        override fun configureTest(builder: TestConfigurationBuilder) {
            super.configureTest(builder)
            with(builder) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/net/package-info.java

     * the License.
     */
    
    /**
     * Utility methods and classes for networking (such as IP addresses and domain names).
     *
     * <p>This package is a part of the open-source <a href="https://github.com/google/guava">Guava</a>
     * library.
     *
     * @author Craig Berry
     */
    @CheckReturnValue
    @ParametersAreNonnullByDefault
    package com.google.common.net;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 23 19:57:03 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtAnalysisSessionComponent.kt

    import org.jetbrains.kotlin.analysis.api.KaSession
    import org.jetbrains.kotlin.analysis.api.lifetime.KaLifetimeToken
    
    public abstract class KaSessionComponent {
        protected abstract val analysisSession: KaSession
        protected open val token: KaLifetimeToken get() = analysisSession.token
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 622 bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testplugin/testdata/issue22175/plugin1.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import "plugin"
    
    func F() int {
    	p2, err := plugin.Open("issue22175_plugin2.so")
    	if err != nil {
    		panic(err)
    	}
    	g, err := p2.Lookup("G")
    	if err != nil {
    		panic(err)
    	}
    	return g.(func() int)()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 390 bytes
    - Viewed (0)
  5. src/main/config/openapi/openapi-user.yaml

                              example: "Open Source Enterprise Search Server: Fess — Fess 11.0 documentation"
                            content_title:
                              type: string
                              example: "Open Source Enterprise Search Server: Fess — Fe..."
                            digest:
                              type: string
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:31:27 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  6. tests/error_translator_test.go

    	untranslatedErr := errors.New("some random error")
    	db, _ := gorm.Open(tests.DummyDialector{TranslatedErr: translatedErr})
    
    	err := db.AddError(untranslatedErr)
    	if !errors.Is(err, untranslatedErr) {
    		t.Fatalf("expected err: %v got err: %v", untranslatedErr, err)
    	}
    
    	// it should translate error when the TranslateError flag is true
    	db, _ = gorm.Open(tests.DummyDialector{TranslatedErr: translatedErr}, &gorm.Config{TranslateError: true})
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jul 12 13:21:22 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. src/cmd/go/terminal_test.go

    		}
    	})
    
    	// Now test with a read PTY.
    	t.Run("pty", func(t *testing.T) {
    		r, processTTY, err := testpty.Open()
    		if errors.Is(err, testpty.ErrNotSupported) {
    			t.Skipf("%s", err)
    		} else if err != nil {
    			t.Fatalf("failed to open test PTY: %s", err)
    		}
    		defer r.Close()
    		w, err := os.OpenFile(processTTY, os.O_RDWR, 0)
    		if err != nil {
    			t.Fatal(err)
    		}
    		defer w.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 07 18:18:50 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/evaluationSchema/SchemaComponents.kt

            functionExtractor = CompositeFunctionExtractor(builder.functionExtractors),
            typeDiscovery = CompositeTypeDiscovery(builder.typeDiscoveries)
        )
        return analysisSchema
    }
    
    
    private
    open class DefaultEvaluationSchemaBuilder : EvaluationSchemaBuilder {
        private
        val analysisSchemaComponents = mutableListOf<AnalysisSchemaComponent>()
    
        override val typeDiscoveries: List<TypeDiscovery>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testplugin/testdata/issue18584/main.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import "plugin"
    
    func main() {
    	p, err := plugin.Open("plugin.so")
    	if err != nil {
    		panic(err)
    	}
    
    	sym, err := p.Lookup("G")
    	if err != nil {
    		panic(err)
    	}
    	g := sym.(func() bool)
    	if !g() {
    		panic("expected types to match, Issue #18584")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 424 bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/extensionReceiverLabeled.ir.txt

            VALUE_PARAMETER name:p0 index:0 type:kotlin.String
            EXPRESSION_BODY
              BLOCK type=kotlin.Int origin=null
                CALL 'public open fun <get-length> (): kotlin.Int declared in kotlin.String' type=kotlin.Int origin=GET_PROPERTY
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Aug 30 06:38:44 UTC 2023
    - 901 bytes
    - Viewed (0)
Back to top