Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for inputbox (0.12 sec)

  1. misc/chrome/gophertool/popup.js

    }
    
    window.addEventListener("load", function () {
      addLinks();
      console.log("hacking gopher pop-up loaded.");
      document.getElementById("inputbox").focus();
    });
    
    window.addEventListener("submit", function () {
      console.log("submitting form");
      var box = document.getElementById("inputbox");
      box.focus();
    
      var t = box.value;
      if (t == "") {
        return false;
      }
    
      var success = function(url) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 21 17:05:21 UTC 2012
    - 1020 bytes
    - Viewed (0)
  2. misc/chrome/gophertool/popup.html

    <a href="#" url="https://golang.org/cl">codereview</a>,
    <a href="#" url="https://golang.org/change">commit</a>, or
    <a href="#" url="https://golang.org/pkg/">pkg</a> id/name:</small>
    <form style='margin: 0' id='navform'><nobr><input id="inputbox" size=10 tabindex=1 /><input type="submit" value="go" /></nobr></form>
    <small>Also: <a href="#" url="https://build.golang.org">buildbots</a>
    <a href="#" url="https://github.com/golang/go">GitHub</a>
    </small>
    </body>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 05 02:35:21 UTC 2021
    - 830 bytes
    - Viewed (0)
  3. pkg/kubelet/preemption/preemption_test.go

    	type testRun struct {
    		testName       string
    		requirements   admissionRequirementList
    		inputPod       *v1.Pod
    		expectedOutput float64
    	}
    	allPods := getTestPods()
    	runs := []testRun{
    		{
    			testName:       "no requirements",
    			requirements:   getAdmissionRequirementList(0, 0, 0),
    			inputPod:       allPods[burstable],
    			expectedOutput: 0,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 24 10:04:08 UTC 2022
    - 19.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/tac/transforms/cost_model.cc

                                      func::CallOp to_graph) {
      int64_t total_size_transferred = 0;
      for (auto input : to_graph.getOperands()) {
        Operation* input_op = input.getDefiningOp();
        if (input_op && input_op == from_graph.getOperation()) {
          auto input_type =
              mlir::dyn_cast_or_null<RankedTensorType>(input.getType());
          if (input_type == nullptr || !input_type.hasStaticShape()) continue;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/ops/tf_quantize_op.cc

                                         StringRef func_name,
                                         Value& func_input_arg) {
      Operation* input_op = input_val.getDefiningOp();
    
      Operation* insertion_point = input_op->getParentOfType<func::FuncOp>();
      if (!insertion_point) insertion_point = input_op->getParentOfType<ModuleOp>();
      rewriter.setInsertionPointAfter(insertion_point);
    
      UnrankedTensorType create_unknown_input_shape =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/split_merged_operands.cc

        // mlir constant op.
        Operation* input_op = operand.getDefiningOp();
        if (input_op == nullptr) return failure();
    
        Attribute attr;
        if (matchPattern(input_op, m_Constant(&attr))) {
          // Constant case.
          builder->setInsertionPoint(op);
          Operation* duplicated_input_op = builder->clone(*input_op);
    
          // Rewire the inputs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SpnegoContext.java

            }
            else {
                resp = negotitate(inputBuf, offset, len);
            }
    
            if ( resp == null ) {
                return null;
            }
            return resp.toByteArray();
        }
    
    
        private SpnegoToken negotitate ( byte[] inputBuf, int offset, int len ) throws CIFSException {
            SpnegoToken spToken = getToken(inputBuf, offset, len);
            byte[] inputToken = null;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 04 04:18:31 UTC 2021
    - 14.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tpu_dynamic_layout_pass.cc

      MutableArrayRef<OpOperand> inputs =
          replicate.GetOperandsForBlockArgument(replicate_arg);
      for (const auto& entry : llvm::enumerate(inputs)) {
        auto input_op = entry.value().get().getDefiningOp();
        if (!input_op || !IsSupportedInputOp(input_op, resource_alias_analysis))
          return false;
      }
      OpBuilder builder = CreateBuilderAfterOp(compile_launch);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. tools/bug-report/pkg/processlog/processlog_test.go

    			startTime:         "2023-05-10T17:43:55.356647Z",
    			endTime:           "2023-05-10T17:43:55.356691Z",
    			timeFilterApplied: true,
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			inputLog := string(util.ReadFile(t, filepath.Join(testDataDir, tt.inputLogFilePath)))
    			wantOutputLog := string(util.ReadFile(t, filepath.Join(testDataDir, tt.wantOutputLogPath)))
    			start, _ := time.Parse(time.RFC3339Nano, tt.startTime)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 19 21:44:33 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/parse.go

    	if !p.more() {
    		return EOF
    	}
    	tok := p.input[p.inputPos]
    	p.inputPos++
    	return tok
    }
    
    func (p *Parser) back() {
    	if p.inputPos == 0 {
    		p.errorf("internal error: backing up before BOL")
    	} else {
    		p.inputPos--
    	}
    }
    
    func (p *Parser) peek() lex.ScanToken {
    	if p.more() {
    		return p.input[p.inputPos].ScanToken
    	}
    	return scanner.EOF
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
Back to top