Search Options

Results per page
Sort
Preferred Languages
Advance

Results 2151 - 2160 of 3,090 for FALSE (0.02 sec)

  1. internal/lsync/lrwmutex_test.go

    		t.Errorf("TestSimpleWriteLockAcquired(): \nexpected %#v\ngot      %#v", expected, locked)
    	}
    }
    
    func TestSimpleWriteLockTimedOut(t *testing.T) {
    	locked := testSimpleWriteLock(t, time.Second)
    
    	expected := false
    	if locked != expected {
    		t.Errorf("TestSimpleWriteLockTimedOut(): \nexpected %#v\ngot      %#v", expected, locked)
    	}
    }
    
    func testDualWriteLock(t *testing.T, duration time.Duration) (locked bool) {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Mar 05 04:57:35 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_function_test.cc

                   const std::vector<TF_Output>& outputs,
                   const std::vector<string>& output_names,
                   bool expect_failure = false) {
        ASSERT_EQ(func_, nullptr);
        const char** output_names_ptr = ToArray(output_names);
        func_ = TF_GraphToFunction(func_graph_, func_name_, false, num_opers,
                                   num_opers == -1 ? nullptr : opers.data(),
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/login/newpassword.jsp

    		<div class="card">
    			<div class="card-body login-card-body">
    				<p class="login-box-msg">
    					<la:message key="labels.login.newpassword" />
    				</p>
    				<%-- Message --%>
    				<div>
    					<la:info id="msg" message="false">
    						<div class="alert alert-info">${msg}</div>
    					</la:info>
    					<la:errors />
    				</div>
    				<la:form styleId="newPassword" method="post">
    					<div class="input-group mb-3">
    						<c:set var="ph_new_password">
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 26 01:07:52 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/io/CountingInputStreamTest.java

        @Override
        public int read() throws IOException {
          return 0;
        }
    
        @Override
        public boolean markSupported() {
          return false;
        }
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. guava-tests/pom.xml

            </configuration>
          </plugin>
          <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>animal-sniffer-maven-plugin</artifactId>
            <configuration>
              <checkTestClasses>false</checkTestClasses> <!-- TODO(cpovirk): Consider checking them. -->
            </configuration>
          </plugin>
          <plugin>
            <groupId>org.codehaus.mojo</groupId>
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Jul 24 18:53:31 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/JdkBackedImmutableMultiset.java

      }
    
      @Override
      Entry<E> getEntry(int index) {
        return entries.get(index);
      }
    
      @Override
      boolean isPartialView() {
        return false;
      }
    
      @Override
      public int size() {
        return Ints.saturatedCast(size);
      }
    
      // redeclare to help optimizers with b/310253115
      @SuppressWarnings("RedundantOverride")
      @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/MIEName.java

                        && ( ( this.name == null && terg.name == null ) || ( this.name != null && this.name.equalsIgnoreCase(terg.name) ) ) ) {
                    return true;
                }
            }
            return false;
        }
    
    
        /*
         * (non-Javadoc)
         * 
         * @see java.lang.Object#hashCode()
         */
        @Override
        public int hashCode () {
            return this.oid.hashCode();
        }
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.5K bytes
    - Viewed (0)
  8. tests/test_tutorial/test_request_form_models/test_tutorial002_an_py39.py

                            "username": {"type": "string", "title": "Username"},
                            "password": {"type": "string", "title": "Password"},
                        },
                        "additionalProperties": False,
                        "type": "object",
                        "required": ["username", "password"],
                        "title": "FormData",
                    },
                    "ValidationError": {
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Sep 06 17:31:18 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. build-logic/documentation/src/test/groovy/gradlebuild/docs/XmlSpecification.groovy

            formatTree(nodes as List)
        }
    
        def formatTree(Iterable<? extends Node> nodes) {
            format(nodes, true)
        }
    
        def format(Iterable<? extends Node> nodes, boolean prettyPrint = false) {
            StringBuilder builder = new StringBuilder()
            nodes.each { node ->
                format(node, builder, 0, prettyPrint, prettyPrint)
            }
            return builder.toString()
        }
    
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 4.1K bytes
    - Viewed (0)
  10. internal/event/errors.go

    		return true
    	case ErrARNNotFound, *ErrARNNotFound:
    		return true
    	case ErrInvalidARN, *ErrInvalidARN:
    		return true
    	case ErrInvalidEventName, *ErrInvalidEventName:
    		return true
    	}
    
    	return false
    }
    
    // ErrInvalidFilterName - invalid filter name error.
    type ErrInvalidFilterName struct {
    	FilterName string
    }
    
    func (err ErrInvalidFilterName) Error() string {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 4.1K bytes
    - Viewed (0)
Back to top