Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,475 for tstart (0.07 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonReuseIntegrationTest.groovy

                        // don't care
                    }
                }
            })
            thread.daemon = true
            thread.start()
    
    
            // Try to run another build that should try to reuse the previous daemon, fail and then start another daemon
            when:
            executer.run()
            then:
            daemons.daemons.size() == 2
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/kubelet/kubelet.go

    	}
    
    	// This runs "systemctl daemon-reload && systemctl restart kubelet"
    	if err := initSystem.ServiceRestart(kubeadmconstants.Kubelet); err != nil {
    		klog.Warningf("[kubelet-start] WARNING: unable to start the kubelet service: [%v]\n", err)
    		fmt.Printf("[kubelet-start] Please ensure kubelet is reloaded and running manually.\n")
    	}
    }
    
    // TryStopKubelet attempts to bring down the kubelet service momentarily
    func TryStopKubelet() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 15 16:01:35 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/process/internal/worker/DefaultWorkerProcessSpec.groovy

            workerProcess.startAccepting(acceptor)
    
            op.start {
                op.callbackLater {
                    workerProcess.onConnect(connection)
                }
                workerProcess.start()
            }
    
            then:
            1 * execHandle.addListener(_)
            1 * execHandle.start()
            1 * acceptor.requestStop()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 07 07:21:35 UTC 2021
    - 6.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/netbios/NameServicePacket.java

                            ( resultCode & 0x0F ));
            writeInt2( questionCount, dst, start + QUESTION_OFFSET );
            writeInt2( answerCount, dst, start + ANSWER_OFFSET );
            writeInt2( authorityCount, dst, start + AUTHORITY_OFFSET );
            writeInt2( additionalCount, dst, start + ADDITIONAL_OFFSET );
            return HEADER_LENGTH;
        }
        int readHeaderWireFormat( byte[] src, int srcIndex ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 12.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/netbios/NameServicePacket.java

            writeInt2(this.questionCount, dst, start + QUESTION_OFFSET);
            writeInt2(this.answerCount, dst, start + ANSWER_OFFSET);
            writeInt2(this.authorityCount, dst, start + AUTHORITY_OFFSET);
            writeInt2(this.additionalCount, dst, start + ADDITIONAL_OFFSET);
            return HEADER_LENGTH;
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 12K bytes
    - Viewed (0)
  6. src/go/printer/gobuild.go

    		pos++
    	}
    	return p.output[start:pos]
    }
    
    func (p *printer) commentTextAt(start int) string {
    	if start < len(p.output) && p.output[start] == tabwriter.Escape {
    		start++
    	}
    	pos := start
    	for pos < len(p.output) && p.output[pos] != tabwriter.Escape && !isNL(p.output[pos]) {
    		pos++
    	}
    	return string(p.output[start:pos])
    }
    
    func isNL(b byte) bool {
    	return b == '\n' || b == '\f'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. internal/bucket/bandwidth/monitor_test.go

    	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)
    	m1MiBPS.incrementBytes(oneMiB)
    
    	test1Want := make(map[BucketOptions]Details)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Sep 06 03:21:59 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/WorkInProgressRendererTest.groovy

            when:
            renderer.onOutput(start(1))
            console.flush()
    
            then:
            progressArea.display == []
        }
    
        def "parent progress operation without message is ignored when renderable child completes"() {
            when:
            renderer.onOutput(start(1))
            renderer.onOutput(start(id: 2, parentId: 1, status: ":foo"))
            renderer.onOutput(start(id: 3, parentId: null, status: ":bar"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/ProcessBuilderInstrumentationInDynamicGroovyIntegrationTest.groovy

                [fromStringList(), "new ProcessBuilder(command).start()", "", ""],
                [fromStringArray(), "new ProcessBuilder(command)?.start()", "", ""],
            ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/enclosing.go

    	}
    
    	// Ensure [start,end) is nondecreasing.
    	if start > end {
    		start, end = end, start
    	}
    
    	if start < root.End() && end > root.Pos() {
    		if start == end {
    			end = start + 1 // empty interval => interval of size 1
    		}
    		exact = visit(root)
    
    		// Reverse the path:
    		for i, l := 0, len(path); i < l/2; i++ {
    			path[i], path[l-1-i] = path[l-1-i], path[i]
    		}
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
Back to top