Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for enumeration (0.45 sec)

  1. android/guava/src/com/google/common/collect/Maps.java

        ImmutableMap.Builder<String, String> builder = ImmutableMap.builder();
    
        for (Enumeration<?> e = properties.propertyNames(); e.hasMoreElements(); ) {
          /*
           * requireNonNull is safe because propertyNames contains only non-null elements.
           *
           * Accordingly, we have it annotated as returning `Enumeration<? extends Object>` in our
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Maps.java

        ImmutableMap.Builder<String, String> builder = ImmutableMap.builder();
    
        for (Enumeration<?> e = properties.propertyNames(); e.hasMoreElements(); ) {
          /*
           * requireNonNull is safe because propertyNames contains only non-null elements.
           *
           * Accordingly, we have it annotated as returning `Enumeration<? extends Object>` in our
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  3. src/database/sql/sql.go

    }
    
    // rowsCloseHook returns a function so tests may install the
    // hook through a test only mutex.
    var rowsCloseHook = func() func(*Rows, *error) { return nil }
    
    // Close closes the [Rows], preventing further enumeration. If [Rows.Next] is called
    // and returns false and there are no further result sets,
    // the [Rows] are closed automatically and it will suffice to check the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    };
    
    // Returns the input elements shapes and types for Dataset ops.
    DatasetInput GetDatasetInput(Value value) {
      // TODO(haoliang): add an interface for DatasetOp to avoid the following
      // enumeration.
      // Iteratively tracing upwards if parent op is `IdentityOp` or `IdentityNOp`.
      while (
          llvm::isa_and_nonnull<IdentityOp, IdentityNOp>(value.getDefiningOp())) {
        value = value.getDefiningOp()->getOperand(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    	if old != _Gpreempted || new != _Gwaiting {
    		throw("bad g transition")
    	}
    	gp.waitreason = waitReasonPreempted
    	return gp.atomicstatus.CompareAndSwap(_Gpreempted, _Gwaiting)
    }
    
    // stwReason is an enumeration of reasons the world is stopping.
    type stwReason uint8
    
    // Reasons to stop-the-world.
    //
    // Avoid reusing reasons and add new ones instead.
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. tests/integration/pilot/common/routing.go

    	t.RunTraffic(TrafficTestCase{
    		name:             "to localhost",
    		workloadAgnostic: true,
    		setupOpts: func(_ echo.Caller, opts *echo.CallOptions) {
    			// the framework will try to set this when enumerating test cases
    			opts.To = nil
    		},
    		opts: echo.CallOptions{
    			Count:   1,
    			Address: "localhost",
    			Port:    echo.Port{ServicePort: 8080},
    			Scheme:  scheme.HTTP,
    			Check: check.And(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	}
    	return
    }
    
    func setupDiGetClassDevsEx(classGUID *GUID, Enumerator *uint16, hwndParent uintptr, Flags DIGCF, deviceInfoSet DevInfo, machineName *uint16, reserved uintptr) (handle DevInfo, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  8. doc/go1.17_spec.html

    <p>
    The form <code>a … b</code> represents the set of characters from
    <code>a</code> through <code>b</code> as alternatives. The horizontal
    ellipsis <code>…</code> is also used elsewhere in the spec to informally denote various
    enumerations or code snippets that are not further specified. The character <code>…</code>
    (as opposed to the three characters <code>...</code>) is not a token of the Go
    language.
    </p>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top