Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 217 for picard (0.17 sec)

  1. src/net/http/responsecontroller_test.go

    		errc <- err
    	}))
    
    	res, err := cst.c.Get(cst.ts.URL)
    	close(startwritec)
    	if err != nil {
    		t.Fatalf("unexpected connection error: %v", err)
    	}
    	defer res.Body.Close()
    	_, err = io.Copy(io.Discard, res.Body)
    	if err == nil {
    		t.Errorf("client reading from truncated request body: got nil error, want non-nil")
    	}
    	err = <-errc // io.Copy error
    	if !errors.Is(err, os.ErrDeadlineExceeded) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 19:20:31 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/preemption/preemption.go

    // 2. A node with minimum highest priority victim is picked.
    // 3. Ties are broken by sum of priorities of all victims.
    // 4. If there are still ties, node with the minimum number of victims is picked.
    // 5. If there are still ties, node with the latest start time of all highest priority victims is picked.
    // 6. If there are still ties, the first such node is picked (sort of randomly).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.wizard;
    
    import java.io.UnsupportedEncodingException;
    import java.net.URLEncoder;
    import java.util.List;
    
    import javax.annotation.Resource;
    
    import org.apache.commons.lang3.StringUtils;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. internal/hash/reader_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	_, err = io.Copy(io.Discard, r)
    	if err != nil {
    		t.Fatal(err)
    	}
    	md5sum := r.MD5Current()
    	if hex.EncodeToString(md5sum) != "e2fc714c4727ee9395f324cd2e7f331f" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 18 17:00:54 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/BTreePersistentIndexedCache.java

    // todo - don't store null links to child blocks in leaf index blocks
    // todo - align block boundaries
    // todo - thread safety control
    // todo - merge small values into a single data block
    // todo - discard when file corrupt
    // todo - include data directly in index entry when serializer can guarantee small fixed sized data
    // todo - free list leaks disk space
    // todo - merge adjacent free blocks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/transform/transform.go

    	return len(src), nil
    }
    
    type discard struct{ NopResetter }
    
    func (discard) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {
    	return 0, len(src), nil
    }
    
    var (
    	// Discard is a Transformer for which all Transform calls succeed
    	// by consuming all bytes and writing nothing.
    	Discard Transformer = discard{}
    
    	// Nop is a SpanningTransformer that copies src to dst.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DefaultFilePropertyFactoryTest.groovy

            then:
            producer.known
    
            when:
            producer.visitProducerTasks(action)
    
            then:
            1 * action.execute(task)
            0 * action._
        }
    
        def "can discard the producer task for a directory"() {
            def var = factory.newDirectoryProperty()
            def task = Stub(Task)
            def owner = Stub(ModelObject)
            owner.taskThatOwnsThisObject >> task
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  8. src/net/http/fcgi/fcgi_test.go

    		done := make(chan struct{})
    		c := newChild(rc, http.HandlerFunc(func(
    			w http.ResponseWriter,
    			r *http.Request,
    		) {
    			// block on reading body of request
    			_, err := io.Copy(io.Discard, r.Body)
    			if err != tt.err {
    				t.Errorf("Expected %#v, got %#v", tt.err, err)
    			}
    			// not reached if body of request isn't closed
    			close(done)
    		}))
    		c.serve()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 18:51:39 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/text/transform/transform.go

    	return len(src), nil
    }
    
    type discard struct{ NopResetter }
    
    func (discard) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {
    	return 0, len(src), nil
    }
    
    var (
    	// Discard is a Transformer for which all Transform calls succeed
    	// by consuming all bytes and writing nothing.
    	Discard Transformer = discard{}
    
    	// Nop is a SpanningTransformer that copies src to dst.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 21 22:10:00 UTC 2020
    - 21.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/DefaultPropertyTest.groovy

            providerWithNoValue().toString() == "property(java.lang.String, undefined)"
        }
    
        def "can set null value to discard value"() {
            given:
            def property = property()
            property.set(someValue())
            property.set((String) null)
    
            expect:
            !property.present
            property.getOrNull() == null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top