Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Upper (0.05 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10TypeProvider.kt

                if (!boundTypeArguments.isCompatible) {
                    return false
                }
    
                checkedTypeParameters.add(typeParameter)
                if (!areBoundsCompatible(boundTypeArguments.upper, boundTypeArguments.lower, checkedTypeParameters)) {
                    return false
                }
            }
    
            return true
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeProvider.kt

         * `MutableCollection<String>`.
         *
         * Note that for flexible types, both direct super types of the upper and lower bounds are returned. If that's not desirable, please
         * first call [KaFlexibleType.upperBound] or [KaFlexibleType.lowerBound] and then call this method.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    )
    
    // watchCacheEvent is a single "watch event" that is send to users of
    // watchCache. Additionally to a typical "watch.Event" it contains
    // the previous value of the object to enable proper filtering in the
    // upper layers.
    type watchCacheEvent struct {
    	Type            watch.EventType
    	Object          runtime.Object
    	ObjLabels       labels.Set
    	ObjFields       fields.Set
    	PrevObject      runtime.Object
    	PrevObjLabels   labels.Set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

                }
            }
        }
    
        private
        fun profileNameFor(stateFile: ConfigurationCacheStateStore.StateFile) =
            stateFile.stateType.name.replace(Regex("\\p{Upper}")) { match ->
                " " + match.value.toDefaultLowerCase()
            }.drop(1)
    
        private
        fun cacheFingerprintWriterContextFor(outputStream: OutputStream, profile: () -> String): DefaultWriteContext {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  5. pkg/kubelet/container/runtime.go

    	// as termination message output across all containers. Containers will be evenly truncated
    	// until output is below this limit.
    	MaxPodTerminationMessageLogLength = 1024 * 12
    	// MaxContainerTerminationMessageLength is the upper bound any one container may write to
    	// its termination message path. Contents above this length will be truncated.
    	MaxContainerTerminationMessageLength = 1024 * 4
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  6. src/go/types/unify.go

    // Whether they indeed are identical or assignable is determined
    // upon instantiation and function argument passing.
    
    package types
    
    import (
    	"bytes"
    	"fmt"
    	"sort"
    	"strings"
    )
    
    const (
    	// Upper limit for recursion depth. Used to catch infinite recursions
    	// due to implementation issues (e.g., see issues go.dev/issue/48619, go.dev/issue/48656).
    	unificationDepthLimit = 50
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/unify.go

    // Whether they indeed are identical or assignable is determined
    // upon instantiation and function argument passing.
    
    package types2
    
    import (
    	"bytes"
    	"fmt"
    	"sort"
    	"strings"
    )
    
    const (
    	// Upper limit for recursion depth. Used to catch infinite recursions
    	// due to implementation issues (e.g., see issues go.dev/issue/48619, go.dev/issue/48656).
    	unificationDepthLimit = 50
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  8. pkg/features/kube_features.go

    	//
    	// // owner: @username
    	// // kep: https://kep.k8s.io/NNN
    	// // alpha: v1.X
    	// MyFeature featuregate.Feature = "MyFeature"
    	//
    	// Feature gates should be listed in alphabetical, case-sensitive
    	// (upper before any lower case character) order. This reduces the risk
    	// of code conflicts because changes are more likely to be scattered
    	// across the file.
    
    	// owner: @ttakahashi21 @mkimuram
    	// kep: https://kep.k8s.io/3294
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top