Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 361 for initiatives (0.18 sec)

  1. pkg/proxy/util/nfacct/handler.go

    // netlinkHandler is an implementation of the handler interface. It maintains a netlink socket
    // for communication with the NFAcct subsystem.
    type netlinkHandler struct {
    	socket *nl.NetlinkSocket
    }
    
    // newNetlinkHandler initializes a netlink socket in the current network namespace and returns
    // an instance of netlinkHandler with the initialized socket.
    func newNetlinkHandler() (handler, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. pkg/volume/flexvolume/probe_test.go

    	// We need to close the file, otherwise we won't be able to remove it.
    	f, _ := fs.Create(filepath.Join(driverPath, driverName))
    	f.Close()
    }
    
    // Initializes mocks, installs a single driver in the mock fs, then initializes prober.
    func initTestEnvironment(t *testing.T) (
    	driverPath string,
    	fs utilfs.Filesystem,
    	watcher *fakeWatcher,
    	prober volume.DynamicPluginProber) {
    	fs = utilfs.NewTempFs()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 28 11:14:00 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. internal/logger/target/kafka/kafka.go

    	}
    
    	sconfig.Net.KeepAlive = 60 * time.Second
    	sconfig.Net.SASL.User = h.kconfig.SASL.User
    	sconfig.Net.SASL.Password = h.kconfig.SASL.Password
    	initScramClient(h.kconfig, sconfig) // initializes configured scram client.
    	sconfig.Net.SASL.Enable = h.kconfig.SASL.Enable
    
    	tlsConfig, err := saramatls.NewConfig(h.kconfig.TLS.ClientTLSCert, h.kconfig.TLS.ClientTLSKey)
    	if err != nil {
    		return err
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jun 02 03:03:39 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types/goversion.go

    		return true
    	}
    	return langWant.major > major || (langWant.major == major && langWant.minor >= minor)
    }
    
    // ParseLangFlag verifies that the -lang flag holds a valid value, and
    // exits if not. It initializes data used by AllowsGoVersion.
    func ParseLangFlag() {
    	if base.Flag.Lang == "" {
    		return
    	}
    
    	var err error
    	langWant, err = parseLang(base.Flag.Lang)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 21:36:02 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/filters/audit_init.go

    package filters
    
    import (
    	"net/http"
    
    	"k8s.io/apimachinery/pkg/types"
    	auditinternal "k8s.io/apiserver/pkg/apis/audit"
    	"k8s.io/apiserver/pkg/audit"
    
    	"github.com/google/uuid"
    )
    
    // WithAuditInit initializes the audit context and attaches the Audit-ID associated with a request.
    //
    // a. If the caller does not specify a value for Audit-ID in the request header, we generate a new audit ID
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 23:04:35 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  6. .github/workflows/codeql-analysis.yml

        # the head of the pull request instead of the merge commit.
        - run: git checkout HEAD^2
          if: ${{ github.event_name == 'pull_request' }}
    
        # Initializes the CodeQL tools for scanning.
        - name: Initialize CodeQL
          uses: github/codeql-action/init@v1
          with:
            languages: ${{ matrix.language }}
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Fri Nov 17 21:22:20 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/upgrade/preflight.go

    func (c CoreDNSCheck) Check() (warnings, errors []error) {
    	if err := c.f(c.client); err != nil {
    		return nil, []error{err}
    	}
    	return nil, nil
    }
    
    // RunCoreDNSMigrationCheck initializes checks related to CoreDNS migration.
    func RunCoreDNSMigrationCheck(client clientset.Interface, ignorePreflightErrors sets.Set[string]) error {
    	migrationChecks := []preflight.Checker{
    		&CoreDNSCheck{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 25 13:53:28 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/nodevolumelimits/non_csi.go

    	KubeMaxPDVols = "KUBE_MAX_PD_VOLS"
    )
    
    // AzureDiskName is the name of the plugin used in the plugin registry and configurations.
    const AzureDiskName = names.AzureDiskLimits
    
    // NewAzureDisk returns function that initializes a new plugin and returns it.
    func NewAzureDisk(ctx context.Context, _ runtime.Object, handle framework.Handle, fts feature.Features) (framework.Plugin, error) {
    	informerFactory := handle.SharedInformerFactory()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 30 23:00:56 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  9. src/internal/coverage/stringtab/stringtab.go

    // counter-data files.
    
    // Writer implements a string table writing utility.
    type Writer struct {
    	stab   map[string]uint32
    	strs   []string
    	tmp    []byte
    	frozen bool
    }
    
    // InitWriter initializes a stringtab.Writer.
    func (stw *Writer) InitWriter() {
    	stw.stab = make(map[string]uint32)
    	stw.tmp = make([]byte, 64)
    }
    
    // Nentries returns the number of strings interned so far.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:40:42 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  10. internal/config/identity/openid/providercfg.go

    		ClientID:           getCfgVal(ClientID),
    		ClientSecret:       getCfgVal(ClientSecret),
    		RolePolicy:         getCfgVal(RolePolicy),
    	}
    }
    
    const (
    	keyCloakVendor = "keycloak"
    )
    
    // initializeProvider initializes if any additional vendor specific information
    // was provided, initialization will return an error initial login fails.
    func (p *providerCfg) initializeProvider(cfgGet func(string) string, transport http.RoundTripper) error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top