Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,997 for START (0.07 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/vendor/github.com/google/pprof/internal/binutils/disasm.go

    		if match := matchSymbol(names, start, symAddr-1, r, address); match != nil {
    			symbols = append(symbols, &plugin.Sym{Name: match, File: file, Start: start, End: symAddr - 1})
    		}
    
    		// And start a new group.
    		names, start = []string{name}, symAddr
    	}
    }
    
    // matchSymbol checks if a symbol is to be selected by checking its
    // name to the regexp and optionally its address. It returns the name(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/init/kubelet.go

    		kubeadm init phase kubelet-start --config config.yaml
    		`)
    )
    
    // NewKubeletStartPhase creates a kubeadm workflow phase that start kubelet on a node.
    func NewKubeletStartPhase() workflow.Phase {
    	return workflow.Phase{
    		Name:    "kubelet-start",
    		Short:   "Write kubelet settings and (re)start the kubelet",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Aug 20 09:18:00 UTC 2023
    - 3.2K 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