Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 86 for describes (0.2 sec)

  1. src/reflect/type.go

    	}
    	var p *abi.Imethod
    	for i := range t.Methods {
    		p = &t.Methods[i]
    		if t.nameOff(p.Name).Name() == name {
    			return t.Method(i), true
    		}
    	}
    	return
    }
    
    // A StructField describes a single field in a struct.
    type StructField struct {
    	// Name is the field name.
    	Name string
    
    	// PkgPath is the package path that qualifies a lower case (unexported)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    class TestCase;
    class TestInfo;
    class UnitTest;
    
    // A class for indicating whether an assertion was successful.  When
    // the assertion wasn't successful, the AssertionResult object
    // remembers a non-empty message that describes how it failed.
    //
    // To create an instance of this class, use one of the factory functions
    // (AssertionSuccess() and AssertionFailure()).
    //
    // This class is useful for two purposes:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    class TestCase;
    class TestInfo;
    class UnitTest;
    
    // A class for indicating whether an assertion was successful.  When
    // the assertion wasn't successful, the AssertionResult object
    // remembers a non-empty message that describes how it failed.
    //
    // To create an instance of this class, use one of the factory functions
    // (AssertionSuccess() and AssertionFailure()).
    //
    // This class is useful for two purposes:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/CacheBuilder.java

       *
       * <p>Entries with keys that have been garbage collected may be counted in {@link Cache#size}, but
       * will never be visible to read or write operations; such entries are cleaned up as part of the
       * routine maintenance described in the class javadoc.
       *
       * @return this {@code CacheBuilder} instance (for chaining)
       * @throws IllegalStateException if the key strength was already set
       */
      @GwtIncompatible // java.lang.ref.WeakReference
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.31.md

    ### Container Images
    
    All container images are available as manifest lists and support the described
    architectures. It is also possible to pull a specific architecture directly by
    adding the "-$ARCH" suffix  to the container image name.
    
    name | architectures
    ---- | -------------
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  6. pilot/pkg/model/push_context_test.go

    	ps.initSidecarScopes(env)
    	cases := []struct {
    		proxy    *Proxy
    		labels   labels.Instance
    		sidecar  string
    		describe string
    	}{
    		{
    			proxy:    &Proxy{Type: SidecarProxy, ConfigNamespace: "default"},
    			labels:   labels.Instance{"app": "foo"},
    			sidecar:  "default/foo",
    			describe: "match local sidecar",
    		},
    		{
    			proxy:    &Proxy{Type: SidecarProxy, ConfigNamespace: "default"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  7. docs/bucket/notifications/README.md

    The AMQP configuration is located under the sub-system `notify_amqp` top-level key. Create a configuration key-value pair here for your AMQP instance. The key is a name for your AMQP endpoint, and the value is a collection of key-value parameters described in the table below.
    
    ```
    KEY:
    notify_amqp[:name]  publish bucket notifications to AMQP endpoints
    
    ARGS:
    url*           (url)       AMQP server endpoint e.g. `amqp://myuser:mypassword@localhost:5672`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    WARNING: Using the `Project.copy` method at execution time, as described here, is not compatible with the <<configuration_cache.adoc#config_cache:requirements:use_project_during_execution,configuration cache>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	}
    
    	if utilfeature.DefaultFeatureGate.Enabled(features.ResilientWatchCacheInitialization) {
    		if !c.ready.check() {
    			// If Cache is not initialized, delegate Get requests to storage
    			// as described in https://kep.k8s.io/4568
    			return c.storage.Get(ctx, key, opts, objPtr)
    		}
    	}
    
    	// If resourceVersion is specified, serve it from cache.
    	// It's guaranteed that the returned value is at least that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     *
     * <li>A property of the project whose value is a closure. The closure is treated as a method and called with the provided parameters.
     * The property is located as described above.</li>
     *
     * </ul>
     */
    @HasInternalProtocol
    public interface Project extends Comparable<Project>, ExtensionAware, PluginAware {
        /**
         * The default project build file name.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
Back to top