Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 273 for call27 (3.3 sec)

  1. src/cmd/go/testdata/script/godebug_default.txt

    stderr 'invalid //go:debug: value contains space'
    
    [short] skip
    
    # Programs in Go 1.21 work module should trigger run-time error.
    cp go.mod.21 go.mod
    ! go run .
    stderr 'panic: panic called with nil argument'
    
    ! go run rsc.io/panicnil
    stderr 'panic: panic called with nil argument'
    
    # Programs in Go 1.20 work module use old panic nil behavior.
    cp go.mod.20 go.mod
    ! go run .
    stderr 'panic: nil'
    
    ! go run rsc.io/panicnil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/lifetime/KotlinReadActionConfinementLifetimeToken.kt

            if (!ApplicationManager.getApplication().isReadAccessAllowed) return "Called outside a read action."
    
            if (!permissionChecker.isAnalysisAllowed()) return permissionChecker.getRejectionReason()
    
            val currentToken = lifetimeTracker.currentToken
            if (currentToken == null) return "Called outside an `analyze` context."
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/InputTrackingState.kt

         * this method was called twice then [restoreForCurrentThread] should also be called twice to
         * enable input tracking back.
         */
        fun disableForCurrentThread() {
            ++inputTrackingDisabledCounterForThread
        }
    
        /**
         * Restores the input tracking state to the state it was in before the last call to
         * [disableForCurrentThread].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. src/runtime/cgocall.go

    // license that can be found in the LICENSE file.
    
    // Cgo call and callback support.
    //
    // To call into the C function f from Go, the cgo-generated code calls
    // runtime.cgocall(_cgo_Cfunc_f, frame), where _cgo_Cfunc_f is a
    // gcc-compiled function written by cgo.
    //
    // runtime.cgocall (below) calls entersyscall so as not to block
    // other goroutines or the garbage collector, and then calls
    // runtime.asmcgocall(_cgo_Cfunc_f, frame).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ir/func.go

    	funcOpenCodedDeferDisallowed // can't do open-coded defers
    	funcClosureResultsLost       // closure is called indirectly and we lost track of its results; used by escape analysis
    	funcPackageInit              // compiler emitted .init func for package
    )
    
    type SymAndPos struct {
    	Sym *obj.LSym // LSym of callee
    	Pos src.XPos  // line of call
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. src/testing/testing.go

    	t.mu.Unlock()
    }
    
    // Run runs f as a subtest of t called name. It runs f in a separate goroutine
    // and blocks until f returns or calls t.Parallel to become a parallel test.
    // Run reports whether f succeeded (or at least did not fail before calling t.Parallel).
    //
    // Run may be called simultaneously from multiple goroutines, but all such calls
    // must return before the outer test function for t returns.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/visibilityChecker/AbstractVisibilityCheckerTest.kt

    /**
     * To find the element for the use-site position, the visibility checker test looks for an element called "useSite" in the main module if
     * the main file doesn't or cannot contain a caret marker, e.g. in files from binary libraries. The target name is case-insensitive, so
     * classes called `UseSite` will be found as well.
     */
    private const val USE_SITE_ELEMENT_NAME = "usesite"
    
    /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 16:12:19 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/archive/ZipEntry.java

        }
    
        boolean isDirectory();
    
        String getName();
    
        /**
         * This method or {@link #withInputStream(IoFunction)} ()} may or may not support being called more than
         * once per entry.  Use {@link #canReopen()} to determine if more than one call is supported.
         */
        byte[] getContent() throws IOException;
    
        /**
         * Declare an action to be run against this ZipEntry's content as a {@link InputStream}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:00 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. docs/en/docs/advanced/path-operation-advanced-configuration.md

        {!> ../../../docs_src/path_operation_advanced_configuration/tutorial007_pv1.py!}
        ```
    
    !!! info
        In Pydantic version 1 the method to get the JSON Schema for a model was called `Item.schema()`, in Pydantic version 2, the method is called `Item.model_json_schema()`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. src/runtime/race_amd64.s

    // Switches SP to g0 stack and calls (AX). Arguments already set.
    TEXT	racecall<>(SB), NOSPLIT|NOFRAME, $0-0
    	MOVQ	g_m(R14), R13
    	// Switch to g0 stack.
    	MOVQ	SP, R12		// callee-saved, preserved across the CALL
    	MOVQ	m_g0(R13), R10
    	CMPQ	R10, R14
    	JE	call	// already on g0
    	MOVQ	(g_sched+gobuf_sp)(R10), SP
    call:
    	ANDQ	$~15, SP	// alignment for gcc ABI
    	CALL	AX
    	MOVQ	R12, SP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top