Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 45 for fqName (0.2 sec)

  1. 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)
  2. src/testing/testing.go

    	var firstFrame, prevFrame, frame runtime.Frame
    	for more := true; more; prevFrame = frame {
    		frame, more = frames.Next()
    		if frame.Function == "runtime.gopanic" {
    			continue
    		}
    		if frame.Function == c.cleanupName {
    			frames = runtime.CallersFrames(c.cleanupPc)
    			continue
    		}
    		if firstFrame.PC == 0 {
    			firstFrame = frame
    		}
    		if frame.Function == c.runner {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        assertThat(firstFrame(logs, "HEADERS")!!, "header logged")
          .contains("HEADERS       END_HEADERS")
        // While MockWebServer waits to read the client's HEADERS frame before sending the response, it
        // doesn't wait to read the client's DATA frame and may send a DATA frame before the client
        // does. So we can't assume the client's empty DATA will be logged first.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        enter_builder.Input(node, 0);
        Node* enter_node = options.FinalizeBuilder(&enter_builder);
        // Adopt the new Enter node as the value in the current frame.
        node = enter_node;
        // Recurse to the parent frame to see if more Enter nodes need to be added.
        src_node = control_flow_info[src_node->id()].parent_frame;
      }
      return node;
    }
    
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/xcoff.go

    		// _cgoexp_hashcode_symname.
    		name := strings.SplitN(extname, "_", 4)[3]
    
    		buf.Write([]byte(name + "\n"))
    	}
    
    	err := os.WriteFile(fname, buf.Bytes(), 0666)
    	if err != nil {
    		Errorf(nil, "WriteFile %s failed: %v", fname, err)
    	}
    
    	return fname
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/deadness_analysis_test.cc

      // that does not depend on the merge on its backedge.
      Scope root = Scope::NewRootScope().ExitOnError();
      InductionVarInfo iv = CreateInductionVariable(root, "iv0", "frame", 0);
      DependentInductionVar dependent_iv =
          CreateDependentLoopInvariantValue(root, "div0", "frame", iv.loop_cond, 0);
      FixupSourceAndSinkEdges(root.graph());
    
      TF_ASSERT_OK(root.graph()->UpdateEdge(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  7. src/os/os_test.go

    	}
    }
    
    func writeFile(t *testing.T, fname string, flag int, text string) string {
    	f, err := OpenFile(fname, flag, 0666)
    	if err != nil {
    		t.Fatalf("Open: %v", err)
    	}
    	n, err := io.WriteString(f, text)
    	if err != nil {
    		t.Fatalf("WriteString: %d, %v", n, err)
    	}
    	f.Close()
    	data, err := ReadFile(fname)
    	if err != nil {
    		t.Fatalf("ReadFile: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/riscv/obj.go

    	}
    	if stacksize < 0 {
    		ctxt.Diag("negative frame size %d - did you mean NOFRAME?", stacksize)
    	}
    	if text.From.Sym.NoFrame() {
    		if stacksize != 0 {
    			ctxt.Diag("NOFRAME functions must have a frame size of 0, not %d", stacksize)
    		}
    	}
    
    	if !containsCall(cursym) {
    		text.From.Sym.Set(obj.AttrLeaf, true)
    		if stacksize == 0 {
    			// A leaf function with no locals has no frame.
    			text.From.Sym.Set(obj.AttrNoFrame, true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        peer.acceptFrame() // ACK
        peer.sendFrame().ping(false, 2, 0)
        peer.acceptFrame()
        peer.play()
    
        // Play it back.
        val connection = connect(peer)
    
        // fake a settings frame with clear flag set.
        val settings2 = Settings()
        settings2[Settings.MAX_CONCURRENT_STREAMS] = 60000
        connection.readerRunnable.applyAndAckSettings(true, settings2)
        connection.withLock {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // The SockaddrCAN struct must be bound to the socket file descriptor
    // using Bind before the CAN socket can be used.
    //
    //	// Read one raw CAN frame
    //	fd, _ := Socket(AF_CAN, SOCK_RAW, CAN_RAW)
    //	addr := &SockaddrCAN{Ifindex: index}
    //	Bind(fd, addr)
    //	frame := make([]byte, 16)
    //	Read(fd, frame)
    //
    // The full SocketCAN documentation can be found in the linux kernel
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
Back to top