Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for Stub (0.04 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

            }
            return when (qualified) {
                null -> FqName(expression.getReferencedName())
                else -> {
                    val refs =
                        if (qualified is KtUserType && qualified.stub != null && (qualified.containingFile as? KtFile)?.isCompiled == true) {
                            collectTypeReferences(qualified)
                        } else {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
  2. cmd/erasure-multipart.go

    	if err != nil {
    		return result, toObjectErr(err, bucket, object, uploadID)
    	}
    
    	uploadIDPath := er.getUploadIDDir(bucket, object, uploadID)
    
    	// Populate the result stub.
    	result.Bucket = bucket
    	result.Object = object
    	result.UploadID = uploadID
    	result.MaxParts = maxParts
    	result.PartNumberMarker = partNumberMarker
    	result.UserDefined = cloneMSS(fi.Metadata)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    // the relocation from "__imp_XYZ" to "XYZ" (since the latter symbol
    // is what the Windows loader is expected to resolve). For direct refs
    // the call is redirected to a stub, where the stub first loads the
    // symbol and then direct an indirect call to that value.
    //
    // Note that for a given symbol (as above) it is perfectly legal to
    // have both direct and indirect references.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    		var save [][]byte
    		var skipLines int
    		for _, line := range bytes.SplitAfter(out, []byte("\n")) {
    			// golang.org/issue/26073 - Apple Xcode bug
    			if bytes.Contains(line, []byte("ld: warning: text-based stub file")) {
    				continue
    			}
    
    			if skipLines > 0 {
    				skipLines--
    				continue
    			}
    
    			// Remove duplicate main symbol with runtime/cgo on AIX.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    			klog.V(vLevel).InfoS("Container garbage collection succeeded")
    		}
    	}, ContainerGCPeriod, wait.NeverStop)
    
    	// when the high threshold is set to 100, and the max age is 0 (or the max age feature is disabled)
    	// stub the image GC manager
    	if kl.kubeletConfiguration.ImageGCHighThresholdPercent == 100 &&
    		(!utilfeature.DefaultFeatureGate.Enabled(features.ImageMaximumGCAge) || kl.kubeletConfiguration.ImageMaximumGCAge.Duration == 0) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/ssa.go

    			s.vars[memVar] = s.newValue2(op, types.TypeMem, args[0], s.mem())
    			return nil
    		}
    	}
    
    	// Make Prefetch intrinsics for supported platforms
    	// On the unsupported platforms stub function will be eliminated
    	addF("runtime/internal/sys", "Prefetch", makePrefetchFunc(ssa.OpPrefetchCache),
    		sys.AMD64, sys.ARM64, sys.PPC64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top