Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 94 for takes (0.08 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"self.val1.split(' ') == ['Rook', 'takes', '👑']",
    				"self.val1.split(' ', 2) == ['Rook', 'takes 👑']",
    				"self.val1.substring(5) == 'takes 👑'",
    				"self.val1.substring(0, 4) == 'Rook'",
    				"self.val1.substring(4, 10).trim() == 'takes'",
    				"self.val1.upperAscii() == 'ROOK TAKES 👑'",
    				"self.val1.lowerAscii() == 'rook takes 👑'",
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "boolean"
            },
            "runAsUser": {
              "description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext.  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    // out of work initially. Spinning threads spin on looking for work in per-P
    // run queues and timer heaps or from the GC before parking. If a spinning
    // thread finds work it takes itself out of the spinning state and proceeds to
    // execution. If it does not find work it takes itself out of the spinning
    // state and then parks.
    //
    // If there is at least one spinning thread (sched.nmspinning>1), we don't
    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. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        capture.
    
        input: A list of input tensors whose types are T.
        output: A list of output tensors whose types are T.
        cond: A region that takes 'input' and returns a boolean scalar tensor.
        body: A region that takes a list of tensors and returns another
              list of tensors. Both lists have the same types.
      }];
    
      let arguments = (ins
        Variadic<AnyTensor>:$input,
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    var p ptr = nil
    </pre>
    
    <p>
    The functions <code>Alignof</code> and <code>Sizeof</code> take an expression <code>x</code>
    of any type and return the alignment or size, respectively, of a hypothetical variable <code>v</code>
    as if <code>v</code> was declared via <code>var v = x</code>.
    </p>
    <p>
    The function <code>Offsetof</code> takes a (possibly parenthesized) <a href="#Selectors">selector</a>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  6. src/net/http/server.go

    // an HTTP handler to take over the connection.
    //
    // The default [ResponseWriter] for HTTP/1.x connections supports
    // Hijacker, but HTTP/2 connections intentionally do not.
    // ResponseWriter wrappers may also not support Hijacker. Handlers
    // should always test for this ability at runtime.
    type Hijacker interface {
    	// Hijack lets the caller take over the connection.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/runtime/framework_test.go

    	}{
    		{
    			name: "a single plugin makes a Pod schedulable",
    			plugins: []*TestPlugin{
    				{
    					name: "TestPlugin",
    					inj:  injectedResult{PostFilterStatus: int(framework.Success)},
    				},
    			},
    			wantStatus: framework.NewStatus(framework.Success, injectReason),
    		},
    		{
    			name: "plugin1 failed to make a Pod schedulable, followed by plugin2 which makes the Pod schedulable",
    			plugins: []*TestPlugin{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        if (op.getInputs().size() % 2 != 0) {
          return op.emitOpError() << "ApproxTopK takes an even number of operands.";
        }
    
        auto called_computations = op.getCalledComputations();
        if (called_computations.size() != 1) {
          return op.emitOpError()
                 << "ApproxTopK takes exactly 1 called_computation.";
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  9. tensorflow/c/c_api.cc

                                    const char* attr_name, const void* proto,
                                    size_t proto_len, TF_Status* status) {
      // shape.ParseFromArray takes an int as length, this function takes size_t,
      // make sure there is no information loss.
      if (proto_len > std::numeric_limits<int>::max()) {
        status->status = InvalidArgument(
            "proto_len (", proto_len,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    //	    specified as a time.Duration (for example, -fuzztime 1h30s).
    //		The default is to run forever.
    //	    The special syntax Nx means to run the fuzz target N times
    //	    (for example, -fuzztime 1000x).
    //
    //	-fuzzminimizetime t
    //	    Run enough iterations of the fuzz target during each minimization
    //	    attempt to take t, as specified as a time.Duration (for example,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top