Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,432 for meth (0.04 sec)

  1. istioctl/pkg/workload/testdata/vmconfig/ipv6/mesh.yaml.golden

    Xiaopeng Han <******@****.***> 1686841337 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 625 bytes
    - Viewed (0)
  2. guava-gwt/src/com/google/common/math/Math.gwt.xml

    David P. Baker <******@****.***> 1641482883 -0800
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  3. istioctl/pkg/kubeinject/testdata/mesh-config.yaml

    Xiaopeng Han <******@****.***> 1686841337 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. istioctl/pkg/workload/testdata/vmconfig-nil-proxy-metadata/mesh.yaml.golden

    Xiaopeng Han <******@****.***> 1686841337 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 500 bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/mesh-with-automtls.yaml

    Mitch Connors <******@****.***> 1637152085 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 20 bytes
    - Viewed (0)
  6. pilot/pkg/model/proxy_config.go

    		effectiveProxyConfig = mergeWithPrecedence(p.mergedGlobalConfig(), effectiveProxyConfig)
    	}
    
    	if meta.Namespace != p.rootNamespace {
    		namespacedConfig := p.mergedNamespaceConfig(meta.Namespace)
    		effectiveProxyConfig = mergeWithPrecedence(namespacedConfig, effectiveProxyConfig)
    	}
    
    	workloadConfig := p.mergedWorkloadConfig(meta.Namespace, meta.Labels)
    
    	// Check for proxy.istio.io/config annotation and merge it with lower priority than the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 21 01:23:19 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inputs/default.mesh.gen.yaml

    John Howard <******@****.***> 1709830758 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 07 16:59:18 UTC 2024
    - 191 bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/mesh.status.yaml.golden

    Lior Lieberman <******@****.***> 1707338903 +0000
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. src/internal/coverage/cmerge/merge.go

    }
    
    // Saturating add does a saturating addition of 'dst' and 'src',
    // returning added value or math.MaxUint32 plus an overflow flag.
    func SaturatingAdd(dst, src uint32) (uint32, bool) {
    	d, s := uint64(dst), uint64(src)
    	sum := d + s
    	overflow := false
    	if uint64(uint32(sum)) != sum {
    		overflow = true
    		sum = math.MaxUint32
    	}
    	return uint32(sum), overflow
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 23:26:34 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/validator.go

    limitations under the License.
    */
    
    package customresource
    
    import (
    	"context"
    	"fmt"
    	"math"
    	"strings"
    
    	corev1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/meta"
    	"k8s.io/apimachinery/pkg/api/validation"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/util/sets"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 14:00:05 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top