Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,372 for startm (0.34 sec)

  1. cmd/kubeadm/app/apis/kubeadm/argument.go

    // of the given argument name and the index where it was found.
    // If the argument does not exist an empty string and -1 are returned.
    // startIdx defines where the iteration starts. If startIdx is a negative
    // value or larger than the size of the argument slice the iteration
    // will start from the last element.
    func GetArgValue(args []Arg, name string, startIdx int) (string, int) {
    	if startIdx < 0 || startIdx > len(args)-1 {
    		startIdx = len(args) - 1
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 10:27:05 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/comparison/DiffUtils.java

                    break;
                }
                // Calculate the start line index of the current block in fullDiff
                start = max(0, next - contextSize);
    
                // Record the start line number in original and revised file of the current block
                startLineOrigin = lineNumOrigin - (next - start - 1);
                startLineRevised = lineNumRevised - (next - start - 1);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/dynamic_serving_content.go

    }
    
    // Run starts the controller and blocks until context is killed.
    func (c *DynamicCertKeyPairContent) Run(ctx context.Context, workers int) {
    	defer utilruntime.HandleCrash()
    	defer c.queue.ShutDown()
    
    	klog.InfoS("Starting controller", "name", c.name)
    	defer klog.InfoS("Shutting down controller", "name", c.name)
    
    	// doesn't matter what workers say, only start one.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/ServeDocs.java

    import org.gradle.work.DisableCachingByDefault;
    
    import javax.inject.Inject;
    import java.util.Arrays;
    
    /**
     * Serves the given directory with a simple HTTP server.
     */
    @DisableCachingByDefault(because = "This task starts a HTTP server and should not be cached.")
    public abstract class ServeDocs extends DefaultTask {
        @InputFiles
        @PathSensitive(PathSensitivity.RELATIVE)
        protected abstract DirectoryProperty getDocsDirectory();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 12:38:47 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. pkg/envoy/agent_test.go

    	ctx, cancel := context.WithCancel(context.Background())
    	start := func(_ <-chan error) error {
    		return nil
    	}
    	cleanup := func() {
    		cancel()
    	}
    	a := NewAgent(TestProxy{run: start, cleanup: cleanup}, 0, 0, "", 0, 0, 0, true)
    	go func() { a.Run(ctx) }()
    	<-ctx.Done()
    }
    
    func TestActiveConnections(t *testing.T) {
    	cases := []struct {
    		name     string
    		stats    string
    		expected int
    	}{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 19 20:22:09 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. src/net/sendfile_unix_alt.go

    	}
    
    	if remain == 0 {
    		fi, err := f.Stat()
    		if err != nil {
    			return 0, err, false
    		}
    
    		remain = fi.Size()
    	}
    
    	// The other quirk with Darwin/FreeBSD/DragonFly/Solaris's sendfile
    	// implementation is that it doesn't use the current position
    	// of the file -- if you pass it offset 0, it starts from
    	// offset 0. There's no way to tell it "start from current
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. src/net/http/pprof/pprof_test.go

    			runtime.Gosched()
    		}
    	}
    }
    
    // mutexHog starts multiple goroutines that runs the given hogger function for the specified duration.
    // The hogger function will be given two mutexes to lock & unlock.
    func mutexHog(duration time.Duration, hogger func(mu1, mu2 *sync.Mutex, start time.Time, dt time.Duration)) {
    	start := time.Now()
    	mu1 := new(sync.Mutex)
    	mu2 := new(sync.Mutex)
    	var wg sync.WaitGroup
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:52:28 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/devicemanager/types.go

    	schedulerframework "k8s.io/kubernetes/pkg/scheduler/framework"
    )
    
    // Manager manages all the Device Plugins running on a node.
    type Manager interface {
    	// Start starts device plugin registration service.
    	Start(activePods ActivePodsFunc, sourcesReady config.SourcesReady, initialContainers containermap.ContainerMap, initialContainerRunningSet sets.Set[string]) error
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. src/cmd/vendor/rsc.io/markdown/list.go

    )
    
    type List struct {
    	Position
    	Bullet rune
    	Start  int
    	Loose  bool
    	Items  []Block // always *Item
    }
    
    type Item struct {
    	Position
    	Blocks []Block
    	width  int
    }
    
    func (b *List) PrintHTML(buf *bytes.Buffer) {
    	if b.Bullet == '.' || b.Bullet == ')' {
    		buf.WriteString("<ol")
    		if b.Start != 1 {
    			fmt.Fprintf(buf, " start=\"%d\"", b.Start)
    		}
    		buf.WriteString(">\n")
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/dynamic_cafile_content.go

    	return c.loadCABundle()
    }
    
    // Run starts the controller and blocks until stopCh is closed.
    func (c *DynamicFileCAContent) Run(ctx context.Context, workers int) {
    	defer utilruntime.HandleCrash()
    	defer c.queue.ShutDown()
    
    	klog.InfoS("Starting controller", "name", c.name)
    	defer klog.InfoS("Shutting down controller", "name", c.name)
    
    	// doesn't matter what workers say, only start one.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top