Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 401 for endFile (0.21 sec)

  1. src/net/sendfile_test.go

    		if called {
    			t.Error("internal/poll.SendFile called multiple times, want one call")
    		}
    		called = true
    		gotHandled = handled
    		gotFD = dstFD
    	}
    	f()
    	if !called {
    		t.Error("internal/poll.SendFile was not called, want it to be")
    		return
    	}
    	if !gotHandled {
    		t.Error("internal/poll.SendFile did not handle the write, want it to")
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. tools/bug-report/pkg/processlog/processlog_test.go

    			startTime:         "2020-06-29T23:37:27.336155Z",
    			endTime:           "2020-06-29T23:37:27.349559Z",
    			timeFilterApplied: true,
    		},
    		{
    			name:              "input_log_of_json_format",
    			inputLogFilePath:  "input/format_json.log",
    			wantOutputLogPath: "output/format_json_with_time_filter.log",
    			startTime:         "2023-05-10T17:43:55.356647Z",
    			endTime:           "2023-05-10T17:43:55.356691Z",
    			timeFilterApplied: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 19 21:44:33 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/plugins/posix/copy_file_linux.cc

    #include <limits.h>
    #include <stdint.h>
    #include <sys/sendfile.h>
    
    #include "tensorflow/c/experimental/filesystem/plugins/posix/copy_file.h"
    
    namespace tf_posix_filesystem {
    
    // Transfers up to `size` bytes from `dst_fd` to `src_fd`.
    //
    // This method uses `sendfile` specific to linux after 2.6.33.
    int CopyFileContents(int dst_fd, int src_fd, off_t size) {
      off_t offset = 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 22 21:23:55 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/operations/trace/BuildOperationRecord.java

            map.put("id", id);
    
            if (parentId != null) {
                map.put("parentId", parentId);
            }
    
            map.put("startTime", startTime);
            map.put("endTime", endTime);
            map.put("duration", endTime - startTime);
    
            if (details != null) {
                map.put("details", details);
                map.put("detailsClassName", detailsClassName);
            }
    
            if (result != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 03:56:13 UTC 2022
    - 6K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/results/DefaultTestResult.java

        }
    
        public DefaultTestResult(ResultType resultType, long startTime, long endTime, long testCount, long successfulCount, long failedCount, List<TestFailure> failures) {
            this.resultType = resultType;
            this.startTime = startTime;
            this.endTime = endTime;
            this.testCount = testCount;
            this.successfulCount = successfulCount;
            this.failedCount = failedCount;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. src/etc/header-definition.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <additionalHeaders>
        <javadoc_style>
            <firstLine>/*</firstLine>
            <beforeEachLine> * </beforeEachLine>
            <endLine> */</endLine>
            <!--skipLine></skipLine-->
            <firstLineDetectionPattern>(\s|\t)*/\*.*$</firstLineDetectionPattern>
            <lastLineDetectionPattern>.*\*/(\s|\t)*$</lastLineDetectionPattern>
            <allowBlankLines>false</allowBlankLines>
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Sun Sep 15 12:48:40 UTC 2013
    - 509 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller_debug.go

    		"ExecutingRequests",  // 6
    		"DispatchedRequests", // 7
    		"RejectedRequests",   // 8
    		"TimedoutRequests",   // 9
    		"CancelledRequests",  // 10
    	}
    	tabPrint(tabWriter, rowForHeaders(columnHeaders))
    	endLine(tabWriter)
    	plNames := make([]string, 0, len(cfgCtlr.priorityLevelStates))
    	for plName := range cfgCtlr.priorityLevelStates {
    		plNames = append(plNames, plName)
    	}
    	sort.Strings(plNames)
    	for i := range plNames {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 17:38:43 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestResult.java

        }
    
        public void setStartTime(long startTime) {
            this.startTime = startTime;
        }
    
        public long getEndTime() {
            return endTime;
        }
    
        public void setEndTime(long endTime) {
            this.endTime = endTime;
        }
    
        public String getVersionUnderTest() {
            return versionUnderTest;
        }
    
        public void setVersionUnderTest(String versionUnderTest) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/cover/profile.go

    		j := 1
    		for i := 1; i < len(p.Blocks); i++ {
    			b := p.Blocks[i]
    			last := p.Blocks[j-1]
    			if b.StartLine == last.StartLine &&
    				b.StartCol == last.StartCol &&
    				b.EndLine == last.EndLine &&
    				b.EndCol == last.EndCol {
    				if b.NumStmt != last.NumStmt {
    					return nil, fmt.Errorf("inconsistent NumStmt: changed from %d to %d", last.NumStmt, b.NumStmt)
    				}
    				if mode == "set" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 11 17:02:03 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  10. internal/bucket/bandwidth/monitor_test.go

    	"reflect"
    	"testing"
    	"time"
    )
    
    const (
    	oneMiB uint64 = 1024 * 1024
    )
    
    func TestMonitor_GetReport(t *testing.T) {
    	type fields struct {
    		activeBuckets map[BucketOptions]*bucketMeasurement
    		endTime       time.Time
    		update2       uint64
    		endTime2      time.Time
    	}
    	start := time.Now()
    	m0 := newBucketMeasurement(start)
    	m0.incrementBytes(0)
    	m1MiBPS := newBucketMeasurement(start)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Sep 06 03:21:59 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top