Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,165 for object3 (0.14 sec)

  1. guava/src/com/google/common/collect/ForwardingMapEntry.java

       */
      protected boolean standardEquals(@CheckForNull Object object) {
        if (object instanceof Entry) {
          Entry<?, ?> that = (Entry<?, ?>) object;
          return Objects.equal(this.getKey(), that.getKey())
              && Objects.equal(this.getValue(), that.getValue());
        }
        return false;
      }
    
      /**
       * A sensible definition of {@link #hashCode()} in terms of {@link #getKey()} and {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 19 19:28:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. internal/crypto/sse-s3.go

    	return key, err
    }
    
    // UnsealObjectsKeys extracts and decrypts all sealed object keys
    // from the metadata using the KMS and returns the decrypted object
    // keys.
    //
    // The metadata, buckets and objects slices must have the same length.
    func (s3 sses3) UnsealObjectKeys(ctx context.Context, k *kms.KMS, metadata []map[string]string, buckets, objects []string) ([]ObjectKey, error) {
    	if k == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. pkg/kubelet/util/manager/cache_based_manager.go

    			// object could not be found in the apiserver, update the cached data to
    			// reflect the current status.
    			data.object = object
    			data.err = err
    			data.lastUpdateTime = s.clock.Now()
    		}
    	}
    	return data.object, data.err
    }
    
    // cacheBasedManager keeps a store with objects necessary
    // for registered pods. Different implementations of the store
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/merge/MavenModelMerger.java

         *            <code>null</code>.
         * @param source The (read-only) source object that should be merged into the target object, may be
         *            <code>null</code>.
         * @param sourceDominant A flag indicating whether either the target object or the source object provides the
         *            dominant data.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. pkg/apis/apiserverinternal/types.go

    // encodes objects to when persisting objects in the backend.
    type ServerStorageVersion struct {
    	// The ID of the reporting API server.
    	APIServerID string
    
    	// The API server encodes the object to this version when persisting it in
    	// the backend (e.g., etcd).
    	EncodingVersion string
    
    	// The API server can decode objects encoded in these versions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/DescriptiveChange.java

        @Override
        public boolean equals(Object o) {
            if (this == o) {
                return true;
            }
            if (o == null || getClass() != o.getClass()) {
                return false;
            }
            DescriptiveChange that = (DescriptiveChange) o;
            return Objects.equals(message, that.message);
        }
    
        @Override
        public int hashCode() {
            return Objects.hash(message);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:32 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/InternalTransformer.java

     *
     * <p>A {@code Transformer} transforms objects of type.</p>
     *
     * <p>Implementations are free to return new objects or mutate the incoming value.</p>
     *
     * @param <OUT> The type the value is transformed to.
     * @param <IN> The type of the value to be transformed.
     */
    public interface InternalTransformer<OUT, IN> {
        /**
         * Transforms the given object, and returns the transformed value.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/SimpleLookup.java

    import org.apache.maven.api.services.LookupException;
    
    public class SimpleLookup implements Lookup {
        private final List<Object> objects;
    
        public SimpleLookup(List<Object> objects) {
            this.objects = objects;
        }
    
        @Override
        public <T> T lookup(Class<T> type) {
            return objects.stream()
                    .filter(type::isInstance)
                    .map(type::cast)
                    .findAny()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-linked_ptr.h

    //
    // Authors: Dan Egnor (******@****.***)
    //
    // A "smart" pointer type with reference tracking.  Every pointer to a
    // particular object is kept on a circular linked list.  When the last pointer
    // to an object is destroyed or reassigned, the object is deleted.
    //
    // Used properly, this deletes the object when the last reference goes away.
    // There are several caveats:
    // - Like all reference counting schemes, cycles lead to leaks.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. pkg/registry/admissionregistration/mutatingwebhookconfiguration/strategy.go

    func (mutatingWebhookConfigurationStrategy) PrepareForCreate(ctx context.Context, obj runtime.Object) {
    	ic := obj.(*admissionregistration.MutatingWebhookConfiguration)
    	ic.Generation = 1
    }
    
    // WarningsOnCreate returns warnings for the creation of the given object.
    func (mutatingWebhookConfigurationStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top