Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for fqName (0.26 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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          DVLOG(1) << "Stack available for " << node.name();
          for (const StackFrame& frame : stack_trace->ToFrames()) {
            auto file_name = mlir::StringAttr::get(context_, frame.file_name);
            // Use col 1 as there is no column info in StackTrace.
            auto file_line_loc =
                mlir::FileLineColLoc::get(file_name, frame.line_number, 1);
            locations.push_back(file_line_loc);
          }
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top