Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,388 for False (0.02 sec)

  1. android/guava-tests/test/com/google/common/base/PreconditionsTest.java

        assertThrows(IllegalArgumentException.class, () -> checkArgument(false));
      }
    
      public void testCheckArgument_simpleMessage_success() {
        checkArgument(true, IGNORE_ME);
      }
    
      public void testCheckArgument_simpleMessage_failure() {
        IllegalArgumentException expected =
            assertThrows(IllegalArgumentException.class, () -> checkArgument(false, new Message()));
        verifySimpleMessage(expected);
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 19K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/base/PreconditionsTest.java

        assertThrows(IllegalArgumentException.class, () -> checkArgument(false));
      }
    
      public void testCheckArgument_simpleMessage_success() {
        checkArgument(true, IGNORE_ME);
      }
    
      public void testCheckArgument_simpleMessage_failure() {
        IllegalArgumentException expected =
            assertThrows(IllegalArgumentException.class, () -> checkArgument(false, new Message()));
        verifySimpleMessage(expected);
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 19K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/dtyp/SecurityDescriptorTest.java

        void testDecodeWithNoSidsNoDacl() throws SMBProtocolDecodingException {
            // Prepare minimal buffer with no SIDs and no DACL
            prepareMinimalSecurityDescriptorBuffer(testBuffer, 0, false, false, false);
    
            int size = securityDescriptor.decode(testBuffer, 0, testBuffer.length);
    
            // When no DACL is present, decode returns 0 based on the implementation
            assertEquals(0, size);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  4. src/bytes/example_test.go

    	// Output:
    	// true
    	// false
    	// true
    	// true
    	// false
    }
    
    func ExampleContainsFunc() {
    	f := func(r rune) bool {
    		return r >= 'a' && r <= 'z'
    	}
    	fmt.Println(bytes.ContainsFunc([]byte("HELLO"), f))
    	fmt.Println(bytes.ContainsFunc([]byte("World"), f))
    	// Output:
    	// false
    	// true
    }
    
    func ExampleCount() {
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Mon May 12 16:07:54 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  5. src/main/config/eclipse/formatter/java.xml

    <setting id="org.eclipse.jdt.core.formatter.comment.format_line_comments" value="false"/>
    <setting id="org.eclipse.jdt.core.formatter.insert_space_after_colon_in_labeled_statement" value="insert"/>
    <setting id="org.eclipse.jdt.core.formatter.align_type_members_on_columns" value="false"/>
    <setting id="org.eclipse.jdt.core.formatter.alignment_for_assignment" value="16"/>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Sep 17 06:39:42 UTC 2017
    - 30.5K bytes
    - Viewed (0)
  6. api/maven-api-core/src/test/java/org/apache/maven/api/feature/FeaturesTest.java

            // Test case-insensitive string parsing - False
            Map<String, Object> properties = Map.of(Constants.MAVEN_DEPLOY_BUILD_POM, "False");
            assertFalse(Features.deployBuildPom(properties));
        }
    
        @Test
        void testDeployBuildPomWithInvalidStringValue() {
            // Test that invalid string values default to false (Boolean.parseBoolean behavior)
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jul 04 19:42:23 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  7. src/test/java/jcifs/netbios/NbtAddressTest.java

            mockName = new Name(mockConfig, "HOST", 0x20, null);
            NbtAddress nbtAddress =
                    new NbtAddress(mockName, testAddressInt, false, NbtAddress.H_NODE, false, false, false, false, testMacAddress); // isDataFromNodeStatus is true by constructor
    
            nbtAddress.calledName = NbtAddress.SMBSERVER_NAME; // Manually set for this test case
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.4K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/auth/chain/AuthenticationChainTest.java

            List<User> loadCalls = new ArrayList<>();
    
            // Control behavior
            boolean updateThrowsException = false;
            boolean deleteThrowsException = false;
            boolean changePasswordThrowsException = false;
            boolean loadThrowsException = false;
            boolean changePasswordResult = false;
            User loadResult = null;
    
            @Override
            public void update(User user) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 14.6K bytes
    - Viewed (0)
  9. cmd/local-locker.go

    	if l.waitMutex.Load() > lockMutexWaitLimit {
    		l.locksOverloaded.Add(1)
    		return false, nil
    	}
    	// Wait for mutex
    	defer l.getMutex()()
    	if ctx.Err() != nil {
    		return false, ctx.Err()
    	}
    	if !l.canTakeLock(args.Resources...) {
    		// Not all locks can be taken on resources,
    		// reject it completely.
    		return false, nil
    	}
    
    	// No locks held on the all resources, so claim write
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 12K bytes
    - Viewed (0)
  10. src/archive/tar/strconv_test.go

    		{"-5.98", time.Unix(-5, -98e7), true},
    		{"-", time.Time{}, false},
    		{"+", time.Time{}, false},
    		{"-1.-1", time.Time{}, false},
    		{"99999999999999999999999999999999999999999999999", time.Time{}, false},
    		{"0.123456789abcdef", time.Time{}, false},
    		{"foo", time.Time{}, false},
    		{"\x00", time.Time{}, false},
    		{"𝟵𝟴𝟳𝟲𝟱.𝟰𝟯𝟮𝟭𝟬", time.Time{}, false}, // Unicode numbers (U+1D7EC to U+1D7F5)
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Mon Sep 08 17:08:20 UTC 2025
    - 15K bytes
    - Viewed (0)
Back to top