Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 3,379 for startm (0.11 sec)

  1. 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)
  2. pkg/kubelet/cm/container_manager_windows.go

    			cm.capacity[rName] = rCap
    		}
    	}
    
    	ctx := context.Background()
    	containerMap, containerRunningSet := buildContainerMapAndRunningSetFromRuntime(ctx, runtimeService)
    
    	// Starts device manager.
    	if err := cm.deviceManager.Start(devicemanager.ActivePodsFunc(activePods), sourcesReady, containerMap, containerRunningSet); err != nil {
    		return err
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 11:25:36 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. 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)
  4. pilot/test/xds/fake.go

    			t.Fatal(err)
    		}
    	}()
    	t.Cleanup(func() {
    		grpcServer.Stop()
    		_ = listener.Close()
    	})
    	// Start the discovery server
    	s.Start(stop)
    	cg.ServiceEntryRegistry.XdsUpdater = s
    	// Now that handlers are added, get everything started
    	cg.Run()
    	kubelib.WaitForCacheSync("fake", stop,
    		cg.Registry.HasSynced,
    		cg.Store().HasSynced)
    	cg.ServiceEntryRegistry.ResyncEDS()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/application_plugin.adoc

    [[sec:customizing_start_script_generation]]
    === Customizing start script generation
    
    The application plugin can generate Unix (suitable for Linux, macOS etc.) and Windows start scripts out of the box.
    The start scripts launch a JVM with the specified settings defined as part of the original build and runtime environment (e.g. `JAVA_OPTS` env var).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  6. src/encoding/xml/marshal.go

    		if xmlname.name != "" {
    			start.Name.Space, start.Name.Local = xmlname.xmlns, xmlname.name
    		} else {
    			fv := xmlname.value(val, dontInitNilPointers)
    			if v, ok := fv.Interface().(Name); ok && v.Local != "" {
    				start.Name = v
    			}
    		}
    	}
    	if start.Name.Local == "" && finfo != nil {
    		start.Name.Space, start.Name.Local = finfo.xmlns, finfo.name
    	}
    	if start.Name.Local == "" {
    		name := typ.Name()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt

       * Starts the server and binds to the given socket address.
       *
       * @param inetSocketAddress the socket address to bind the server on
       */
      @Synchronized
      @Throws(IOException::class)
      private fun start(inetSocketAddress: InetSocketAddress) {
        check(!shutdown) { "shutdown() already called" }
        if (started) return
        started = true
    
        this._inetSocketAddress = inetSocketAddress
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 31 17:16:15 UTC 2024
    - 37.4K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/memorymanager/memory_manager.go

    	stateImpl, err := state.NewCheckpointState(m.stateFileDirectory, memoryManagerStateFileName, m.policy.Name())
    	if err != nil {
    		klog.ErrorS(err, "Could not initialize checkpoint manager, please drain node and remove policy state file")
    		return err
    	}
    	m.state = stateImpl
    
    	err = m.policy.Start(m.state)
    	if err != nil {
    		klog.ErrorS(err, "Policy start error")
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 00:50:45 UTC 2023
    - 17.1K bytes
    - Viewed (0)
Back to top