Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 37 for STRICT (0.31 sec)

  1. hack/golangci-hints.yaml

    # golangci-lint is used in Kubernetes with different configurations that
    # enable an increasing amount of checks:
    # - golangci.yaml is the most permissive configuration. All existing code
    #   passed.
    # - golangci-strict.yaml adds checks that all new code in pull requests
    #   must pass.
    # - golangci-hints.yaml adds checks for code patterns where developer
    #   and reviewer may decide whether findings should get addressed before
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/interface.go

    	// variables are declared. When declared, the authorizer variables are
    	// expected to be non-null.
    	HasAuthorizer bool
    	// StrictCost specifies if the CEL cost limitation is strict for extended libraries as well as native libraries.
    	StrictCost bool
    }
    
    // FilterCompiler contains a function to assist with converting types and values to/from CEL-typed values.
    type FilterCompiler interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/base/KtFe10PsiSymbolUtils.kt

        get() {
            if (this is KtPropertyAccessor) {
                return KaSymbolKind.ACCESSOR
            }
    
            if (this is KtDeclaration) {
                return when (this.getParentOfType<KtDeclaration>(strict = true)) {
                    null -> KaSymbolKind.TOP_LEVEL
                    is KtCallableDeclaration, is KtPropertyAccessor -> KaSymbolKind.LOCAL
                    else -> KaSymbolKind.CLASS_MEMBER
                }
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/gover/version.go

    	// errors.
    	// See https://go.dev/issue/56222.
    	TidyGoModSumVersion = "1.21"
    
    	// goStrictVersion is the Go version at which the Go versions
    	// became "strict" in the sense that, restricted to modules at this version
    	// or later, every module must have a go version line ≥ all its dependencies.
    	// It is also the version after which "too new" a version is considered a fatal error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode.go

    		// Maps with duplicate keys are well-formed but invalid according to the CBOR spec
    		// and never acceptable. Unlike the JSON serializer, inputs containing duplicate map
    		// keys are rejected outright and not surfaced as a strict decoding error.
    		DupMapKey: cbor.DupMapKeyEnforcedAPF,
    
    		// For JSON parity, decoding an RFC3339 string into time.Time needs to be accepted
    		// with or without tagging. If a tag number is present, it must be valid.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:03:36 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/policies.go

    		if len(krt.Fetch(ctx, PeerAuths)) == 0 {
    			return nil
    		}
    		meshCfg := krt.FetchOne(ctx, MeshConfig.AsCollection())
    		// If there are any PeerAuthentications in our cache, send our static STRICT policy
    		return &model.WorkloadAuthorization{
    			LabelSelector: model.LabelSelector{},
    			Authorization: &security.Authorization{
    				Name:      staticStrictPolicyName,
    				Namespace: meshCfg.GetRootNamespace(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ScriptDependencyResolveIntegrationTest.groovy

            def rootId = result.root.id
            assert rootId instanceof ProjectComponentIdentifier
        }
    }
    """
    
            expect:
            succeeds "check"
        }
    
        @Issue("gradle/gradle#15378")
        def "strict resolution strategy can be used when resolving a script classpath from settings"() {
            given:
            mavenRepo().module("org.gradle", "test", "1.45").publish()
            mavenRepo().module("org.gradle", "test", "1.46").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtension.kt

        public abstract fun getKtFiles(): List<KaResolveExtensionFile>
    
        /**
         * Returns the set of packages that are contained in the files provided by [getKtFiles].
         *
         * The returned package set should be a strict set of all file packages,
         * so `for-all pckg: pckg in getContainedPackages() <=> exists file: file in getKtFiles() && file.getFilePackageName() == pckg`
         *
         * @see KaResolveExtension
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. src/runtime/symtabinl.go

    	index int32
    }
    
    // newInlineUnwinder creates an inlineUnwinder initially set to the inner-most
    // inlined frame at PC. PC should be a "call PC" (not a "return PC").
    //
    // This unwinder uses non-strict handling of PC because it's assumed this is
    // only ever used for symbolic debugging. If things go really wrong, it'll just
    // fall back to the outermost frame.
    //
    // newInlineUnwinder should be an internal detail,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/services/internal/RegisteredBuildServiceProvider.java

                }
                return instance.get();
            }
        }
    
        private Try<T> instantiate() {
            // TODO - extract some shared infrastructure to take care of instantiation (eg which services are visible, strict vs lenient, decorated or not?)
            // TODO - should hold the project lock to do the isolation. Should work the same way as artifact transforms (a work node does the isolation, etc)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top