Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 277 for microsoft (0.14 sec)

  1. cmd/kubeadm/app/util/initsystem/initsystem_windows.go

    	return fmt.Sprintf("Set-Service '%s' -StartupType Automatic", service)
    }
    
    // ServiceStart tries to start a specific service
    // Following Windows documentation: https://docs.microsoft.com/en-us/windows/desktop/Services/starting-a-service
    func (sysd WindowsInitSystem) ServiceStart(service string) error {
    	m, err := mgr.Connect()
    	if err != nil {
    		return err
    	}
    	defer m.Disconnect()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 08:56:16 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  2. build/pause/Makefile

    TRIPLE.linux-ppc64le := powerpc64le-linux-gnu
    TRIPLE.linux-s390x := s390x-linux-gnu
    TRIPLE := ${TRIPLE.${OS}-${ARCH}}
    BASE.linux := scratch
    # Source for windows pause image base is located at https://github.com/microsoft/windows-pause-image-base
    BASE.windows := mcr.microsoft.com/oss/kubernetes/windows-pause-image-base:v0.2
    BASE := ${BASE.${OS}}
    
    # If you want to build AND push all containers, see the 'all-push' rule.
    all: all-container-docker
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 19:31:40 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. docs/zh/docs/project-generation.md

    详见资源仓库中的文档。
    
    ## 全栈 FastAPI + MongoDB
    
    ……敬请期待,得看我有没有时间做这个项目。😅 🎉
    
    ## FastAPI + spaCy 机器学习模型
    
    GitHub:<a href="https://github.com/microsoft/cookiecutter-spacy-fastapi" class="external-link" target="_blank">https://github.com/microsoft/cookiecutter-spacy-fastapi</a>
    
    ### FastAPI + spaCy 机器学习模型 - 功能
    
    * 集成 **spaCy** NER 模型
    * 内置 **Azure 认知搜索**请求格式
    * **生产可用**的 Python 网络服务器,使用 Uvicorn 与 Gunicorn
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jan 28 18:03:58 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. pkg/kubelet/util/util_windows.go

    		// the user supplied root directory named like "pod-resources" or so.
    		return "", fmt.Errorf("cannot infer the podresources directory from path %q", path)
    	}
    	// windows pipes are expected to use forward slashes: https://learn.microsoft.com/windows/win32/ipc/pipe-names
    	// so using `url` like we do on unix gives us unclear benefits - see https://github.com/kubernetes/kubernetes/issues/78628
    	// So we just construct the path from scratch.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedTypeReferencesIntegrationTest.groovy

                      os.linux.name = "linux"
                    }
    
                    @Model
                    void windowsPlatform(Platform platform, OperatingSystems os) {
                      platform.displayName = "Microsoft Windows"
    
                      assert platform.operatingSystem == null
    
                      platform.operatingSystem = os.linux
                      assert platform.operatingSystem.is(os.linux)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/dll_windows.go

    }
    
    // loadLibraryEx wraps the Windows LoadLibraryEx function.
    //
    // See https://msdn.microsoft.com/en-us/library/windows/desktop/ms684179(v=vs.85).aspx
    //
    // If name is not an absolute path, LoadLibraryEx searches for the DLL
    // in a variety of automatic locations unless constrained by flags.
    // See: https://msdn.microsoft.com/en-us/library/ff919712%28VS.85%29.aspx
    func loadLibraryEx(name string, system bool) (*DLL, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 05 12:36:42 UTC 2020
    - 12K bytes
    - Viewed (0)
  7. src/os/os_windows_test.go

    // Returns false for prior Windows versions.
    // see https://docs.microsoft.com/en-us/windows/uwp/get-started/enable-your-device-for-development
    func isWindowsDeveloperModeActive() bool {
    	key, err := registry.OpenKey(registry.LOCAL_MACHINE, "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\AppModelUnlock", registry.READ)
    	if err != nil {
    		return false
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  8. pkg/util/filesystem/util_windows_test.go

    limitations under the License.
    */
    
    package filesystem
    
    import (
    	"math/rand"
    	"net"
    	"os"
    	"sync"
    	"testing"
    	"time"
    
    	winio "github.com/Microsoft/go-winio"
    	"github.com/stretchr/testify/assert"
    	"github.com/stretchr/testify/require"
    )
    
    func TestIsUnixDomainSocketPipe(t *testing.T) {
    	generatePipeName := func(suffixLen int) string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:10:26 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. pkg/kubelet/util/util_windows_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package util
    
    import (
    	"context"
    	"net"
    	"reflect"
    	"runtime"
    	"testing"
    
    	"github.com/Microsoft/go-winio"
    	"github.com/stretchr/testify/assert"
    	"github.com/stretchr/testify/require"
    
    	"k8s.io/cri-client/pkg/util"
    )
    
    func TestNormalizePath(t *testing.T) {
    	tests := []struct {
    		originalpath   string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/certificates/v1beta1/types.go

    	//  "client auth",
    	//  "code signing",
    	//  "email protection",
    	//  "s/mime",
    	//  "ipsec end system",
    	//  "ipsec tunnel",
    	//  "ipsec user",
    	//  "timestamping",
    	//  "ocsp signing",
    	//  "microsoft sgc",
    	//  "netscape sgc"
    	// +listType=atomic
    	Usages []KeyUsage `json:"usages,omitempty" protobuf:"bytes,5,opt,name=usages"`
    
    	// Information about the requesting user.
    	// See user.Info interface for details.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 10.4K bytes
    - Viewed (0)
Back to top