Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for customFile (0.35 sec)

  1. cmd/kubeadm/app/constants/constants.go

    	// This file should exist under KubeletRunDirectory
    	KubeletConfigurationFileName = "config.yaml"
    
    	// KubeletEnvFileName is a file "kubeadm init" writes at runtime. Using that interface, kubeadm can customize certain
    	// kubelet flags conditionally based on the environment at runtime. Also, parameters given to the configuration file
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  2. src/go/build/build.go

    	// The build, tool, and release tags specify build constraints
    	// that should be considered satisfied when processing go:build lines.
    	// Clients creating a new context may customize BuildTags, which
    	// defaults to empty, but it is usually an error to customize ToolTags or ReleaseTags.
    	// ToolTags defaults to build tags appropriate to the current Go toolchain configuration.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  3. pkg/istio-agent/agent_test.go

    	ProxyConfig      *meshconfig.ProxyConfig
    	Security         security.Options
    	AgentConfig      AgentOptions
    	XdsAuthenticator *security.FakeAuthenticator
    	CaAuthenticator  *security.FakeAuthenticator
    
    	// customize bootstrap generator
    	bootstrapGenerator model.XdsResourceGenerator
    
    	envoyEnable bool
    
    	agent *Agent
    }
    
    func Setup(t *testing.T, opts ...func(a AgentTest) AgentTest) *AgentTest {
    	d := t.TempDir()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/config.go

    	LegacyAPIGroupPrefixes sets.String
    	// RequestInfoResolver is used to assign attributes (used by admission and authorization) based on a request URL.
    	// Use-cases that are like kubelets may need to customize this.
    	RequestInfoResolver apirequest.RequestInfoResolver
    	// Serializer is required and provides the interface for serializing and converting objects to and from the wire
    	// The default (api.Codecs) usually works fine.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ==== EAR plugin with customized JEE 1.3 descriptor
    
    Gradle 8.4 forbids external XML entities when parsing XML documents.
    If you use the EAR plugin and configure the `application.xml` descriptor via the EAR plugin's DSL and customize the descriptor using `withXml {}` and use `asElement{}` in the customization block, then the build will now fail for security reasons.
    
    =====
    [.multi-language-sample]
    ======
    .build.gradle.kts
    [source,kotlin]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.30.md

       ([#123413](https://github.com/kubernetes/kubernetes/pull/123413), [@seans3](https://github.com/seans3))
    - A new flag called `custom` has been introduced in `kubectl debug`, allowing users to customize pre-defined profiles. ([#120346](https://github.com/kubernetes/kubernetes/pull/120346), [@ardaguclu](https://github.com/ardaguclu))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  7. RELEASE.md

    `.keras` extension. This file format targets the Python runtime only and makes it possible to reload Python objects identical to the saved originals. The format supports non-numerical state such as vocabulary files and lookup tables, and it is easy to customize in the case of custom layers with exotic elements of state (e.g. a FIFOQueue). The format does not rely on bytecode or pickling, and is safe by default. Note that as a result, Python `lambdas` are disallowed at loading time. If you want to use `lambdas`,...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        OptionalAttr<TypeAttr>:$input_to_output_intermediate,
        OptionalAttr<TypeAttr>:$effective_hidden_scale_intermediate
      );
    
      let results = (outs AnyTensor:$output);
    
      // TODO(fengliuai): customize printer and parser to not display
      // empty region.
      let regions = (region AnyRegion:$internal);
    
      let hasOptions = 1;
    
      let hasCanonicalizer = 1;
    
      let hasVerifier = 1;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation_test.go

    	preferDualStack := core.IPFamilyPolicyPreferDualStack
    
    	testCases := []struct {
    		name         string
    		tweakSvc     func(svc *core.Service) // given a basic valid service, each test case can customize it
    		numErrs      int
    		featureGates []featuregate.Feature
    	}{{
    		name: "missing namespace",
    		tweakSvc: func(s *core.Service) {
    			s.Namespace = ""
    		},
    		numErrs: 1,
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  10. docs/en/docs/release-notes.md

        * PR [#278](https://github.com/tiangolo/fastapi/pull/278).
    
    ## 0.26.0
    
    * Separate error handling for validation errors.
        * This will allow developers to customize the exception handlers.
        * Document better how to handle exceptions and use error handlers.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top