Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 154 for value6 (0.17 sec)

  1. samples/ambient-argo/tag-chart/values.yaml

    Mitch Connors <******@****.***> 1699062890 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. manifests/charts/ztunnel/values.yaml

      meshConfig:
        defaultConfig:
          proxyMetadata: {}
    
      # This value defines:
      # 1. how many seconds kube waits for ztunnel pod to gracefully exit before forcibly terminating it (this value)
      # 2. how many seconds ztunnel waits to drain its own connections (this value - 1 sec)
      # Default K8S value is 30 seconds
      terminationGracePeriodSeconds: 30
    
    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. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/LocalFileDependencyBackedArtifactSetTest.groovy

            def artifactVisitor = Mock(ArtifactVisitor)
            def files = Mock(FileCollectionInternal)
            def attrs1 = attributesFactory.of(Attribute.of('attr', String), 'value1')
            def attrs2 = attributesFactory.of(Attribute.of('attr', String), 'value2')
    
            when:
            set.visit(visitor)
    
            then:
            _ * dep.componentId >> id
            _ * dep.files >> files
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  4. src/go/doc/testdata/examples/values.go

    // 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.
    
    package foo_test
    
    // Variable declaration with fewer values than names.
    
    func f() (int, int) {
    	return 1, 2
    }
    
    var a, b = f()
    
    // Need two examples to hit playExample.
    
    func ExampleA() {
    	_ = a
    }
    
    func ExampleB() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 23:13:45 UTC 2022
    - 377 bytes
    - Viewed (0)
  5. src/go/doc/testdata/examples/values.golden

    Jonathan Amsterdam <******@****.***> 1650636623 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 23:13:45 UTC 2022
    - 169 bytes
    - Viewed (0)
  6. manifests/charts/default/values.yaml

    John Howard <******@****.***> 1704863403 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 627 bytes
    - Viewed (0)
  7. manifests/charts/ambient/values.yaml

    Ben Leggett <******@****.***> 1716326401 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 21:20:01 UTC 2024
    - 240 bytes
    - Viewed (0)
  8. manifests/charts/istio-cni/values.yaml

        podAnnotations: {}
    
        # Deploy the config files as plugin chain (value "true") or as standalone files in the conf dir (value "false")?
        # Some k8s flavors (e.g. OpenShift) do not support the chain approach, set to false if this is the case
        chained: true
    
        # Custom configuration happens based on the CNI provider.
        # Possible values: "default", "multus"
        provider: "default"
    
        # Configure ambient settings
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. manifests/charts/istio-operator/values.yaml

    John Howard <******@****.***> 1704863403 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. test/typeparam/value.go

    package main
    
    import "fmt"
    
    type value[T any] struct {
    	val T
    }
    
    func get[T any](v *value[T]) T {
    	return v.val
    }
    
    func set[T any](v *value[T], val T) {
    	v.val = val
    }
    
    func (v *value[T]) set(val T) {
    	v.val = val
    }
    
    func (v *value[T]) get() T {
    	return v.val
    }
    
    func main() {
    	var v1 value[int]
    	set(&v1, 1)
    	if got, want := get(&v1), 1; got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top