Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for METHOD (0.15 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. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    throws Exception; protected void invokeTestMethod(reflect.Method, org.junit.runner.notification.RunNotifier); private void testAborted(org.junit.runner.notification.RunNotifier, org.junit.runner.Description, Throwable); protected TestMethod wrapMethod(reflect.Method); protected String testName(reflect.Method); protected org.junit.runner.Description methodDescription(reflect.Method); protected annotation.Annotation[] testAnnotations(reflect.Method); public void filter(org.junit.runner.manipulation.Filter)...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 373.7K bytes
    - Viewed (0)
  3. 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)
  4. api/go1.16.txt

    pkg io/fs, func WalkDir(FS, string, WalkDirFunc) error
    pkg io/fs, method (*PathError) Error() string
    pkg io/fs, method (*PathError) Timeout() bool
    pkg io/fs, method (*PathError) Unwrap() error
    pkg io/fs, method (FileMode) IsDir() bool
    pkg io/fs, method (FileMode) IsRegular() bool
    pkg io/fs, method (FileMode) Perm() FileMode
    pkg io/fs, method (FileMode) String() string
    pkg io/fs, method (FileMode) Type() FileMode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  5. 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)
  6. api/go1.13.txt

    pkg log/syslog (netbsd-arm64-cgo), method (*Writer) Alert(string) error
    pkg log/syslog (netbsd-arm64-cgo), method (*Writer) Close() error
    pkg log/syslog (netbsd-arm64-cgo), method (*Writer) Crit(string) error
    pkg log/syslog (netbsd-arm64-cgo), method (*Writer) Debug(string) error
    pkg log/syslog (netbsd-arm64-cgo), method (*Writer) Emerg(string) error
    pkg log/syslog (netbsd-arm64-cgo), method (*Writer) Err(string) error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 08 18:44:16 UTC 2019
    - 452.6K bytes
    - Viewed (0)
  7. 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)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                                x-kubernetes-list-type: map
                              method:
                                description: "Method specifies HTTP method matcher. When
                                  specified, this route will be matched only if the request
                                  has the specified method. \n Support: Extended"
                                enum:
                                - GET
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  9. 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)
  10. CHANGELOG/CHANGELOG-1.17.md

    ### Feature
    
    - Extend AWS azToRegion method to support Local Zones ([#90874](https://github.com/kubernetes/kubernetes/pull/90874), [@Jeffwan](https://github.com/Jeffwan)) [SIG Cloud Provider]
    
    ### Bug or Regression
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (0)
Back to top