Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,437 for IsSame (0.13 sec)

  1. subprojects/core/src/main/java/org/gradle/configuration/internal/DefaultListenerBuildOperationDecorator.java

                    return delegate.hashCode();
                } else if (methodName.equals("equals") && args.length == 1) {
                    return proxy == args[0] || isSame(args[0]);
                } else if (!SUPPORTED_INTERFACES.contains(method.getDeclaringClass()) || UNDECORATED_METHOD_NAMES.contains(methodName)) {
                    try {
                        return method.invoke(delegate, args);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar

    static org.hamcrest.Matcher notNullValue(); public static org.hamcrest.Matcher nullValue(Class); public static org.hamcrest.Matcher notNullValue(Class); } org/hamcrest/core/IsSame.class package org.hamcrest.core; public synchronized class IsSame extends org.hamcrest.BaseMatcher { private final Object object; public void IsSame(Object); public boolean matches(Object); public void describeTo(org.hamcrest.Description); public static org.hamcrest.Matcher sameInstance(Object); public static org.hamcrest.Matcher...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 44K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTreeHandleImpl.java

         */
        @Override
        public boolean isSameTree ( SmbTreeHandle th ) {
            if ( ! ( th instanceof SmbTreeHandleImpl ) ) {
                return false;
            }
            return this.treeConnection.isSame( ( (SmbTreeHandleImpl) th ).treeConnection);
        }
    
    
        @Override
        public int getSendBufferSize () throws SmbException {
            try ( SmbSessionImpl session = this.treeConnection.getSession();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.9K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    CONSTR | METHOD DETAIL: FIELD | CONSTR | METHOD org/hamcrest/core/IsSame.html Overview Package Class Use Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES All Classes SUMMARY: NESTED | FIELD | CONSTR | METHOD DETAIL: FIELD | CONSTR | METHOD org.hamcrest.core Class IsSame<T> java.lang.Object org.hamcrest.BaseMatcher<T> org.hamcrest.core.IsSame<T> All Implemented Interfaces: Matcher<T>, SelfDescribing public class IsSame<T> extends BaseMatcher<T> Is the value the same object as another...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

    e();
    L1142:                this.endDate = this.oldEndDate.clone();
    L1143:            }
    L1144:
    L1145:            //if a new date range was selected, invoke the user callback function
    L1146:            if (!this.startDate.isSame(this.oldStartDate) || !this.endDate.isSame(this.oldEndDate))
    L1147:                this.callback(this.startDate.clone(), this.endDate.clone(), this.chosenLabel);
    L1148:
    L1149:            //if picker is attached to a text input, update it
    L1150:            this.updateElement();
    ...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    > type) { return not(nullValue(type)); } } org/hamcrest/core/IsSame.java org/hamcrest/core/IsSame.java /* Copyright (c) 2000-2006 hamcrest.org */ package org.hamcrest.core; import org.hamcrest.BaseMatcher; import org.hamcrest.Description; import org.hamcrest.Factory; import org.hamcrest.Matcher; /** * Is the value the same object as another value? */ public class IsSame<T> extends BaseMatcher<T> { private final T object; public IsSame(T object) { this.object = object; } @Override public boolean matches(Object...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 31.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

        // dimensions, and the higher dimensions are same, so we know the
        // result and input of the "BinaryOp" in the source pattern have
        // the same shape, which is defined by `shape`.
        [(IsTailOfShape $rhs, $lhs),
         (HasOneUse $lhs),
         // The result of the new "BinaryOp" will have the same shape as
         // `input`. In other words, the shape of the `Reshape` op are not
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbTreeConnection.java

            }
        }
    
    
        /**
         * 
         * Only call this method while holding a tree handle
         * 
         * @param other
         * @return whether the connection refers to the same tree
         */
        public boolean isSame ( SmbTreeConnection other ) {
            try ( SmbTreeImpl t1 = getTree();
                  SmbTreeImpl t2 = other.getTree() ) {
                return t1 == t2;
            }
        }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 31K bytes
    - Viewed (0)
  9. pilot/pkg/xds/proxy_dependencies_test.go

    		SidecarScope: &model.SidecarScope{Name: generalName, Namespace: nsName},
    	}
    	gateway := &model.Proxy{
    		Type:            model.Router,
    		ConfigNamespace: nsName,
    		Metadata:        &model.NodeMetadata{Namespace: nsName},
    		Labels:          map[string]string{"gateway": "gateway"},
    	}
    
    	sidecarScopeKindNames := map[kind.Kind]string{
    		kind.ServiceEntry: svcName, kind.VirtualService: vsName, kind.DestinationRule: drName, kind.Sidecar: scName,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  10. src/internal/diff/testdata/same.txt

    Russ Cox <******@****.***> 1643490792 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 16:56:29 UTC 2022
    - 55 bytes
    - Viewed (0)
Back to top