Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 108 for ulong (0.15 sec)

  1. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

    deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    	// cgoLDFLAGS, which includes p.CgoLDFLAGS, can be very long.
    	// Pass it to cgo on the command line, so that we use a
    	// response file if necessary.
    	//
    	// These flags are recorded in the generated _cgo_gotypes.go file
    	// using //go:cgo_ldflag directives, the compiler records them in the
    	// object file for the package, and then the Go linker passes them
    	// along to the host linker. At this point in the code, cgoLDFLAGS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Maps.java

       * of its collection views:
       *
       * <pre>{@code
       * BiMap<Long, String> map = Maps.synchronizedBiMap(
       *     HashBiMap.<Long, String>create());
       * ...
       * Set<Long> set = map.keySet();  // Needn't be in synchronized block
       * ...
       * synchronized (map) {  // Synchronizing on map, not set!
       *   Iterator<Long> it = set.iterator(); // Must be in synchronized block
       *   while (it.hasNext()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Maps.java

       * of its collection views:
       *
       * <pre>{@code
       * BiMap<Long, String> map = Maps.synchronizedBiMap(
       *     HashBiMap.<Long, String>create());
       * ...
       * Set<Long> set = map.keySet();  // Needn't be in synchronized block
       * ...
       * synchronized (map) {  // Synchronizing on map, not set!
       *   Iterator<Long> it = set.iterator(); // Must be in synchronized block
       *   while (it.hasNext()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    var builtinTypeSuffix = map[string]string{
    	"int":                "",
    	"unsigned int":       "u",
    	"long":               "l",
    	"unsigned long":      "ul",
    	"long long":          "ll",
    	"unsigned long long": "ull",
    }
    
    // Builtin float types.
    var builtinTypeFloat = map[string]bool{
    	"double":      true,
    	"long double": true,
    	"float":       true,
    	"__float128":  true,
    	"half":        true,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

                   "split sizes must sum up to the dimension size along split "
                   "dimension, found ")
               << total_dim_size << " vs " << input_dim_size;
    
      if (dynamic_dim_index && total_dim_size > input_dim_size)
        return op.emitOpError(
                   "split sizes must sum up to be less than or equal to the "
                   "dimension size along split dimension, found ")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  7. cmd/server_test.go

    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"bytes"
    	"context"
    	"encoding/xml"
    	"fmt"
    	"io"
    	"math/rand"
    	"net/http"
    	"net/url"
    	"reflect"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  8. src/runtime/proc.go

    		// it can print that information at the right time.
    		//
    		// It should also not enter deep sleep if there are any active P's so
    		// that it can retake P's from syscalls, preempt long running G's, and
    		// poll the network if all P's are busy for long stretches.
    		//
    		// It should wakeup from deep sleep if any P's become active either due
    		// to exiting a syscall or waking up due to a timer expiring so that it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  9. src/database/sql/sql.go

    			select {
    			case <-t.C:
    			default:
    			}
    		}
    		t.Reset(d)
    	}
    }
    
    // connectionCleanerRunLocked removes connections that should be closed from
    // freeConn and returns them along side an updated duration to the next check
    // if a quicker check is required to ensure connections are checked appropriately.
    func (db *DB) connectionCleanerRunLocked(d time.Duration) (time.Duration, []*driverConn) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

            hoist_params->lhs_args[kv.second] = identity_const;
            hoist_params->rhs_args[kv.second] = kv.first;
          }
        }
      }
    
      // Concatenates `args` along `axis`.
      auto pack_or_concat = [&](bool is_scalar, Type result_type, ValueRange args,
                                int64_t axis) {
        // Use `PackOp` for scalar concatenation because `ConcatV2Op` doesn't
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
Back to top