Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 4,186 for START (0.07 sec)

  1. 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)
  2. test/interface/pointer.go

    type Inst interface {
    	Next() *Inst
    }
    
    type Regexp struct {
    	code  []Inst
    	start Inst
    }
    
    type Start struct {
    	foo *Inst
    }
    
    func (start *Start) Next() *Inst { return nil }
    
    func AddInst(Inst) *Inst {
    	print("ok in addinst\n")
    	return nil
    }
    
    func main() {
    	print("call addinst\n")
    	var _ Inst = AddInst(new(Start)) // ERROR "pointer to interface|incompatible type"
    	print("return from  addinst\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 28 14:28:33 UTC 2023
    - 758 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. src/go/doc/comment/testdata/doclink4.txt

    -- input --
    [io] at start of comment.
    [io] at start of line.
    At end of line: [io]
    At end of comment: [io]
    -- markdown --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:42 UTC 2022
    - 235 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. 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)
  10. 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)
Back to top