Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 70 for isnumber (0.17 sec)

  1. src/testing/testing.go

    	// Channel used to signal tests that are ready to be run in parallel.
    	startParallel chan bool
    
    	// running is the number of tests currently running in parallel.
    	// This does not include tests that are waiting for subtests to complete.
    	running int
    
    	// numWaiting is the number tests waiting to be run in parallel.
    	numWaiting int
    
    	// maxParallel is a copy of the parallel flag.
    	maxParallel int
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  2. src/encoding/json/decode_test.go

    	{CaseName: Name(""), in: `-5`, ptr: new(int16), out: int16(-5)},
    	{CaseName: Name(""), in: `2`, ptr: new(Number), out: Number("2"), useNumber: true},
    	{CaseName: Name(""), in: `2`, ptr: new(Number), out: Number("2")},
    	{CaseName: Name(""), in: `2`, ptr: new(any), out: float64(2.0)},
    	{CaseName: Name(""), in: `2`, ptr: new(any), out: Number("2"), useNumber: true},
    	{CaseName: Name(""), in: `"a\u1234"`, ptr: new(string), out: "a\u1234"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    		if e != nil {
    			return "", e
    		}
    		if l <= n {
    			return UTF16ToString(b[:l]), nil
    		}
    		n = l
    	}
    }
    
    // IsMember reports whether the access token t is a member of the provided SID.
    func (t Token) IsMember(sid *SID) (bool, error) {
    	var b int32
    	if e := checkTokenMembership(t, sid, &b); e != nil {
    		return false, e
    	}
    	return b != 0, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

      public <N1 extends Number, N2 extends Number, N11 extends N1>
          void testisSupertypeOf_equalWildcardTypes() {
        assertAssignable(
            new TypeToken<List<? extends N1>>() {}, new TypeToken<List<? extends N1>>() {});
        assertAssignable(new TypeToken<List<? super N1>>() {}, new TypeToken<List<? super N1>>() {});
        assertAssignable(
            new TypeToken<List<? extends Number>>() {}, new TypeToken<List<? extends Number>>() {});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  5. 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)
  6. guava-tests/test/com/google/common/collect/MapsTest.java

        Map<Object, Number> map2 = ImmutableMap.<Object, Number>of(1, 2);
        Map<Object, Integer> map3 = ImmutableMap.<Object, Integer>of(1, 2);
        Map<Number, Object> map4 = ImmutableMap.<Number, Object>of(1, 2);
        Map<Number, Number> map5 = ImmutableMap.<Number, Number>of(1, 2);
        Map<Number, Integer> map6 = ImmutableMap.<Number, Integer>of(1, 2);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

          const int num_types = types->size();
          if (index < 0 || index >= num_types) {
            return errors::InvalidArgument("Invalid argument number");
          }
          (*types)[index] = n->output_type(0);
        }
      }
      return absl::OkStatus();
    }
    
    // Renumber the indices of _Arg nodes in a graph, according to
    // 'permutation' that maps old indices to new indices.
    static Status RenumberArguments(Graph* graph,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  8. tests/test_application.py

                        "parameters": [
                            {
                                "required": True,
                                "schema": {"title": "Item Id", "type": "number"},
                                "name": "item_id",
                                "in": "path",
                            }
                        ],
                    }
                },
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 52.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	SPDRP_PHYSICAL_DEVICE_OBJECT_NAME SPDRP = 0x0000000E // PhysicalDeviceObjectName (R)
    	SPDRP_CAPABILITIES                SPDRP = 0x0000000F // Capabilities (R)
    	SPDRP_UI_NUMBER                   SPDRP = 0x00000010 // UiNumber (R)
    	SPDRP_UPPERFILTERS                SPDRP = 0x00000011 // UpperFilters (R/W)
    	SPDRP_LOWERFILTERS                SPDRP = 0x00000012 // LowerFilters (R/W)
    	SPDRP_BUSTYPEGUID                 SPDRP = 0x00000013 // BusTypeGUID (R)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  10. operator/pkg/apis/istio/v1alpha1/values_types.proto

      string provider = 22;
    
      // The number of pods that can be unavailable during a rolling update of the CNI DaemonSet (see
      // `updateStrategy.rollingUpdate.maxUnavailable` here:
      // https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/daemon-set-v1/#DaemonSetSpec).
      // May be specified as a number of pods or as a percent of the total number
      // of pods at the start of the update.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
Back to top