Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 912 for consistency (0.32 sec)

  1. releasenotes/notes/filter-order.yaml

    releaseNotes:
      - |
        **Improved** the ordering of HTTP and TCP envoy filters to improve consistency
    upgradeNotes:
      - title: "Envoy filter ordering"
        content: |
          This change impacts internal implementation of how Envoy "filters" are ordered. These filters run in order to implement various functionality.
          
          The ordering is now consistent across inbound, outbound and gateway proxy modes, as well as HTTP and TCP protocols:
          
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 15 18:28:50 UTC 2023
    - 895 bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/extractdoc.go

    // description. ExtractDoc returns the portion following the colon,
    // which is the form expected by Analyzer.Doc.
    //
    // Example:
    //
    //	# Analyzer printf
    //
    //	printf: checks consistency of calls to printf
    //
    //	The printf analyzer checks consistency of calls to printf.
    //	Here is the complete description...
    //
    // This notation allows a single doc comment to provide documentation
    // for multiple analyzers, each in its own section.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescFunctionSymbol.kt

            get() = withValidityAssertion { descriptor.isSuspend }
    
        override val isOperator: Boolean
            get() = withValidityAssertion {
                if (descriptor.isDynamic()) {
                    // For consistency with the K2 implementation, see `FirDynamicMembersStorage`
                    return@withValidityAssertion true
                }
                descriptor.isOperator
            }
    
        override val isExternal: Boolean
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. src/internal/types/testdata/fixedbugs/issue43190.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // The errors below are produced by the parser, but we check
    // them here for consistency with the types2 tests.
    
    package p
    
    import ; // ERROR "missing import path"
    import "" // ERROR "invalid import path (empty string)"
    import
    var /* ERROR "missing import path" */ _ int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 997 bytes
    - Viewed (0)
  5. platforms/jvm/language-jvm/src/integTest/groovy/org/gradle/integtests/resolve/consistency/JavaProjectResolutionConsistencyIntegrationTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.resolve.consistency
    
    import org.gradle.integtests.fixtures.AbstractHttpDependencyResolutionTest
    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    import org.gradle.integtests.fixtures.resolve.ResolveTestFixture
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/doc.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package printf defines an Analyzer that checks consistency
    // of Printf format strings and arguments.
    //
    // # Analyzer printf
    //
    // printf: check consistency of Printf format strings and arguments
    //
    // The check applies to calls of the formatting functions such as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_go_version_missing.txt

    # against Go 1.11 or 1.16. We would have to update the go.mod file to clarify,
    # and as of Go 1.16 we don't update the go.mod file by default.
    #
    # If we set -mod=vendor explicitly, we shouldn't apply the Go 1.14
    # consistency check, because — again — we don't know whether we're in a 1.11
    # module or a bad-script-edited 1.16 module.
    
    ! go list -mod=vendor all
    ! stderr '^go: inconsistent vendoring'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 22 16:11:33 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. src/runtime/sys_openbsd2.go

    	KeepAlive(addr) // Just for consistency. Hopefully addr is not a Go address.
    	return args.ret1, args.ret2
    }
    func mmap_trampoline()
    
    //go:nosplit
    //go:cgo_unsafe_args
    func munmap(addr unsafe.Pointer, n uintptr) {
    	libcCall(unsafe.Pointer(abi.FuncPCABI0(munmap_trampoline)), unsafe.Pointer(&addr))
    	KeepAlive(addr) // Just for consistency. Hopefully addr is not a Go address.
    }
    func munmap_trampoline()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. platforms/jvm/language-jvm/src/main/java/org/gradle/api/plugins/JavaResolutionConsistency.java

    package org.gradle.api.plugins;
    
    import org.gradle.api.Incubating;
    
    /**
     * Dependency resolution consistency configuration for
     * the Java derived plugins.
     *
     * @since 6.8
     */
    @Incubating
    public interface JavaResolutionConsistency {
        /**
         * Configures the runtime classpath of every source set to be consistent
         * with the compile classpath. For dependencies which are common between
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/controllermanager_test.go

    	for _, name := range KnownControllers() {
    		if !controllerNameRegexp.MatchString(name) {
    			t.Errorf("name consistency check failed: controller %q must consist of lower case alphabetic characters or '-', and must start and end with an alphabetic character", name)
    		}
    		if !strings.HasSuffix(name, "-controller") {
    			t.Errorf("name consistency check failed: controller %q must have \"-controller\" suffix", name)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top