Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,737 for bstart (0.09 sec)

  1. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/async/ServiceLifecycleTest.groovy

            }
            def action2 = {
                thread.blockUntil.action1Started
                instant.action2Done
            }
    
            when:
            async {
                start {
                    lifecycle.use(action1)
                }
                start {
                    lifecycle.use(action2)
                }
            }
    
            then:
            instant.action1Done > instant.action2Done
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:55 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    			// alignment should be different from that of stextOffset.
    			return start - *stextOffset, true
    		}
    
    		return start - loadSegment.Vaddr, true
    	}
    	if start%pageSize != 0 && stextOffset != nil && *stextOffset%pageSize == start%pageSize {
    		// ChromeOS remaps its kernel to 0 + start%pageSize. Nothing
    		// else should come down this path. Empirical values:
    		//       start=0x198 limit=0x2f9fffff offset=0
    		//       VADDR=0xffffffff81000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/break.go

    	start := i
    	for start > 0 && (s[start-1] == ' ' || s[start-1] == '\t') {
    		start--
    	}
    	end := i + 1
    	for end < len(s) && (s[end] == ' ' || s[end] == '\t') {
    		end++
    	}
    	// TODO: Do tabs count? That would be a mess.
    	if i >= 2 && s[i-1] == ' ' && s[i-2] == ' ' {
    		return &HardBreak{}, start, end, true
    	}
    	return &SoftBreak{}, start, end, true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestOutputStore.java

            void add(long key, Index index) {
                if (stdOut.start < 0) {
                    stdOut.start = index.stdOut.start;
                }
                if (stdErr.start < 0) {
                    stdErr.start = index.stdErr.start;
                }
                if (index.stdOut.stop > stdOut.stop) {
                    stdOut.stop = index.stdOut.stop;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginUnixShellsIntegrationTest.groovy

        def "can execute generated Unix start script in Bash"() {
            given:
            succeeds('installDist')
    
            when:
            runViaUnixStartScript("bash")
    
            then:
            outputContains('Hello World!')
        }
    
        @Requires([UnitTestPreconditions.UnixDerivative, PluginTestPreconditions.DashAvailable])
        def "can execute generated Unix start script in Dash"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectStateRegistryTest.groovy

                        assert state1.hasMutableState()
                        assert state2.hasMutableState()
                    }
                }
                start(action)
                start(action)
                start(action)
                start(action)
                start(action)
            }
    
            then:
            noExceptionThrown()
        }
    
        def "thread can be granted uncontrolled access to a single project"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  7. src/runtime/trace/trace_test.go

    	if IsEnabled() {
    		t.Skip("skipping because -test.trace is set")
    	}
    	Stop()
    	buf := new(bytes.Buffer)
    	if err := Start(buf); err != nil {
    		t.Fatalf("failed to start tracing: %v", err)
    	}
    	if err := Start(buf); err == nil {
    		t.Fatalf("succeed to start tracing second time")
    	}
    	Stop()
    	Stop()
    }
    
    func saveTrace(t *testing.T, buf *bytes.Buffer, name string) {
    	if !*saveTraces {
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 16:44:47 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/redirector/DefaultStandardOutputRedirectorTest.groovy

            redirector.redirectStandardOutputTo(stdOutListener)
            redirector.start()
            System.out.print('this is stdout')
            System.out.flush()
    
            then:
            1 * stdOutListener.onOutput('this is stdout')
        }
    
        def canRedirectMultipleTimes() {
            when:
            redirector.redirectStandardErrorTo(stdErrListener)
            redirector.start()
            redirector.stop()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/primitives/Bytes.java

        final byte[] array;
        final int start;
        final int end;
    
        ByteArrayAsList(byte[] array) {
          this(array, 0, array.length);
        }
    
        ByteArrayAsList(byte[] array, int start, int end) {
          this.array = array;
          this.start = start;
          this.end = end;
        }
    
        @Override
        public int size() {
          return end - start;
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    		return nil, fmt.Errorf("could not identify base for %s: no __TEXT segment", name)
    	}
    	if textSegment.Addr > start {
    		return nil, fmt.Errorf("could not identify base for %s: __TEXT segment address (0x%x) > mapping start address (0x%x)",
    			name, textSegment.Addr, start)
    	}
    
    	base := start - textSegment.Addr
    
    	if b.fast || (!b.addr2lineFound && !b.llvmSymbolizerFound) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top