Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 241 for workaround (0.26 sec)

  1. manifests/charts/base/templates/zzz_profile.yaml

    1. The builtin values.yaml defaults
    2. The profile the user selects
    3. Users input (-f or --set)
    
    Unfortunately, Helm provides us (1) and (3) together (as .Values), making it hard to insert (2).
    
    However, we can workaround this by placing all of (1) under a specific key (.Values.defaults).
    We can then merge the profile onto the defaults, then the user settings onto that.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. manifests/charts/default/templates/zzz_profile.yaml

    1. The builtin values.yaml defaults
    2. The profile the user selects
    3. Users input (-f or --set)
    
    Unfortunately, Helm provides us (1) and (3) together (as .Values), making it hard to insert (2).
    
    However, we can workaround this by placing all of (1) under a specific key (.Values.defaults).
    We can then merge the profile onto the defaults, then the user settings onto that.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. manifests/charts/gateway/templates/zzz_profile.yaml

    1. The builtin values.yaml defaults
    2. The profile the user selects
    3. Users input (-f or --set)
    
    Unfortunately, Helm provides us (1) and (3) together (as .Values), making it hard to insert (2).
    
    However, we can workaround this by placing all of (1) under a specific key (.Values.defaults).
    We can then merge the profile onto the defaults, then the user settings onto that.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. manifests/charts/istio-operator/templates/zzz_profile.yaml

    1. The builtin values.yaml defaults
    2. The profile the user selects
    3. Users input (-f or --set)
    
    Unfortunately, Helm provides us (1) and (3) together (as .Values), making it hard to insert (2).
    
    However, we can workaround this by placing all of (1) under a specific key (.Values.defaults).
    We can then merge the profile onto the defaults, then the user settings onto that.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/permissions/KaAnalysisPermissionRegistry.kt

             */
            public fun getInstance(): KaAnalysisPermissionRegistry = permissionRegistry
        }
    }
    
    /**
     * This implementation is a workaround for KT-68386, as we currently cannot register it as an application service in Standalone mode.
     */
    @OptIn(KaAnalysisApiInternals::class)
    private class KaAnalysisPermissionRegistryImpl : KaAnalysisPermissionRegistry {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tpu-annotate-dynamic-shape-inputs.mlir

      // TODO(b/292540052): Below tf.addV2 instruction is replaced with just
      // returning arg0 due to the workaround mentioned in the above bug. Revert
      // this after the bug is fixed.
        // %0 = "tf.AddV2"(%arg0, %arg1) : (tensor<2048xi32>, tensor<2048xi32>) -> tensor<2048xi32>
        return %arg0 : tensor<2048xi32>
       }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/FixSpockJUnitRulesOrderExtension.groovy

    import org.spockframework.runtime.extension.IGlobalExtension
    import org.spockframework.runtime.model.FeatureInfo
    import org.spockframework.runtime.model.FieldInfo
    import org.spockframework.runtime.model.SpecInfo
    
    /**
     * Workaround for https://github.com/spockframework/spock/issues/1050
     *
     * TODO Remove once Spock is upgraded to a fixed version
     */
    class FixSpockJUnitRulesOrderExtension implements IGlobalExtension {
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/processing/SupportedOptionsCollectingProcessor.java

    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.HashSet;
    import java.util.List;
    import java.util.Set;
    
    /**
     * Collects all registered processors' supported options.
     *
     * <p>This is a workaround for https://bugs.openjdk.java.net/browse/JDK-8162455, which
     * will be triggered a lot more during incremental compilations, and can fail builds
     * when combined with {@code -Werror}.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. pkg/kube/krt/recomputetrigger.go

    // any time the state changes.
    type RecomputeTrigger struct {
    	inner StaticSingleton[int32]
    	// krt will suppress events for unchanged resources. To workaround this, we constantly change and int each time TriggerRecomputation
    	// is called to ensure our event is not suppressed.
    	i *atomic.Int32
    }
    
    func NewRecomputeTrigger() *RecomputeTrigger {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 05:51:56 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/ApplicationServiceRegistration.kt

     * kept unique by remembering which service registrars have been applied already.
     *
     * This whole object is a workaround for improper application sharing, see [KT-64167](https://youtrack.jetbrains.com/issue/KT-64167).
     */
    object ApplicationServiceRegistration {
        private val lock = ReentrantReadWriteLock()
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 16 11:53:35 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top