Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Bootstrapping (0.25 sec)

  1. src/flag/flag_test.go

    	f.v = s
    	return nil
    }
    
    func (f *zeroPanicker) String() string {
    	if !f.dontPanic {
    		panic("panic!")
    	}
    	return f.v
    }
    
    const defaultOutput = `  -A	for bootstrapping, allow 'any' type
      -Alongflagname
        	disable bounds checking
      -C	a boolean defaulting to true (default true)
      -D path
        	set relative path for local imports
      -E string
        	issue 23543 (default "0")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 22K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_plugin.go

    		// Get a CSINode from API server to make sure 1) kubelet can reach API server
    		// and 2) it has enough permissions. Kubelet may have restricted permissions
    		// when it's bootstrapping TLS.
    		// https://kubernetes.io/docs/reference/command-line-tools-reference/kubelet-tls-bootstrapping/
    		_, lastErr = client.StorageV1().CSINodes().Get(context.TODO(), string(nodeName), opts)
    		if lastErr == nil || apierrors.IsNotFound(lastErr) {
    			// API server contacted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/config.go

    	// connecting, etc we run it inside a pod. The pod has pretty much all Kubernetes features disabled (DNS and SA token mount)
    	// such that we can adequately simulate a VM and DIY the bootstrapping.
    	DeployAsVM bool
    
    	// If enabled, ISTIO_META_AUTO_REGISTER_GROUP will be set on the VM and the WorkloadEntry will be created automatically.
    	AutoRegisterVM bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    	// BootstrapToken and File are mutually exclusive
    	// +optional
    	File *FileDiscovery `json:"file,omitempty"`
    
    	// TLSBootstrapToken is a token used for TLS bootstrapping.
    	// If .BootstrapToken is set, this field is defaulted to .BootstrapToken.Token, but can be overridden.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. src/runtime/arena.go

    			userArenaHeapBitsSetSliceType(typ, cap, ptr, s)
    		} else {
    			userArenaHeapBitsSetType(typ, ptr, s)
    		}
    		c := getMCache(mp)
    		if c == nil {
    			throw("mallocgc called without a P or outside bootstrapping")
    		}
    		if cap > 0 {
    			c.scanAlloc += size - (typ.Size_ - typ.PtrBytes)
    		} else {
    			c.scanAlloc += typ.PtrBytes
    		}
    	}
    
    	// Ensure that the stores above that initialize x to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  6. src/encoding/gob/type.go

    // Each value we send is preceded by its type definition: an encoded int.
    // However, the very first time we send the value, we first send the pair
    // (-id, wireType).
    // For bootstrapping purposes, we assume that the recipient knows how
    // to decode a wireType; it is exactly the wireType struct here, interpreted
    // using the gob rules for sending a structure, except that we assume the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  7. pkg/kubelet/nodestatus/setters.go

    			// then we return early because provider set addresses should take precedence.
    			// Otherwise, we try to use the node IP defined via flags and let the cloud provider override it later
    			// This should alleviate a lot of the bootstrapping issues with out-of-tree providers
    			if len(node.Status.Addresses) > 0 {
    				return nil
    			}
    			// If nodeIPs are not specified wait for the external cloud-provider to set the node addresses.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/types.go

    	// File is used to specify a file or URL to a kubeconfig file from which to load cluster information
    	// BootstrapToken and File are mutually exclusive
    	File *FileDiscovery
    
    	// TLSBootstrapToken is a token used for TLS bootstrapping.
    	// If .BootstrapToken is set, this field is defaulted to .BootstrapToken.Token, but can be overridden.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// BootstrapToken and File are mutually exclusive
    	// +optional
    	File *FileDiscovery `json:"file,omitempty"`
    
    	// TLSBootstrapToken is a token used for TLS bootstrapping.
    	// If .BootstrapToken is set, this field is defaulted to .BootstrapToken.Token, but can be overridden.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    `--rerun`::
    Causes the task to be rerun even if up-to-date. Similar to `<<#sec:rerun_tasks,--rerun-tasks>>`, but for a specific task.
    
    [[sec:command_line_bootstrapping_projects]]
    == Bootstrapping new projects
    
    === Creating new Gradle builds
    Use the built-in `gradle init` task to create a new Gradle build, with new or existing projects.
    
    ----
    $ gradle init
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top