Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,050 for isnumber (0.09 sec)

  1. pilot/pkg/model/virtualservice_test.go

    		Host: "productpage.org",
    		Port: &networking.PortSelector{
    			Number: 80,
    		},
    		Subset: "v1",
    	}
    	dstV2 := &networking.Destination{
    		Host: "productpage.org",
    		Port: &networking.PortSelector{
    			Number: 80,
    		},
    		Subset: "v2",
    	}
    	dstV3 := &networking.Destination{
    		Host: "productpage.org",
    		Port: &networking.PortSelector{
    			Number: 80,
    		},
    		Subset: "v3",
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  2. tests/integration/telemetry/testdata/istio-mtls-vs.yaml

        - destination:
            host: istio-egressgateway.istio-system.svc.cluster.local
            port:
              number: 443
          weight: 100
      tcp:
      - match:
        - gateways:
          - istio-egressgateway
          port: 443
        route:
        - destination:
            host: fake.external.com
            port:
              number: 443
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 16:30:22 UTC 2022
    - 644 bytes
    - Viewed (0)
  3. test/typeparam/double.go

    package main
    
    import (
    	"fmt"
    	"reflect"
    )
    
    type Number interface {
    	~int | ~int8 | ~int16 | ~int32 | ~int64 | ~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr | ~float32 | ~float64
    }
    
    type MySlice []int
    type MyFloatSlice []float64
    
    type _SliceOf[E any] interface {
    	~[]E
    }
    
    func _DoubleElems[S _SliceOf[E], E Number](s S) S {
    	r := make(S, len(s))
    	for i, v := range s {
    		r[i] = v + v
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/FormatSupport.java

            return timeStampFormat.format(date);
        }
    
        public static Number getTotalTimeSeconds(MeasuredOperationList baseline, MeasuredOperationList current) {
            return baseline.getTotalTime().getMedian().toUnits(Duration.SECONDS).getValue();
        }
    
        public static Number getConfidencePercentage(MeasuredOperationList baseline, MeasuredOperationList current) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.td

    include "mlir/Dialect/Func/IR/FuncOps.td"
    
    // Creates a function call with TF::PartitionedCallOp and a new function to
    // wrap the section between arguments and results.
    //
    // The `returns` number indicates the number of results the function returns.
    class LiftAsTFPartitionedCall<string func_name, int returns = 1> :
      NativeCodeCall<"LiftAsFunctionCall($_builder, $_loc, "
                        "FunctionCallOpType::TFPartitionedCallOp, "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 25 00:32:20 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. test/fixedbugs/issue3925.go

    // Copyright 2012 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.
    
    // Issue 3925: wrong line number for error message "missing key in map literal"
    
    // also a test for correct line number in other malformed composite literals.
    
    package foo
    
    var _ = map[string]string{
    	"1": "2",
    	"3", "4", // ERROR "missing key|must have keys"
    }
    
    var _ = []string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 23:59:57 UTC 2020
    - 535 bytes
    - Viewed (0)
  7. test/fixedbugs/issue30085.go

    // license that can be found in the LICENSE file.
    
    package main
    
    func main() {
    	var c, d = 1, 2, 3 // ERROR "assignment mismatch: 2 variables but 3 values|wrong number of initializations|extra init expr"
    	var e, f, g = 1, 2 // ERROR "assignment mismatch: 3 variables but 2 values|wrong number of initializations|missing init expr"
    	_, _, _, _, _ = c, d, e, f, g
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 14:07:00 UTC 2023
    - 488 bytes
    - Viewed (0)
  8. src/runtime/netpoll_kqueue_event.go

    // license that can be found in the LICENSE file.
    
    //go:build darwin || dragonfly || freebsd
    
    package runtime
    
    // Magic number of identifier used for EVFILT_USER.
    // This number had zero Google results when it's created.
    // That way, people will be directed here when this number
    // get printed somehow and they search for it.
    const kqIdent = 0xee1eb9f4
    
    func addWakeupEvent(kq int32) {
    	ev := keventt{
    		ident:  kqIdent,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:46 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. samples/bookinfo/networking/bookinfo-gateway.yaml

      # If you installed Istio using Helm following the standard documentation, this would be "istio=ingress"
      selector:
        istio: ingressgateway # use istio default controller
      servers:
      - port:
          number: 8080
          name: http
          protocol: HTTP
        hosts:
        - "*"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: bookinfo
    spec:
      hosts:
      - "*"
      gateways:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 14:13:54 UTC 2023
    - 873 bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/convert/ShortConversionUtil.java

            if (o == null) {
                return null;
            } else if (o instanceof Short) {
                return (Short) o;
            } else if (o instanceof Number) {
                return ((Number) o).shortValue();
            } else if (o instanceof String) {
                return toShort((String) o);
            } else if (o instanceof java.util.Date) {
                if (pattern != null) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top