Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for fqName (0.35 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/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)
  5. 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)
  6. src/net/http/serve_test.go

    	res, err := cst.c.Do(req)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer res.Body.Close()
    	fname, err := io.ReadAll(res.Body)
    	if err != nil {
    		t.Fatal(err)
    	}
    	cst.close()
    	if _, err := os.Stat(string(fname)); !errors.Is(err, os.ErrNotExist) {
    		t.Errorf("file %q exists after HTTP handler returned", string(fname))
    	}
    }
    
    func TestHeadBody(t *testing.T) {
    	const identityMode = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    		err = errnoErr(e1)
    	}
    	return
    }
    
    func GetFullPathName(path *uint16, buflen uint32, buf *uint16, fname **uint16) (n uint32, err error) {
    	r0, _, e1 := syscall.Syscall6(procGetFullPathNameW.Addr(), 4, uintptr(unsafe.Pointer(path)), uintptr(buflen), uintptr(unsafe.Pointer(buf)), uintptr(unsafe.Pointer(fname)), 0, 0)
    	n = uint32(r0)
    	if n == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/asm7.go

    		case obj.NAME_AUTO:
    			if a.Reg == REGSP {
    				// unset base register for better printing, since
    				// a.Offset is still relative to pseudo-SP.
    				a.Reg = obj.REG_NONE
    			}
    			// The frame top 8 or 16 bytes are for FP
    			c.instoffset = int64(c.autosize) + a.Offset - int64(c.extrasize)
    			return autoclass(c.instoffset)
    
    		case obj.NAME_PARAM:
    			if a.Reg == REGSP {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top