Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 105 for Azure (0.03 sec)

  1. pkg/bootstrap/platform/azure.go

    }
    
    // IsAzure returns whether or not the platform for bootstrapping is Azure
    // Checks the system vendor file (similar to https://github.com/banzaicloud/satellite/blob/master/providers/azure.go)
    func IsAzure() bool {
    	sysVendor, err := os.ReadFile(SysVendorPath)
    	if err != nil {
    		log.Debugf("Error reading sys_vendor in Azure platform detection: %v", err)
    	}
    	return strings.Contains(string(sysVendor), MicrosoftIdentifier)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. cmd/warm-backend-azure.go

    package cmd
    
    import (
    	"context"
    	"encoding/base64"
    	"errors"
    	"fmt"
    	"io"
    	"net/http"
    	"net/url"
    	"strings"
    	"time"
    
    	"github.com/Azure/azure-storage-blob-go/azblob"
    	"github.com/Azure/go-autorest/autorest/adal"
    	"github.com/Azure/go-autorest/autorest/azure"
    	"github.com/minio/madmin-go/v3"
    )
    
    type warmBackendAzure struct {
    	serviceURL   azblob.ServiceURL
    	Bucket       string
    	Prefix       string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 05 16:44:08 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. go.mod

    	filippo.io/edwards25519 v1.1.0 // indirect
    	github.com/Azure/azure-pipeline-go v0.2.3 // indirect
    	github.com/Azure/go-autorest v14.2.0+incompatible // indirect
    	github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect
    	github.com/Azure/go-autorest/logger v0.2.1 // indirect
    	github.com/Azure/go-autorest/tracing v0.6.0 // indirect
    	github.com/Azure/go-ntlmssp v0.0.0-20221128193559-754e69321358 // indirect
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. pkg/bootstrap/platform/discovery.go

    	wg.Add(numPlatforms) // check GCP, AWS, and Azure
    
    	go func() {
    		if IsGCP() {
    			log.Info("platform detected is GCP")
    			plat <- NewGCP()
    		}
    		wg.Done()
    	}()
    
    	go func() {
    		if IsAWS(ipv6) {
    			log.Info("platform detected is AWS")
    			plat <- NewAWS(ipv6)
    		}
    		wg.Done()
    	}()
    
    	go func() {
    		if IsAzure() {
    			log.Info("platform detected is Azure")
    			plat <- NewAzure()
    		}
    		wg.Done()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/JavaSystemPropertiesHttpTimeoutSettings.java

        public static final int DEFAULT_SOCKET_TIMEOUT = 30000;
        /**
         * The default time in milliseconds for an idle connection to remain open.
         * <a href="https://azure.microsoft.com/en-us/blog/new-configurable-idle-timeout-for-azure-load-balancer/">Microsoft Azure closes idle connections after 4 min</a>,
         * so we set our default to be below that.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. LICENSES/vendor/github.com/Azure/go-ansiterm/LICENSE

    = vendor/github.com/Azure/go-ansiterm licensed under: =
    
    The MIT License (MIT)
    
    Copyright (c) 2015 Microsoft Corporation
    
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 08 04:49:00 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  7. releasenotes/notes/azureTags.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: security
    issue:
    - 31176
    releaseNotes:
    - |
      **Fixed** issue with metadata handling for Azure platform. Support added for
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 22 14:18:21 UTC 2023
    - 225 bytes
    - Viewed (0)
  8. .github/workflows/helm-lint.yml

    permissions:
      contents: read
    
    jobs:
      release:
        runs-on: ubuntu-latest
        steps:
          - name: Checkout
            uses: actions/checkout@v4
    
          - name: Install Helm
            uses: azure/setup-helm@v4
    
          - name: Run helm lint
            run: |
              cd helm/minio
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jun 09 09:13:09 UTC 2024
    - 551 bytes
    - Viewed (0)
  9. cluster/addons/storage-class/azure/default.yaml

    apiVersion: storage.k8s.io/v1
    kind: StorageClass
    metadata:
      name: standard
      annotations:
        storageclass.kubernetes.io/is-default-class: "true"
      labels:
        addonmanager.kubernetes.io/mode: EnsureExists
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 24 04:11:47 UTC 2019
    - 245 bytes
    - Viewed (0)
  10. pkg/volume/util/attach_limit.go

    	// DefaultMaxEBSNitroVolumeLimit is default EBS volume limit on m5 and c5 instances
    	DefaultMaxEBSNitroVolumeLimit = 25
    	// AzureVolumeLimitKey stores resource name that will store volume limits for Azure
    	AzureVolumeLimitKey = "attachable-volumes-azure-disk"
    	// GCEVolumeLimitKey stores resource name that will store volume limits for GCE node
    	GCEVolumeLimitKey = "attachable-volumes-gce-pd"
    
    	// CinderVolumeLimitKey contains Volume limit key for Cinder
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 17:25:30 UTC 2022
    - 2.7K bytes
    - Viewed (0)
Back to top