Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 57 of 57 for buildA (0.12 sec)

  1. src/go/build/deps_test.go

    package build
    
    import (
    	"bytes"
    	"fmt"
    	"go/token"
    	"internal/dag"
    	"internal/testenv"
    	"io/fs"
    	"os"
    	"path/filepath"
    	"runtime"
    	"slices"
    	"strings"
    	"testing"
    )
    
    // depsRules defines the expected dependencies between packages in
    // the Go source tree. It is a statement of policy.
    //
    // DO NOT CHANGE THIS DATA TO FIX BUILDS.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. manifests/charts/istiod-remote/values.yaml

          #   memory: 128Mi
          # limits:
          #   cpu: 100m
          #   memory: 128Mi
        # Default hub for Istio images.
        # Releases are published to docker hub under 'istio' project.
        # Dev builds from prow are on gcr.io
        hub: gcr.io/istio-testing
        # Default tag for Istio images.
        tag: latest
        # Variant of the image to use.
        # Currently supported are: [debug, distroless]
        variant: ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/preflight/checks_test.go

    				KubernetesVersion: "v1.7.0",
    			},
    			expectWarnings: true,
    		},
    		{
    			check: KubernetesVersionCheck{
    				KubeadmVersion:    "v0.0.0", //"super-custom" builds - Skip this check
    				KubernetesVersion: "v1.7.0",
    			},
    			expectWarnings: false,
    		},
    	}
    
    	for _, rt := range tests {
    		warning, _ := rt.check.Check()
    		if (warning != nil) != rt.expectWarnings {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ImmutableSet.java

        throw new InvalidObjectException("Use SerializedForm");
      }
    
      /**
       * Returns a new builder. The generated builder is equivalent to the builder created by the {@link
       * Builder} constructor.
       */
      public static <E> Builder<E> builder() {
        return new Builder<>();
      }
    
      /**
       * Returns a new builder, expecting the specified number of distinct elements to be added.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/types.go

    	// CIImageRepository is the container registry for core images generated by CI.
    	// Useful for running kubeadm with images from CI builds.
    	// +k8s:conversion-gen=false
    	CIImageRepository string
    
    	// FeatureGates enabled by the user.
    	FeatureGates map[string]bool
    
    	// The cluster name
    	ClusterName string
    
    	// EncryptionAlgorithm holds the type of asymmetric encryption algorithm used for keys and certificates.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  6. pilot/pkg/model/sidecar.go

    	mostSpecificWildcardVsIndex map[host.Name]types.NamespacedName
    }
    
    const defaultSidecar = "default-sidecar"
    
    // DefaultSidecarScopeForGateway builds a SidecarScope contains services and destinationRules for a given gateway/waypoint.
    func DefaultSidecarScopeForGateway(ps *PushContext, configNamespace string) *SidecarScope {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  7. docs/en/docs/deployment/docker.md

    ```Dockerfile
    COPY ./app /code/app
    ```
    
    ### Build the Docker Image
    
    Now that all the files are in place, let's build the container image.
    
    * Go to the project directory (in where your `Dockerfile` is, containing your `app` directory).
    * Build your FastAPI image:
    
    <div class="termy">
    
    ```console
    $ docker build -t myimage .
    
    ---> 100%
    ```
    
    </div>
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
Back to top