Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 569 for ulong (0.05 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/base/KtConstantValueFactory.kt

            is Int -> KaConstantValue.KaIntConstantValue(value, expression)
            is UInt -> KaConstantValue.KaUnsignedIntConstantValue(value, expression)
            is Long -> KaConstantValue.KaLongConstantValue(value, expression)
            is ULong -> KaConstantValue.KaUnsignedLongConstantValue(value, expression)
            is String -> KaConstantValue.KaStringConstantValue(value, expression)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate/incompleteCode/noRightOperandUnsignedLong.txt

    expression: 4294967296u
    constant: 4294967296uL
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 72 bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/base/KtConstantValue.kt

        }
    
        public class KaLongConstantValue(
            override val value: Long,
            override val sourcePsi: KtElement?
        ) : KaConstantValue(ConstantValueKind.Long) {
            override fun renderAsKotlinConstant(): String = value.toString()
        }
    
        public class KaUnsignedLongConstantValue(
            override val value: ULong,
            override val sourcePsi: KtElement?
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. internal/arn/arn.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 arn
    
    import (
    	"errors"
    	"fmt"
    	"regexp"
    	"strings"
    )
    
    // ARN structure:
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 08:31:34 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. cmd/storage-errors.go

    // errTooManyOpenFiles - too many open files.
    var errTooManyOpenFiles = StorageErr("too many open files, please increase 'ulimit -n'")
    
    // errFileNameTooLong - given file name is too long than supported length.
    var errFileNameTooLong = StorageErr("file name too long")
    
    // errVolumeExists - cannot create same volume again.
    var errVolumeExists = StorageErr("volume already exists")
    
    // errIsNotRegular - not of regular file type.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. src/os/path_windows_test.go

    		{`long///foo.txt`, `\\?\C:\cwd\long\foo.txt`},
    		{`long\.\foo.txt`, `\\?\C:\cwd\long\foo.txt`},
    		{`long\..\foo.txt`, `\\?\C:\cwd\foo.txt`},
    		{`.\long\foo.txt`, `\\?\C:\cwd\long\foo.txt`},
    
    		// UNC Absolute
    		{`\\srv\share\long`, `\\?\UNC\srv\share\long`},
    		{`//srv/share/long`, `\\?\UNC\srv\share\long`},
    		{`/\srv/share/long`, `\\?\UNC\srv\share\long`},
    		{`\\srv\share\long\`, `\\?\UNC\srv\share\long\`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:37:32 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/framer/framer.go

    //	stream: message ...
    //	message: prefix body
    //	prefix: 4 byte uint32 in BigEndian order, denotes length of body
    //	body: bytes (0..prefix)
    //
    // If the buffer passed to Read is not long enough to contain an entire frame, io.ErrShortRead
    // will be returned along with the number of bytes read.
    func NewLengthDelimitedFrameReader(r io.ReadCloser) io.ReadCloser {
    	return &lengthDelimitedFrameReader{r: r}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 13:33:12 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/time/src/main/java/org/gradle/internal/time/MonotonicClock.java

            this.currentTime.set(currentTimeMillis);
        }
    
        @Override
        public long getCurrentTime() {
            long nowNanos = timeSource.nanoTime();
            long syncNanos = syncNanosRef.get();
            long syncMillis = syncMillisRef.get();
            long sinceSyncNanos = nowNanos - syncNanos;
            long sinceSyncMillis = TimeUnit.NANOSECONDS.toMillis(sinceSyncNanos);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/BuildProfile.java

    public class BuildProfile {
    
        private static final long NOT_INITIALIZED_VALUE = -1L;
        private final Map<String, ProjectProfile> projects = new LinkedHashMap<>();
        private final Map<String, ContinuousOperation> dependencySets = new LinkedHashMap<>();
        private final Map<String, FragmentedOperation> transforms = new LinkedHashMap<>();
        private long profilingStarted = NOT_INITIALIZED_VALUE;
        private long buildStarted = NOT_INITIALIZED_VALUE;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  10. maven-embedder/src/main/java/org/apache/maven/cli/transfer/FileSizeFormat.java

            }
        }
    
        public String formatProgress(long progressedSize, long size) {
            StringBuilder sb = new StringBuilder();
            formatProgress(sb, progressedSize, size);
            return sb.toString();
        }
    
        public void formatProgress(StringBuilder builder, long progressedSize, long size) {
            if (progressedSize < 0L) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 21:48:41 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top