Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,173 for consistency (0.22 sec)

  1. pkg/kubelet/checkpointmanager/README.md

    checkpointing in Kubelet. If still checkpointing is required, then this folder
    provides the common APIs and the framework for implementing checkpointing.
    Using same APIs across all the submodules will help maintaining consistency at
    Kubelet level.
    
    Below is the history of checkpointing support in Kubelet.
    
    | Package | First checkpointing support merged on | PR link |
    | ------- | --------------------------------------| ------- |
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 16 05:30:20 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/IdeaWorkspace.java

        public void mergeXmlWorkspace(Workspace xmlWorkspace) {
            iws.getBeforeMerged().execute(xmlWorkspace);
    
            //we don't merge anything in the iws, yet.
            //I kept the logic for the sake of consistency
            // and compatibility with pre M4 ways of configuring IDEA information.
    
            iws.getWhenMerged().execute(xmlWorkspace);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/README.md

    These can be set with `--set profile=<profile>`.
    For example, the `demo` profile offers a preset configuration to try out Istio in a test environment, with additional features enabled and lowered resource requirements.
    
    For consistency, the same profiles are used across each chart, even if they do not impact a given chart.
    
    Explicitly set values have highest priority, then profile settings, then chart defaults.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/id/ConfigurationCacheableIdFactory.java

         * When re-creating an object due to loading from the configuration cache,
         * {@link #idRecreated()} must be called before the object is re-created to make sure the consistency of the ids.
         *
         * @throws IllegalStateException if an id has already been loaded.
         */
        public long createId() {
            long newId = sequence.updateAndGet(it -> it == USED_ASSIGNED_ID_MARKER ? it : it + 1);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. src/runtime/sys_openbsd.go

    func pthread_create(attr *pthreadattr, start uintptr, arg unsafe.Pointer) int32 {
    	ret := libcCall(unsafe.Pointer(abi.FuncPCABI0(pthread_create_trampoline)), unsafe.Pointer(&attr))
    	KeepAlive(attr)
    	KeepAlive(arg) // Just for consistency. Arg of course needs to be kept alive for the start function.
    	return ret
    }
    func pthread_create_trampoline()
    
    // Tell the linker that the libc_* functions are to be found
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 30 03:11:18 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  6. pkg/test/framework/features/README.md

    ## Adding New Feature Constants
    
    For consistency, features must be registered in [features.yaml](features.yaml), or your test will fail.  Each entry in this file will be equivalent to a dot delimited feature label.  For instance:
    
    ```yaml
        usability:
          observability:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_vendor_auto.txt

    stdout '^'$WORK'[/\\]auto[/\\]replacement-version$'
    
    # A 'go 1.14' directive in the main module's go.mod file should enable
    # -mod=vendor by default, along with stronger checks for consistency
    # between the go.mod file and vendor/modules.txt.
    # A 'go 1.13' vendor/modules.txt file is not usually sufficient
    # to pass those checks.
    go mod edit -go=1.14
    
    ! go list -f {{.Dir}} -tags tools all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. src/go/doc/testdata/examples/issue43658.go

    )
    
    func ExampleProfile_simple() {
    	// Profile calls Modularize which implements the Louvain modularization algorithm.
    	// Since this is a randomized algorithm we use a defined random source to ensure
    	// consistency between test runs. In practice, results will not differ greatly
    	// between runs with different PRNG seeds.
    	src := rand.NewSource(1)
    
    	// Create dumbell graph:
    	//
    	//  0       4
    	//  |\     /|
    	//  | 2 - 3 |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 23:13:45 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  9. tools/istio-clean-iptables/pkg/cmd/root.go

    		&cfg.ProxyGID)
    
    	flag.BindEnv(fs, constants.RedirectDNS, "", "Enable capture of dns traffic by istio-agent.", &cfg.RedirectDNS)
    	// Allow binding to a different var, for consistency with other components
    	flag.AdditionalEnv(fs, constants.RedirectDNS, "ISTIO_META_DNS_CAPTURE")
    
    	flag.BindEnv(fs, constants.CaptureAllDNS, "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/storage/resource_encoding_config.go

    	// StorageEncoding returns the serialization format for the resource.
    	// TODO this should actually return a GroupVersionKind since you can logically have multiple "matching" Kinds
    	// For now, it returns just the GroupVersion for consistency with old behavior
    	StorageEncodingFor(schema.GroupResource) (schema.GroupVersion, error)
    
    	// InMemoryEncodingFor returns the groupVersion for the in memory representation the storage should convert to.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 11 23:09:16 UTC 2019
    - 3.2K bytes
    - Viewed (0)
Back to top