Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for fqName (0.11 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

                }
            }
    
            return null
        }
    }
    
    private fun FqName.dropFakeRootPrefixIfPresent(): FqName =
        tail(FqName(ROOT_PREFIX_FOR_IDE_RESOLUTION_MODE))
    
    private data class AdditionalImports(val simpleImports: Set<FqName>, val starImports: Set<FqName>)
    
    private inline fun <reified T : KtElement> KtFile.findSmallestElementOfTypeContainingSelection(selection: TextRange): T? =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  2. src/runtime/traceback.go

    			}
    		}
    	}
    
    	var frame stkframe
    	frame.pc = pc0
    	frame.sp = sp0
    	if usesLR {
    		frame.lr = lr0
    	}
    
    	// If the PC is zero, it's likely a nil function call.
    	// Start in the caller's frame.
    	if frame.pc == 0 {
    		if usesLR {
    			frame.pc = *(*uintptr)(unsafe.Pointer(frame.sp))
    			frame.lr = 0
    		} else {
    			frame.pc = *(*uintptr)(unsafe.Pointer(frame.sp))
    			frame.sp += goarch.PtrSize
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    			names = append(names, objType.Name())
    		}
    	}
    
    	return names
    }
    
    func newConfiguration(fsName, plName, user string, concurrency int32, queueLength int32) []runtime.Object {
    	fs := &flowcontrol.FlowSchema{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: fsName,
    			UID:  types.UID(fsName),
    		},
    		Spec: flowcontrol.FlowSchemaSpec{
    			MatchingPrecedence: 1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                        dependenciesStarted(attributes);
                    } else if ("conflicts".equals(qName)) {
                        state = State.CONFLICT;
                        maybeAddDefaultConfiguration();
                    } else if ("artifact".equals(qName)) {
                        artifactStarted(qName, attributes);
                    } else if ("include".equals(qName) && state == State.DEP) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/deadness_analysis.cc

    // the same root frame are placed adjacent to each other.  This grouping enables
    // processing the graph per root frame at a time and guarantees that when a root
    // frame is being processed, nodes in the downstream frames have not yet been
    // processed.  This property is important because we need to process an entire
    // frame to know whether the optimistic mode converges or not.  In other words,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  6. src/runtime/mgcmark.go

    		// and registers that ever contain a pointer.
    		if frame.varp != 0 {
    			size := frame.varp - frame.sp
    			if size > 0 {
    				scanConservative(frame.sp, size, nil, gcw, state)
    			}
    		}
    
    		// Scan arguments to this frame.
    		if n := frame.argBytes(); n != 0 {
    			// TODO: We could pass the entry argument map
    			// to narrow this down further.
    			scanConservative(frame.argp, n, nil, gcw, state)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. src/runtime/asm_amd64.s

    	// Gather our arguments into registers.
    	MOVQ	fn+0(FP), BX
    	MOVQ	frame+8(FP), CX
    	MOVQ	ctxt+16(FP), DX
    	// Compute the size of the frame, including return PC and, if
    	// GOEXPERIMENT=framepointer, the saved base pointer
    	LEAQ	fn+0(FP), AX
    	SUBQ	SP, AX   // AX is our actual frame size
    	SUBQ	AX, DI   // Allocate the same frame size on the g stack
    	MOVQ	DI, SP
    
    	MOVQ	BX, 0(SP)
    	MOVQ	CX, 8(SP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

    class OpDefCache(object):
      """A Dict to cache the OpDef for the Python function name."""
    
      def __init__(self):
        self._op_defs = {}
    
      def lookup(self, f_name, func_def=None, optional=False):
        if f_name in self._op_defs:
          return self._op_defs[f_name]
    
        if isinstance(func_def, types.FunctionType):
          if not hasattr(func_def, '_tfr_op_name'):
            # skip a non-composition function
            if optional:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  9. src/runtime/pprof/pprof_test.go

    // shows a goroutine in the given state with a stack frame in
    // runtime/pprof.<fName>.
    func awaitBlockedGoroutine(t *testing.T, state, fName string, count int) {
    	re := fmt.Sprintf(`(?m)^goroutine \d+ \[%s\]:\n(?:.+\n\t.+\n)*runtime/pprof\.%s`, regexp.QuoteMeta(state), fName)
    	r := regexp.MustCompile(re)
    
    	if deadline, ok := t.Deadline(); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    		fsName := fmt.Sprintf("client%d", i)
    		uss.expectedInqueueReqs = uss.expectedInqueueReqs + fmt.Sprintf(`				apiserver_flowcontrol_current_inqueue_requests{flow_schema=%q,priority_level=%q} 0%s`, fsName, uss.name, "\n")
    		uss.expectedInqueueSeats = uss.expectedInqueueSeats + fmt.Sprintf(`				apiserver_flowcontrol_current_inqueue_seats{flow_schema=%q,priority_level=%q} 0%s`, fsName, uss.name, "\n")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
Back to top