Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,268 for guarantee (0.13 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModificationTopics.kt

     * modules. For example, a change in the environment such as removing an SDK might affect all modules, so a global event is more
     * appropriate.
     *
     * #### Timing Guarantees
     *
     * All modification events are guaranteed to be published in the write action in which the modification happens. Beyond that, the exact
     * timing is not strictly defined for most modification events.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/ModelContainer.java

         * However, it is currently easy for state to leak from one project to another so this is not a strong guarantee.
         *
         * <p>It is usually a better option to use {@link #newCalculatedValue(Object)} instead of this method.</p>
         */
        <S> S fromMutableState(Function<? super T, ? extends S> factory);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. pkg/apis/autoscaling/v2beta2/defaults.go

    		obj.Spec.Behavior.ScaleDown = GenerateHPAScaleDownRules(obj.Spec.Behavior.ScaleDown)
    	}
    }
    
    // GenerateHPAScaleUpRules returns a fully-initialized HPAScalingRules value
    // We guarantee that no pointer in the structure will have the 'nil' value
    func GenerateHPAScaleUpRules(scalingRules *autoscalingv2beta2.HPAScalingRules) *autoscalingv2beta2.HPAScalingRules {
    	defaultScalingRules := defaultHPAScaleUpRules.DeepCopy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 15 06:03:59 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/README.md

    
    ## Compatibility
    
    There are *NO compatibility guarantees* for this repository. It is in direct support of Kubernetes, so branches
    will track Kubernetes and be compatible with that repo. As we more cleanly separate the layers, we will review the
    compatibility guarantee.
    
    
    ## Where does it come from?
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 03 01:38:34 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  5. src/crypto/rand/rand_wasip1.go

    	// https://github.com/WebAssembly/WASI/blob/23a52736049f4327dd335434851d5dc40ab7cad1/legacy/preview1/docs.md#-random_getbuf-pointeru8-buf_len-size---result-errno.
    	// The definition does not explicitly guarantee that the entire buffer will
    	// be filled, but this appears to be the case in all runtimes tested.
    	err := syscall.RandomGet(b)
    	if err != nil {
    		return 0, err
    	}
    	return len(b), nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:54:07 UTC 2023
    - 787 bytes
    - Viewed (0)
  6. pkg/apis/autoscaling/v2/defaults.go

    		obj.Spec.Behavior.ScaleDown = GenerateHPAScaleDownRules(obj.Spec.Behavior.ScaleDown)
    	}
    }
    
    // GenerateHPAScaleUpRules returns a fully-initialized HPAScalingRules value
    // We guarantee that no pointer in the structure will have the 'nil' value
    func GenerateHPAScaleUpRules(scalingRules *autoscalingv2.HPAScalingRules) *autoscalingv2.HPAScalingRules {
    	defaultScalingRules := defaultHPAScaleUpRules.DeepCopy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 15 06:03:59 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  7. src/os/executable.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package os
    
    // Executable returns the path name for the executable that started
    // the current process. There is no guarantee that the path is still
    // pointing to the correct executable. If a symlink was used to start
    // the process, depending on the operating system, the result might
    // be the symlink or the path it pointed to. If a stable result is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 776 bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/README.md

    
    ## Compatibility
    
    There are *NO compatibility guarantees* for this repository.  It is in direct support of Kubernetes, so branches
    will track Kubernetes and be compatible with that repo.  As we more cleanly separate the layers, we will review the
    compatibility guarantee.
    
    
    ## Where does it come from?
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 03 01:38:34 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/README.md

    
    ## Compatibility
    
    There are *NO compatibility guarantees* for this repository, yet.  It is in direct support of Kubernetes, so branches
    will track Kubernetes and be compatible with that repo.  As we more cleanly separate the layers, we will review the
    compatibility guarantee. We have a goal to make this easier to use in the future.
    
    
    ## Where does it come from?
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 03 01:38:34 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/DoubleInetAddressDns.kt

     */
    package okhttp3.internal
    
    import java.net.InetAddress
    import okhttp3.Dns
    
    /**
     * A network that always resolves two IP addresses per host. Use this when testing route selection
     * fallbacks to guarantee that a fallback address is available.
     */
    class DoubleInetAddressDns : Dns {
      override fun lookup(hostname: String): List<InetAddress> {
        val addresses = Dns.SYSTEM.lookup(hostname)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 23 10:26:25 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top