Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for fries (0.06 sec)

  1. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"french_southern_territories":          "\U0001f1f9\U0001f1eb",
    	"fried_egg":                            "\U0001f373",
    	"fried_shrimp":                         "\U0001f364",
    	"fries":                                "\U0001f35f",
    	"frog":                                 "\U0001f438",
    	"frowning":                             "\U0001f626",
    	"frowning_face":                        "\u2639\ufe0f",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  2. src/net/http/serve_test.go

    func tryTimeouts(t *testing.T, testFunc func(timeout time.Duration) error) {
    	tries := []time.Duration{250 * time.Millisecond, 500 * time.Millisecond, 1 * time.Second}
    	for i, timeout := range tries {
    		err := testFunc(timeout)
    		if err == nil {
    			return
    		}
    		t.Logf("failed at %v: %v", timeout, err)
    		if i != len(tries)-1 {
    			t.Logf("retrying at %v ...", tries[i+1])
    		}
    	}
    	t.Fatal("all attempts failed")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    }
    
    func mspinning() {
    	// startm's caller incremented nmspinning. Set the new M's spinning.
    	getg().m.spinning = true
    }
    
    // Schedules some M to run the p (creates an M if necessary).
    // If p==nil, tries to get an idle P, if no idle P's does nothing.
    // May run with m.p==nil, so write barriers are not allowed.
    // If spinning is set, the caller has incremented nmspinning and must provide a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. cmd/admin-handlers.go

    					MemStats: madmin.MemStats{
    						Alloc:      server.MemStats.Alloc,
    						TotalAlloc: server.MemStats.TotalAlloc,
    						Mallocs:    server.MemStats.Mallocs,
    						Frees:      server.MemStats.Frees,
    						HeapAlloc:  server.MemStats.HeapAlloc,
    					},
    					GoMaxProcs:     server.GoMaxProcs,
    					NumCPU:         server.NumCPU,
    					RuntimeVersion: server.RuntimeVersion,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  5. src/net/http/server.go

    	// bytes of a request. The Server.ConnState hook for
    	// StateActive fires before the request has entered a handler
    	// and doesn't fire again until the request has been
    	// handled. After the request is handled, the state
    	// transitions to StateClosed, StateHijacked, or StateIdle.
    	// For HTTP/2, StateActive fires on the transition from zero
    	// to one active request, and only transitions away once all
    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/main/resources/fess_indices/_aws/fess.json

            },
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Mar 23 12:38:28 UTC 2021
    - 117.3K bytes
    - Viewed (0)
  7. src/main/resources/fess_indices/_cloud/fess.json

            },
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 27 09:26:16 UTC 2021
    - 117.3K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

      // never complete when timing out.  Notably, nothing would get logged since the Error would get
      // stuck in the ScheduledFuture inside of TimeoutFuture and nothing ever calls get on it.
    
      // Simulate a timeout that fires before the call the SES.schedule returns but the future is
      // already completed.
    
      // This test covers a bug where an Error thrown from a callback could cause the TimeoutFuture to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

      // never complete when timing out.  Notably, nothing would get logged since the Error would get
      // stuck in the ScheduledFuture inside of TimeoutFuture and nothing ever calls get on it.
    
      // Simulate a timeout that fires before the call the SES.schedule returns but the future is
      // already completed.
    
      // This test covers a bug where an Error thrown from a callback could cause the TimeoutFuture to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

      }
    
     private:
      // Checks that the init value matches with the init value expected for the
      // target TfReduceOp.
      virtual LogicalResult MatchInitValue(Value init_value) const = 0;
    
      // This function tries to match that the "mhlo::ReduceOp" only has one
      // operand, one init_value and one result.
      LogicalResult MatchReduceOpOperand(mhlo::ReduceOp reduce_op) const {
        if (reduce_op.getInputs().size() != 1 ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
Back to top