Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for fqName (0.17 sec)

  1. pkg/kubelet/kubelet_pods_test.go

    			expectMetrics: map[string]string{
    				metrics.DesiredPodCount.FQName(): `# HELP kubelet_desired_pods [ALPHA] The number of pods the kubelet is being instructed to run. static is true if the pod is not from the apiserver.
    				# TYPE kubelet_desired_pods gauge
    				kubelet_desired_pods{static=""} 0
    				kubelet_desired_pods{static="true"} 0
    				`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnostics.kt

        }
    
        interface RedundantRepeatableAnnotation : KaFirDiagnostic<KtAnnotationEntry> {
            override val diagnosticClass get() = RedundantRepeatableAnnotation::class
            val kotlinRepeatable: FqName
            val javaRepeatable: FqName
        }
    
        interface LocalJvmRecord : KaFirDiagnostic<PsiElement> {
            override val diagnosticClass get() = LocalJvmRecord::class
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 172.6K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnosticsImpl.kt

    internal class RedundantRepeatableAnnotationImpl(
        override val kotlinRepeatable: FqName,
        override val javaRepeatable: FqName,
        firDiagnostic: KtPsiDiagnostic,
        token: KaLifetimeToken,
    ) : KaAbstractFirDiagnostic<KtAnnotationEntry>(firDiagnostic, token), KaFirDiagnostic.RedundantRepeatableAnnotation
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 227.2K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/test/callback.go

    			t.Fatalf("expected non-nil Func for pc %d", pc[i])
    		}
    		fname := f.Name()
    		// Remove the prepended pathname from automatically
    		// generated cgo function names.
    		if strings.HasPrefix(fname, "_") {
    			fname = path.Base(f.Name()[1:])
    		}
    		// In module mode, this package has a fully-qualified import path.
    		// Remove it if present.
    		fname = strings.TrimPrefix(fname, "cmd/cgo/internal/")
    
    		namei := ""
    		if i < len(name) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 111.5K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_set_control_test.go

    	}
    
    	for _, testCase := range testCases {
    		fnName := runtime.FuncForPC(reflect.ValueOf(testCase.fn).Pointer()).Name()
    		if i := strings.LastIndex(fnName, "."); i != -1 {
    			fnName = fnName[i+1:]
    		}
    		testObj := testCase.obj
    		testFn := testCase.fn
    		runTestOverPVCRetentionPolicies(
    			t,
    			fmt.Sprintf("%s/Monotonic", fnName),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  6. src/net/http/server.go

    func relevantCaller() runtime.Frame {
    	pc := make([]uintptr, 16)
    	n := runtime.Callers(1, pc)
    	frames := runtime.CallersFrames(pc[:n])
    	var frame runtime.Frame
    	for {
    		frame, more := frames.Next()
    		if !strings.HasPrefix(frame.Function, "net/http.") {
    			return frame
    		}
    		if !more {
    			break
    		}
    	}
    	return frame
    }
    
    func (w *response) WriteHeader(code int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  7. src/reflect/all_test.go

    //
    // During reflect.Value.Call, we create an argument frame and the associated data structures
    // to describe it to the garbage collector, populate the frame, call reflect.call to
    // run a function call using that frame, and then copy the results back out of the frame.
    // The reflect.call function does a memmove of the frame structure onto the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  8. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    the Head of the Still be taken off, the Vapour which ascends out of the Still will take fire at the Flame of a Candle, and turn into Flame, and the Flame will run along the Vapour from the Candle to the Still. Some Bodies heated by Motion, or Fermentation, if the heat grow intense, fume copiously, and if the heat be great enough the Fumes will shine and become Flame. Metals in fusion do not flame for want of a copious Fume, except Spelter, which fumes copiously, and thereby flames. All flaming Bodies,...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        )
        server.enqueue(
          MockResponse(body = "def"),
        )
    
        // Send a separate request which will trigger a GOAWAY frame on the healthy connection.
        val response = getResponse(newRequest("/"))
        assertContent("abc", response)
    
        // Ensure the GOAWAY frame has time to be read and processed.
        Thread.sleep(500)
        assertContent(
          "def",
          getResponse(
            Request(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  10. src/debug/elf/elf.go

    	PT_TLS     ProgType = 7 /* Thread local storage segment */
    
    	PT_LOOS ProgType = 0x60000000 /* First OS-specific. */
    
    	PT_GNU_EH_FRAME ProgType = 0x6474e550 /* Frame unwind information */
    	PT_GNU_STACK    ProgType = 0x6474e551 /* Stack flags */
    	PT_GNU_RELRO    ProgType = 0x6474e552 /* Read only after relocs */
    	PT_GNU_PROPERTY ProgType = 0x6474e553 /* GNU property */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
Back to top