Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 146 for dofiles (0.25 sec)

  1. samples/bookinfo/platform/kube/bookinfo.yaml

    #   See the License for the specific language governing permissions and
    #   limitations under the License.
    
    ##################################################################################################
    # This file defines the services, service accounts, and deployments for the Bookinfo sample.
    #
    # To apply all 4 Bookinfo services, their corresponding service accounts, and deployments:
    #
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. tests/integration/ambient/cnirepair/main_test.go

    	Captured echo.Instances
    	// Uncaptured echo Service
    	Uncaptured echo.Instances
    	// Sidecar echo services with sidecar
    	Sidecar echo.Instances
    
    	// All echo services
    	All echo.Instances
    }
    
    // TestMain defines the entrypoint for pilot tests using a standard Istio installation.
    // If a test requires a custom install it should go into its own package, otherwise it should go
    // here to reuse a single install across tests.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 09 09:12:45 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/directive/directive.go

    in all Go source files in a package directory, even those excluded by
    //go:build constraints, and all non-Go source files too.
    
    For //go:debug (see https://go.dev/doc/godebug), the analyzer checks
    that the directives are placed only in Go source files, only above the
    package comment, and only in package main or *_test.go files.
    
    Support for other known directives may be added in the future.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/crdclient/client.go

    // Client is a client for Istio CRDs, implementing config store cache
    // This is used for CRUD operators on Istio configuration, as well as handling of events on config changes
    type Client struct {
    	// schemas defines the set of schemas used by this client.
    	// Note: this must be a subset of the schemas defined in the codegen
    	schemas collection.Schemas
    
    	// domainSuffix for the config metadata
    	domainSuffix string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. src/cmd/dist/build.go

    		return !strings.HasPrefix(p, ".") && (!strings.HasPrefix(p, "_") || !strings.HasSuffix(p, ".go"))
    	})
    
    	// Add generated files for this package.
    	for _, gt := range gentab {
    		if gt.pkg == pkg {
    			files = append(files, gt.file)
    		}
    	}
    	files = uniq(files)
    
    	// Convert to absolute paths.
    	for i, p := range files {
    		if !filepath.IsAbs(p) {
    			files[i] = pathf("%s/%s", dir, p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/storage/v1/types.go

    	// allowedTopologies restrict the node topologies where volumes can be dynamically provisioned.
    	// Each volume plugin defines its own supported topology specifications.
    	// An empty TopologySelectorTerm list means there is no topology restriction.
    	// This field is only honored by servers that enable the VolumeScheduling feature.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  7. src/go/internal/gcimporter/gcimporter_test.go

    		t.Skipf("gc-built packages not available (compiler = %s)", runtime.Compiler)
    	}
    
    	// Get list of packages in stdlib. Filter out test-only packages with {{if .GoFiles}} check.
    	var stderr bytes.Buffer
    	cmd := exec.Command("go", "list", "-f", "{{if .GoFiles}}{{.ImportPath}}{{end}}", "std")
    	cmd.Stderr = &stderr
    	out, err := cmd.Output()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  8. api/openapi-spec/swagger.json

            "clientConfig": {
              "$ref": "#/definitions/io.k8s.api.admissionregistration.v1.WebhookClientConfig",
              "description": "ClientConfig defines how to communicate with the hook. Required"
            },
            "failurePolicy": {
              "description": "FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Fail.",
              "type": "string"
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  9. pilot/pkg/xds/xdsgen.go

    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pkg/env"
    	"istio.io/istio/pkg/lazy"
    	istioversion "istio.io/istio/pkg/version"
    	"istio.io/istio/pkg/xds"
    )
    
    // IstioControlPlaneInstance defines the format Istio uses for when creating Envoy config.core.v3.ControlPlane.identifier
    type IstioControlPlaneInstance struct {
    	// The Istio component type (e.g. "istiod")
    	Component string
    	// The ID of the component instance
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. pilot/pkg/model/envoyfilter.go

    	// If this is set, ProxyVersionRegex is ignored.
    	ProxyPrefixMatch string
    	Name             string
    	Namespace        string
    	FullName         string
    }
    
    // wellKnownVersions defines a mapping of well known regex matches to prefix matches
    // This is done only as an optimization; behavior should remain the same
    // All versions specified by the default installation (Telemetry V2) should be added here.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 13:57:28 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top