Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,173 for consistency (0.16 sec)

  1. manifests/charts/istio-cni/README.md

    These can be set with `--set profile=<profile>`.
    For example, the `demo` profile offers a preset configuration to try out Istio in a test environment, with additional features enabled and lowered resource requirements.
    
    For consistency, the same profiles are used across each chart, even if they do not impact a given chart.
    
    Explicitly set values have highest priority, then profile settings, then chart defaults.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. manifests/charts/ztunnel/values.yaml

      multiCluster:
        # The name of the cluster we are installing in. Note this is a user-defined name, which must be consistent
        # with Istiod configuration.
        clusterName: ""
    
      # meshConfig defines runtime configuration of components.
      # For ztunnel, only defaultConfig is used, but this is nested under `meshConfig` for consistency with other
      # components.
      # TODO: https://github.com/istio/istio/issues/43248
      meshConfig:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:30 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/api_predicates.go

    // consistent collection of symbols ([Object] values).
    // For example, two [Named] types can be identical only if their
    // [Named.Obj] methods return the same [TypeName] symbol.
    // A collection of symbols is consistent if, for each logical
    // package whose path is P, the creation of those symbols
    // involved at most one call to [NewPackage](P, ...).
    // To ensure consistency, use a single [Importer] for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 16:36:08 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. src/runtime/map_fast64.go

    	}
    	if h.flags&hashWriting != 0 {
    		fatal("concurrent map writes")
    	}
    	hash := t.Hasher(noescape(unsafe.Pointer(&key)), uintptr(h.hash0))
    
    	// Set hashWriting after calling t.hasher for consistency with mapassign.
    	h.flags ^= hashWriting
    
    	if h.buckets == nil {
    		h.buckets = newobject(t.Bucket) // newarray(t.bucket, 1)
    	}
    
    again:
    	bucket := hash & bucketMask(h.B)
    	if h.growing() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/cmd/root.go

    	flag.BindEnv(fs, constants.RedirectDNS, "", "Enable capture of dns traffic by istio-agent.", &cfg.RedirectDNS)
    	// Allow binding to a different var, for consistency with other components
    	flag.AdditionalEnv(fs, constants.RedirectDNS, "ISTIO_META_DNS_CAPTURE")
    
    	flag.BindEnv(fs, constants.DropInvalid, "", "Enable invalid drop in the iptables rules.", &cfg.DropInvalid)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 17:36:41 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/etcd3/linearized_read_test.go

    	// do *not* bump the key-value store revision. This test exists to ensure that we notice if this implementation
    	// detail ever changes.
    	// [1] https://etcd.io/docs/v3.5/learning/api_guarantees/#isolation-level-and-consistency-of-replicas
    	ctx, store, etcdClient := testSetup(t)
    
    	dir := "/testing"
    	key := dir + "/testkey"
    	out := &example.Pod{}
    	obj := &example.Pod{ObjectMeta: metav1.ObjectMeta{Name: "foo", SelfLink: "testlink"}}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 20:08:59 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  7. src/go/types/api_predicates.go

    // consistent collection of symbols ([Object] values).
    // For example, two [Named] types can be identical only if their
    // [Named.Obj] methods return the same [TypeName] symbol.
    // A collection of symbols is consistent if, for each logical
    // package whose path is P, the creation of those symbols
    // involved at most one call to [NewPackage](P, ...).
    // To ensure consistency, use a single [Importer] for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 16:36:08 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorProblemsApiIntegrationTest.groovy

        def buildOperationIdFile = file('build-operation-id.txt')
    
        def forkingOptions(Jvm javaVersion) {
            return """
                options.fork = true
                // We don't use toolchains here for consistency with the rest of the test suite
                options.forkOptions.javaHome = file('${javaVersion.javaHome}')
            """
        }
    
        def setupBuild(Jvm javaVersion) {
            file('buildSrc/build.gradle') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. src/runtime/sys_darwin.go

    	KeepAlive(addr) // Just for consistency. Hopefully addr is not a Go address.
    }
    func munmap_trampoline()
    
    //go:nosplit
    //go:cgo_unsafe_args
    func madvise(addr unsafe.Pointer, n uintptr, flags int32) {
    	libcCall(unsafe.Pointer(abi.FuncPCABI0(madvise_trampoline)), unsafe.Pointer(&addr))
    	KeepAlive(addr) // Just for consistency. Hopefully addr is not a Go address.
    }
    func madvise_trampoline()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/vendor.go

    		}
    		index := indexes[0]
    		if gover.Compare(index.goVersion, "1.14") < 0 {
    			// Go versions before 1.14 did not include enough information in
    			// vendor/modules.txt to check for consistency.
    			// If we know that we're on an earlier version, relax the consistency check.
    			pre114 = true
    		}
    	}
    
    	vendErrors := new(strings.Builder)
    	vendErrorf := func(mod module.Version, format string, args ...any) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 18:09:22 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top