Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,347 for isSame (0.18 sec)

  1. 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...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 44K bytes
    - Viewed (0)
  2. 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...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 236.8K 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();
    Java
    - Registered: Sun Apr 14 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.9K bytes
    - Viewed (0)
  4. 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();
    ...
    JavaScript
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Thu Feb 13 04:21:06 GMT 2020
    - 65.7K bytes
    - Viewed (0)
  5. 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...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 31.9K bytes
    - Viewed (0)
  6. 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;
            }
        }
    
    Java
    - Registered: Sun Apr 14 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 31K bytes
    - Viewed (0)
  7. src/main/webapp/js/admin/moment-with-locales.min.js

    ore(e,t))&&(")"===s[1]?this.isBefore(a,t):!this.isAfter(a,t))},it.isSame=function(e,a){var t,s=D(e)?e:Sa(e);return!(!this.isValid()||!s.isValid())&&("millisecond"===(a=O(a||"millisecond"))?this.valueOf()===s.valueOf():(t=s.valueOf(),this.clone().startOf(a).valueOf()<=t&&t<=this.clone().endOf(a).valueOf()))},it.isSameOrAfter=function(e,a){return this.isSame(e,a)||this.isAfter(e,a)},it.isSameOrBefore=function(e,a){return this.isSame(e,a)||this.isBefore(e,a)},it.isValid=function(){return y(this)},i...
    JavaScript
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Thu Jul 12 13:18:07 GMT 2018
    - 319K bytes
    - Viewed (3)
  8. .teamcity/src/main/kotlin/util/RerunFlakyTest.kt

    import jetbrains.buildServer.configs.kotlin.ParameterDisplay
    
    class RerunFlakyTest(os: Os, arch: Arch = Arch.AMD64) : BuildType({
        val id = "Util_RerunFlakyTest${os.asName()}${arch.asName()}"
        name = "Rerun Flaky Test - ${os.asName()} ${arch.asName()}"
        description = "Allows you to rerun a selected flaky test 10 times"
        id(id)
        val testJvmVendorParameter = "testJavaVendor"
        val testJvmVersionParameter = "testJavaVersion"
    Plain Text
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Tue Feb 13 13:53:39 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  9. build-logic/documentation/src/main/groovy/gradlebuild/docs/FindBrokenInternalLinks.java

                        } else {
                            String idName = result.group(2);
                            if (idName.isEmpty()) {
                                errorsForFile.add(new Error(lineNumber, line, "Missing section reference for link to " + fileName));
                            } else {
                                if (!fileContainsText(referencedFile, "[[" + idName + "]]")) {
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Apr 05 07:57:56 GMT 2023
    - 8.6K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/projects/FunctionalTestProject.kt

        functionalTestBucketProvider: FunctionalTestBucketProvider,
        val testCoverage: TestCoverage,
        val stage: Stage
    ) : Project({
        this.id(testCoverage.asId(model))
        this.name = testCoverage.asName()
    }) {
        val functionalTests: List<BaseGradleBuildType> = functionalTestBucketProvider.createFunctionalTestsFor(stage, testCoverage)
        init {
            functionalTests.forEach(this::buildType)
        }
    Plain Text
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 805 bytes
    - Viewed (0)
Back to top