Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for sigblock (0.42 sec)

  1. src/runtime/mfinal.go

    	"runtime/internal/sys"
    	"unsafe"
    )
    
    // finblock is an array of finalizers to be executed. finblocks are
    // arranged in a linked list for the finalizer queue.
    //
    // finblock is allocated from non-GC'd memory, so any heap pointers
    // must be specially handled. GC currently assumes that the finalizer
    // queue does not grow during marking (but it can shrink).
    type finblock struct {
    	_       sys.NotInHeap
    	alllink *finblock
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirDataFlowInfoProvider.kt

            firParent.accept(pathSearcher)
    
            return firStatements.map { unwrapLeaf(pathSearcher[it] ?: it) }
        }
    
        private fun unwrapLeaf(firLeaf: FirElement): FirElement {
            if (firLeaf is FirBlock && firLeaf.statements.size == 1) {
                val firStatement = firLeaf.statements[0]
                if (firStatement is FirExpression && firStatement.resolvedType == firLeaf.resolvedType) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 14:04:46 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                    // K1 creates a fake expression in this case.
                    whenRef.value.subject?.findSourceKtExpressionForCallArgument()
                // FirBlock is a fake container for desugared expressions like `++index` or `++list[0]`
                is FirBlock -> psi as? KtExpression
                else -> realPsi as? KtExpression
            }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

        ): List<KaSymbol> {
            // Handle situation when we're in the middle/beginning of qualifier
            // <caret>A.B.C.foo() or A.<caret>B.C.foo()
            // NB: in this case we get some parent FIR, like FirBlock, FirProperty, FirFunction or the like
            var parent = expression.parent as? KtDotQualifiedExpression
            var unresolvedCounter = 1
            while (parent != null) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/init.go

    			}
    		}
    	}()
    
    	// Make a best-effort attempt to acquire the side lock, only to exclude
    	// previous versions of the 'go' command from making simultaneous edits.
    	if unlock, err := modfetch.SideLock(ctx); err == nil {
    		defer unlock()
    	}
    
    	err = lockedfile.Transform(modFilePath, func(old []byte) ([]byte, error) {
    		if bytes.Equal(old, updatedGoMod) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  6. pkg/generated/openapi/zz_generated.openapi.go

    						},
    					},
    					"ipBlock": {
    						SchemaProps: spec.SchemaProps{
    							Description: "IPBlock defines policy on a particular IPBlock. If this field is set then neither of the other fields can be.",
    							Ref:         ref("k8s.io/api/extensions/v1beta1.IPBlock"),
    						},
    					},
    				},
    			},
    		},
    		Dependencies: []string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  7. api/openapi-spec/swagger.json

          "properties": {
            "ipBlock": {
              "$ref": "#/definitions/io.k8s.api.networking.v1.IPBlock",
              "description": "ipBlock defines policy on a particular IPBlock. If this field is set then neither of the other fields can be."
            },
            "namespaceSelector": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top