Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for niue (1.12 sec)

  1. src/compress/flate/deflate.go

    	if lookahead < minMatchLook {
    		minMatchLook = lookahead
    	}
    
    	win := d.window[0 : pos+minMatchLook]
    
    	// We quit when we get a match that's at least nice long
    	nice := len(win) - pos
    	if d.nice < nice {
    		nice = d.nice
    	}
    
    	// If we've got a match that's good enough, only look in 1/4 the chain.
    	tries := d.chain
    	length = prevLength
    	if length >= d.good {
    		tries >>= 2
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. src/main/resources/fess_label_de.properties

    labels.permissions=Berechtigungen
    labels.virtual_hosts=Virtuelle Hosts
    labels.virtual_host=Virtueller Host
    labels.label_type=Label
    labels.file_crawling_button_create=Erstellen
    labels.file_crawling_button_create_job=Neue Aufgabe erstellen
    labels.web_crawling_configuration=Web-Crawling
    labels.web_crawling_title_details=Web-Crawling-Konfiguration
    labels.included_urls=Eingeschlossene URLs beim Crawling
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  3. tests/hooks_test.go

    		t.Fatalf("should returns error %v when creating product, but got nil", err)
    	}
    
    	product2 := Product2{Name: "Nice", Price: 100}
    
    	if err := DB.Create(&product2).Error; err != nil {
    		t.Fatalf("Failed to create product, got error: %v", err)
    	}
    
    	var result Product2
    	if err := DB.First(&result, "name = ?", "Nice").Error; err != nil {
    		t.Fatalf("Failed to query product, got error: %v", err)
    	}
    
    	var resultClone Product2
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Feb 18 01:20:29 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/validation/ValidationMessageCheckerTest.groovy

            when:
            render redundantGetters {
                type('Person').property('nice')
                includeLink()
            }
    
            then:
            outputEquals """
    Type 'Person' property 'nice' has redundant getters: 'getNice()' and 'isNice()'.
    
    Reason: Boolean property 'nice' has both an `is` and a `get` getter.
    
    Possible solutions:
      1. Remove one of the getters.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/base/FunctionsTest.java

        Function<Float, Boolean> c1 = Functions.compose(Functions.compose(h, g), f);
        Function<Float, Boolean> c2 = Functions.compose(h, Functions.compose(g, f));
    
        // Might be nice (eventually) to have:
        //     assertEquals(c1, c2);
    
        // But for now, settle for this:
        assertEquals(c1.hashCode(), c2.hashCode());
    
        assertEquals(c1.apply(1.0f), c2.apply(1.0f));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. maven-core/plugin-manager.txt

    We might want to separate between installation and activation, it might be nice to allow a user to activate/deactivate a plugin instead of having to uninstall and reinstall a plugin in particular cases. This would prevent having to reconfigure the plugin again. For example it might be nice to turn off LDAP authentication without having to uninstall the plugin.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 22:45:13 UTC 2022
    - 12.9K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

    /*
    
    - test projects for each of these
    - how to categorize the problems so that the id of the problem can be match to a page with descriptive help and the test
      project
    - nice little sample projects that could be run in the core as well as integration tests
    
    All Possible Errors
    - invalid lifecycle phase (maybe same as bad CLI param, though you were talking about embedder too)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. src/test/java/jcifs/tests/PACTest.java

            verifyArcfourHMAC(17, expect, data, key);
        }
    
    
    
        @Test
        public void testAES128Checksum () throws GeneralSecurityException {
            String data = "eight nine ten eleven twelve thirteen";
            String key = "9062430C8CDA3388922E6D6A509F5B7A";
            String expect = "01A4B088D45628F6946614E3";
            verifyAESHMAC(3, expect, key, data.getBytes(StandardCharsets.US_ASCII));
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Oct 01 12:01:17 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/TestsForMapsInJavaUtil.java

                  @Override
                  protected SortedMap<String, String> create(Entry<String, String>[] entries) {
                    /*
                     * TODO(cpovirk): it would be nice to create an input Map and use
                     * the copy constructor here and in the other tests
                     */
                    return populate(new TreeMap<String, String>(), entries);
                  }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 17K bytes
    - Viewed (0)
  10. src/encoding/gob/gobencdec_test.go

    // Test that we can use a value then a pointer type of a GobEncoder
    // in the same encoded value. Bug 4647.
    func TestGobEncoderValueThenPointer(t *testing.T) {
    	v := ValueGobber("forty-two")
    	w := ValueGobber("six-by-nine")
    	bv := BinaryValueGobber("1nanocentury")
    	bw := BinaryValueGobber("πseconds")
    	tv := TextValueGobber("gravitationalacceleration")
    	tw := TextValueGobber("π²ft/s²")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:26:13 UTC 2023
    - 19.2K bytes
    - Viewed (0)
Back to top