Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for melhor (0.84 sec)

  1. doc/go_spec.html

    <pre>
    func flushICache(begin, end uintptr)  // implemented externally
    </pre>
    
    <h3 id="Method_declarations">Method declarations</h3>
    
    <p>
    A method is a <a href="#Function_declarations">function</a> with a <i>receiver</i>.
    A method declaration binds an identifier, the <i>method name</i>, to a method,
    and associates the method with the receiver's <i>base type</i>.
    </p>
    
    <pre class="ebnf">
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    	// http://tools.ietf.org/html/rfc7540#section-8.2
    	if opts.Method != "GET" && opts.Method != "HEAD" {
    		return fmt.Errorf("method %q must be GET or HEAD", opts.Method)
    	}
    
    	msg := &http2startPushRequest{
    		parent: st,
    		method: opts.Method,
    		url:    u,
    		header: http2cloneHeader(opts.Header),
    		done:   http2errChanPool.Get().(chan error),
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  3. ChangeLog.md

    #### Fixes
    
    - [`KT-67486`](https://youtrack.jetbrains.com/issue/KT-67486) K2: Calling method from a Java (implementing a Kotlin class) with named parameters is no longer possible if Java method has different parameter names
    - [`KT-64615`](https://youtrack.jetbrains.com/issue/KT-64615) Inconsistent error messages for platform type nullability assertions
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.27.md

    - Promoted `whoami` kubectl command. ([#116510](https://github.com/kubernetes/kubernetes/pull/116510), [@nabokihms](https://github.com/nabokihms))
    - Scheduler no longer runs the plugin's `Filter` method when its `PreFilter` method returned a Skip status.
      In other words, your `PreFilter`/`Filter` plugin can return a Skip status in `PreFilter` if the plugin does nothing in Filter for that Pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.30.md

    - Users can now traverse all the pods that are in the scheduler and waiting in the permit stage through method `IterateOverWaitingPods`. In other words,  all waitingPods in scheduler can be obtained from any profiles. Before this commit, each profile could only obtain `waitingPods` within that profile ([#122946](https://github.com/kubernetes/kubernetes/pull/122946),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  6. docs/en/docs/release-notes.md

    * 📝 Add location info to `tutorial/bigger-applications.md`. PR [#10552](https://github.com/tiangolo/fastapi/pull/10552) by [@nilslindemann](https://github.com/nilslindemann).
    * ✏️ Fix Pydantic method name in `docs/en/docs/advanced/path-operation-advanced-configuration.md`. PR [#10826](https://github.com/tiangolo/fastapi/pull/10826) by [@ahmedabdou14](https://github.com/ahmedabdou14).
    
    ### Translations
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/ssa.go

    	n *ir.CallExpr
    	// If defer call is closure call, the address of the argtmp where the
    	// closure is stored.
    	closure *ssa.Value
    	// The node representing the argtmp where the closure is stored - used for
    	// function, method, or interface call, to store a closure that panic
    	// processing can use for this defer.
    	closureNode *ir.Name
    }
    
    type state struct {
    	// configuration (arch) information
    	config *ssa.Config
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

          // Handle input like e.g. "k = [-1, 1]", in which case we extract a
          // band (multiple diagonals).
          (*k)[1] = (*it).getSExtValue();
        }
        return success();
      }
    
      // Utility method for broadcasting integer constants to a given shape.
      BroadcastOp BroadcastConstant(Location loc, Shape shape, int32_t constant,
                                    int int_size, PatternRewriter &rewriter) const {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.26.md

    - Fix a concurrent map access in TopologyCache's `HasPopulatedHints` method. ([#120324](https://github.com/kubernetes/kubernetes/pull/120324), [@Miciah](https://github.com/Miciah)) [SIG Apps and Network]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.8.md

    * The API Server now automatically creates RBAC ClusterRoles for CSR approving.  ([#49284](https://github.com/kubernetes/kubernetes/pull/49284), [@luxas](https://github.com/luxas))
        * Each deployment method should bind users/groups to the ClusterRoles if they are using this feature.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
Back to top