Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,173 for consistency (0.27 sec)

  1. src/cmd/compile/internal/abt/avlint32_test.go

    			s, i := old.wellFormed()
    			if s != "" {
    				te.Errorf("Old tree consistency problem %v at k=%d, j=%d, old=\n%v, t=\n%v", s, k, j, old.DebugString(), t.DebugString())
    				return
    			}
    			if i != j {
    				te.Errorf("Wrong tree size %v, expected %v for old %v", i, j, old.DebugString())
    			}
    		}
    		s, i := t.wellFormed()
    		if s != "" {
    			te.Errorf("Tree consistency problem at %v", s)
    			return
    		}
    		if i != k {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 11 16:34:41 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  2. docs/distributed/README.md

    ### Consistency Guarantees
    
    MinIO follows strict **read-after-write** and **list-after-write** consistency model for all i/o operations both in distributed and standalone modes. This consistency model is only guaranteed if you use disk filesystems such as xfs, zfs or btrfs etc.. for distributed setup.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. test/fixedbugs/issue44465.go

    // compile -d=ssa/check/seed
    
    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This code caused an internal consistency error due to a bad shortcircuit optimization.
    
    package p
    
    func f() {
    	var b bool
    	if b {
    		b = true
    	}
    l:
    	for !b {
    		b = true
    		goto l
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 22 20:27:09 UTC 2021
    - 375 bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. test/fixedbugs/bug098.go

    // license that can be found in the LICENSE file.
    
    package main
    
    type A []int;
    type M map[int] int;
    
    func main() {
    	var a *A = &A{0};
    	var m *M = &M{0 : 0};  // should be legal to use & here for consistency with other composite constructors (prev. line)
    	_, _ = a, m;
    }
    
    /*
    uetli:~/Source/go1/test/bugs gri$ 6g bug098.go && 6l bug098.6 && 6.out
    bug098.go:10: illegal types for operand: AS
    	(*MAP[<int32>INT32]<int32>INT32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 582 bytes
    - Viewed (0)
  9. 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)
  10. cmd/kubeadm/app/cmd/options/doc.go

    no matter if hard coded commands or autogenerated command for phases.
    
    New kubeadm flags should always be defined in this package as a constant before their usage,
    in order to enforce naming consistency across different commands and to control flag proliferation.
    
    In addition to defining the flags, the package also contains set of utilities for flag management.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 04 18:46:55 UTC 2018
    - 1.2K bytes
    - Viewed (0)
Back to top