Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for ISNOT (0.06 sec)

  1. src/os/error_unix_test.go

    		isExistTest{err: &fs.PathError{Err: syscall.EEXIST}, is: true, isnot: false},
    		isExistTest{err: &fs.PathError{Err: syscall.ENOTEMPTY}, is: true, isnot: false},
    
    		isExistTest{err: &os.LinkError{Err: syscall.EEXIST}, is: true, isnot: false},
    		isExistTest{err: &os.LinkError{Err: syscall.ENOTEMPTY}, is: true, isnot: false},
    
    		isExistTest{err: &os.SyscallError{Err: syscall.EEXIST}, is: true, isnot: false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 23:34:21 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. src/os/error_windows_test.go

    		isExistTest{err: &os.LinkError{Err: syscall.ERROR_FILE_NOT_FOUND}, is: false, isnot: true},
    		isExistTest{err: &os.SyscallError{Err: syscall.ERROR_FILE_NOT_FOUND}, is: false, isnot: true},
    
    		isExistTest{err: &fs.PathError{Err: _ERROR_BAD_NETPATH}, is: false, isnot: true},
    		isExistTest{err: &os.LinkError{Err: _ERROR_BAD_NETPATH}, is: false, isnot: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  3. src/os/error_test.go

    		}
    		if isnot := os.IsNotExist(tt.err); isnot != tt.isnot {
    			t.Errorf("os.IsNotExist(%T %v) = %v, want %v", tt.err, tt.err, isnot, tt.isnot)
    		}
    		if isnot := errors.Is(tt.err, fs.ErrNotExist); isnot != tt.isnot {
    			t.Errorf("errors.Is(%T %v, fs.ErrNotExist) = %v, want %v", tt.err, tt.err, isnot, tt.isnot)
    		}
    	}
    }
    
    type isPermissionTest struct {
    	err  error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 00:41:52 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-groovy/src/test/groovy/org/gradle/api/plugins/GroovyPluginTest.groovy

    import org.gradle.test.fixtures.AbstractProjectBuilderSpec
    import org.gradle.util.TestUtil
    
    import static org.gradle.api.tasks.TaskDependencyMatchers.dependsOn
    import static org.hamcrest.core.IsNot.not
    
    class GroovyPluginTest extends AbstractProjectBuilderSpec {
        private final GroovyPlugin groovyPlugin = TestUtil.newInstance(GroovyPlugin)
    
        def "applies the java plugin to the project"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/CharMatcher.java

          return "CharMatcher.is('" + showCharacter(match) + "')";
        }
      }
    
      /** Implementation of {@link #isNot(char)}. */
      private static final class IsNot extends FastMatcher {
    
        private final char match;
    
        IsNot(char match) {
          this.match = match;
        }
    
        @Override
        public boolean matches(char c) {
          return c != match;
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/CharMatcher.java

          return "CharMatcher.is('" + showCharacter(match) + "')";
        }
      }
    
      /** Implementation of {@link #isNot(char)}. */
      private static final class IsNot extends FastMatcher {
    
        private final char match;
    
        IsNot(char match) {
          this.match = match;
        }
    
        @Override
        public boolean matches(char c) {
          return c != match;
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. 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/IsNot.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 IsNot<T> java.lang.Object org.hamcrest.BaseMatcher<T> org.hamcrest.core.IsNot<T> All Implemented Interfaces: Matcher<T>, SelfDescribing public class IsNot<T> extends BaseMatcher<T> Calculates the logical negation of a matcher....
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar

    public void describeTo(org.hamcrest.Description); public static org.hamcrest.Matcher instanceOf(Class); public static org.hamcrest.Matcher any(Class); } org/hamcrest/core/IsNot.class package org.hamcrest.core; public synchronized class IsNot extends org.hamcrest.BaseMatcher { private final org.hamcrest.Matcher matcher; public void IsNot(org.hamcrest.Matcher); public boolean matches(Object); public void describeTo(org.hamcrest.Description); public static org.hamcrest.Matcher not(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)
  9. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    type) { return (Matcher<T>) new IsInstanceOf(type); } } org/hamcrest/core/IsNot.java org/hamcrest/core/IsNot.java /* Copyright (c) 2000-2009 hamcrest.org */ package org.hamcrest.core; import org.hamcrest.BaseMatcher; import org.hamcrest.Description; import org.hamcrest.Factory; import org.hamcrest.Matcher; import static org.hamcrest.core.IsEqual.equalTo; /** * Calculates the logical negation of a matcher. */ public class IsNot<T> extends BaseMatcher<T> { private final Matcher<T> matcher; public IsNot(Matcher<T>...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 31.9K bytes
    - Viewed (0)
  10. internal/s3select/sql/value.go

    // numbers and booleans.
    
    // Supported comparison operators
    const (
    	opLt    = "<"
    	opLte   = "<="
    	opGt    = ">"
    	opGte   = ">="
    	opEq    = "="
    	opIneq  = "!="
    	opIs    = "IS"
    	opIsNot = "ISNOT"
    )
    
    // InferBytesType will attempt to infer the data type of bytes.
    // Will fail if value type is not bytes or it would result in invalid utf8.
    // ORDER: int, float, bool, JSON (object or array), timestamp, string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 25 20:31:19 UTC 2022
    - 20.2K bytes
    - Viewed (0)
Back to top