Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for getStart (0.13 sec)

  1. pilot/test/xdstest/test.go

    			matches = matches || EvaluateListenerFilterPredicates(r, port)
    		}
    		return matches
    	case *listener.ListenerFilterChainMatchPredicate_DestinationPortRange:
    		return int32(port) >= r.DestinationPortRange.GetStart() && int32(port) < r.DestinationPortRange.GetEnd()
    	default:
    		panic("unsupported predicate")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 29 21:47:46 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/QueryResponseList.java

        public Object[] toArray() {
            return parent.toArray();
        }
    
        @Override
        public <T> T[] toArray(final T[] a) {
            return parent.toArray(a);
        }
    
        public int getStart() {
            return start;
        }
    
        public int getOffset() {
            return offset;
        }
    
        public int getPageSize() {
            return pageSize;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-profile/src/test/groovy/org/gradle/profile/BuildProfileTest.groovy

            given:
            def a = profile.getDependencySetProfile("a").setStart(100).setFinish(200)
            def b = profile.getDependencySetProfile("b").setStart(200).setFinish(400)
            def c = profile.getDependencySetProfile("c").setStart(400).setFinish(600)
            def d = profile.getDependencySetProfile("d").setStart(600).setFinish(601)
    
            expect:
            profile.dependencySets.operations == [b, c, a, d]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 13:15:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-profile/src/test/groovy/org/gradle/profile/ProjectProfileTest.groovy

            def a = profile.getTaskProfile("foo:a").completed(Stub(TaskState)).setStart(100).setFinish(300)
            def b = profile.getTaskProfile("foo:b").completed(Stub(TaskState)).setStart(300).setFinish(300)
            def c = profile.getTaskProfile("foo:c").completed(Stub(TaskState)).setStart(300).setFinish(300)
            def d = profile.getTaskProfile("foo:d").completed(Stub(TaskState)).setStart(301).setFinish(302)
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 12:58:53 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/ProfileEventAdapter.java

        // ProjectEvaluationListener
        @Override
        public void beforeEvaluate(Project project) {
            long now = clock.getCurrentTime();
            buildProfile.getProjectProfile(project.getPath()).getConfigurationOperation().setStart(now);
        }
    
        @Override
        public void afterEvaluate(Project project, ProjectState state) {
            long now = clock.getCurrentTime();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-profile/src/test/groovy/org/gradle/profile/ProfileReportRendererTest.groovy

            model.getProjectProfile("a").getTaskProfile("a:foo").completed(Stub(TaskState)).setStart(time(12, 25, 0)).setFinish(time(12, 26, 30))
            model.getProjectProfile("a").getTaskProfile("a:bar").completed(Stub(TaskState)).setStart(time(12, 26, 30)).setFinish(time(12, 27, 0))
    
            model.getProjectProfile("b").configurationOperation.start = time(12, 20, 10)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 13:41:06 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. pkg/kubelet/pluginmanager/pluginwatcher/plugin_watcher_others_test.go

    import (
    	"os"
    	"testing"
    
    	"github.com/fsnotify/fsnotify"
    	"github.com/stretchr/testify/assert"
    )
    
    func TestGetStat(t *testing.T) {
    	event := fsnotify.Event{Name: "name", Op: fsnotify.Create}
    	fi, err := getStat(event)
    	fiExpected, errExpected := os.Stat(event.Name)
    
    	assert.Equal(t, fi, fiExpected)
    	assert.Equal(t, err, errExpected)
    }
    
    func TestGetSocketPath(t *testing.T) {
    	socketPath := "/tmp/foo/lish.sock"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 01 00:26:37 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/FragmentedOperation.java

        public String getDescription() {
            return description;
        }
    
        public ContinuousOperation start(long start) {
            ContinuousOperation child = new ContinuousOperation("<child>");
            child.setStart(start);
            children.add(child);
            return child;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/ContinuousOperation.java

            this.description = description;
        }
    
        @Override
        public String toString() {
            return description;
        }
    
        public ContinuousOperation setStart(long start) {
            this.start = start;
            return this;
        }
    
        public ContinuousOperation setFinish(long finish) {
            this.finish = finish;
            return this;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 12:58:53 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. pkg/kubelet/pluginmanager/pluginwatcher/plugin_watcher_others.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package pluginwatcher
    
    import (
    	"os"
    
    	"github.com/fsnotify/fsnotify"
    )
    
    func getStat(event fsnotify.Event) (os.FileInfo, error) {
    	return os.Stat(event.Name)
    }
    
    func getSocketPath(socketPath string) string {
    	return socketPath
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 01 00:26:37 UTC 2023
    - 842 bytes
    - Viewed (0)
Back to top