Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for Bootstrapping (0.17 sec)

  1. platforms/jvm/testing-jvm-infrastructure/build.gradle.kts

     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    gradlebuildJava.usedInWorkers()
    
    description = """JVM-specific test infrastructure, including support for bootstrapping and configuring test workers
    and executing tests.
    Few projects should need to depend on this module directly. Most external interactions with this module are through the
    various implementations of WorkerTestClassProcessorFactory.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. hack/make-rules/test-cmd.sh

      DISABLE_ADMISSION_PLUGINS="ServiceAccount,DefaultStorageClass,DefaultTolerationSeconds,MutatingAdmissionWebhook,ValidatingAdmissionWebhook,StorageObjectInUseProtection"
    
      # Include RBAC (to exercise bootstrapping), and AlwaysAllow to allow all actions
      AUTHORIZATION_MODE="RBAC,AlwaysAllow"
    
      # Enable features
      ENABLE_FEATURE_GATES=""
    
      "${THIS_PLATFORM_BIN}/kube-apiserver" \
        --bind-address="127.0.0.1" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 09:10:14 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. cmd/kubelet/app/server.go

    	select {
    	case <-done:
    		break
    	case <-ctx.Done():
    		break
    	}
    
    	return nil
    }
    
    // buildKubeletClientConfig constructs the appropriate client config for the kubelet depending on whether
    // bootstrapping is enabled or client certificate rotation is enabled.
    func buildKubeletClientConfig(ctx context.Context, s *options.KubeletServer, tp oteltrace.TracerProvider, nodeName types.NodeName) (*restclient.Config, func(), error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top