Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 73 for Positions (0.19 sec)

  1. android/guava/src/com/google/common/base/CharMatcher.java

        return indexIn(sequence, 0);
      }
    
      /**
       * Returns the index of the first matching BMP character in a character sequence, starting from a
       * given position, or {@code -1} if no character matches after that position.
       *
       * <p>The default implementation iterates over the sequence in forward order, beginning at {@code
       * start}, calling {@link #matches} for each character.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  2. src/runtime/map.go

    // and reflect/value.go to match the layout of this structure.
    type hiter struct {
    	key         unsafe.Pointer // Must be in first position.  Write nil to indicate iteration end (see cmd/compile/internal/walk/range.go).
    	elem        unsafe.Pointer // Must be in second position (see cmd/compile/internal/walk/range.go).
    	t           *maptype
    	h           *hmap
    	buckets     unsafe.Pointer // bucket ptr at hash_iter initialization time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    				from = i + 1
    			}
    		}
    		return languages, nil
    	}
    }
    
    func SetConsoleCursorPosition(console Handle, position Coord) error {
    	return setConsoleCursorPosition(console, *((*uint32)(unsafe.Pointer(&position))))
    }
    
    func GetStartupInfo(startupInfo *StartupInfo) error {
    	getStartupInfo(startupInfo)
    	return nil
    }
    
    func (s NTStatus) Errno() syscall.Errno {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/CharMatcher.java

        return indexIn(sequence, 0);
      }
    
      /**
       * Returns the index of the first matching BMP character in a character sequence, starting from a
       * given position, or {@code -1} if no character matches after that position.
       *
       * <p>The default implementation iterates over the sequence in forward order, beginning at {@code
       * start}, calling {@link #matches} for each character.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/xcoff.go

    	// match worst case elf text section alignment on ppc64.
    	XCOFFSECTALIGN int64 = 64
    
    	// XCOFF binaries should normally have all its sections position-independent.
    	// However, this is not yet possible for .text because of some R_ADDR relocations
    	// inside RODATA symbols.
    	// .data and .bss are position-independent so their address start inside an unreachable
    	// segment during execution to force segfault if something is wrong.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

                                           Value item_rank, Type result_type,
                                           PatternRewriter *rewriter) {
      // Create the start position of slice. This is done by concatenating
      // `start_index` and `partial_start_position` together.
      IntegerType shape_dtype = rewriter->getIntegerType(32);
      RankedTensorType position_type =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/filesystem/filesystem_interface.h

                     TF_Status* status);
    
      /// Returns the current write position in `*file`.
      ///
      /// Plugins should ensure that the implementation is idempotent, 2 identical
      /// calls result in the same answer.
      ///
      /// Plugins:
      ///   * Must set `status` to `TF_OK` and return current position if no error.
      ///   * Must set `status` to any other value and return -1 in case of error.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  8. src/debug/elf/file_test.go

    			offset = target - int64(len(buf))
    		}
    		pos, err = sf.Seek(offset, whence)
    		if err != nil {
    			t.Fatal(err)
    		}
    		if pos != target {
    			t.Fatalf("want position %d, got %d", target, pos)
    		}
    
    		// Read data from the new position.
    		end := pos + 16
    		if end > int64(len(buf)) {
    			end = int64(len(buf))
    		}
    		n, err := io.ReadFull(sf, buf[pos:end])
    		if err != nil {
    			t.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/Futures.java

       * successful input futures. The list of results is in the same order as the input list, and if
       * any of the provided futures fails or is canceled, its corresponding position will contain
       * {@code null} (which is indistinguishable from the future having a successful value of {@code
       * null}).
       *
       * <p>The list of results is in the same order as the input list.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/riscv/obj.go

    	// Nobody wants to enter negative machine code.
    	if ins.imm < 0 || 1<<32 <= ins.imm {
    		ctxt.Diag("%v: immediate %d in raw position cannot be larger than 32 bits", ins.as, ins.imm)
    	}
    }
    
    // extractBitAndShift extracts the specified bit from the given immediate,
    // before shifting it to the requested position and returning it.
    func extractBitAndShift(imm uint32, bit, pos int) uint32 {
    	return ((imm >> bit) & 1) << pos
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
Back to top