Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirCompileTimeConstantEvaluator.kt

                    val long = value as Long
                    if (Int.MIN_VALUE < long && long < Int.MAX_VALUE) KaConstantValue.KaIntConstantValue(long.toInt(), psi)
                    else KaConstantValue.KaLongConstantValue(long, psi)
                }
    
                ConstantValueKind.UnsignedIntegerLiteral -> {
                    val long = value as ULong
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/schema/schema.fbs

      input_spatial_dimensions : [long];
      kernel_input_feature_dimension : long;
      kernel_output_feature_dimension : long;
      kernel_spatial_dimensions : [long];
      output_batch_dimension : long;
      output_feature_dimension : long;
      output_spatial_dimensions	: [long];
      feature_group_count : long;
      batch_group_count : long;
      precision_config : [StablehloPrecisionConfig];
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeInfoProvider.kt

        public val UNIT: ClassId = ClassId.topLevel(StandardNames.FqNames.unit.toSafe())
        public val INT: ClassId = ClassId.topLevel(StandardNames.FqNames._int.toSafe())
        public val LONG: ClassId = ClassId.topLevel(StandardNames.FqNames._long.toSafe())
        public val SHORT: ClassId = ClassId.topLevel(StandardNames.FqNames._short.toSafe())
        public val BYTE: ClassId = ClassId.topLevel(StandardNames.FqNames._byte.toSafe())
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

                // Unsigned integers
                is UByte -> printer.append(value.toString())
                is UShort -> printer.append(value.toString())
                is UInt -> printer.append(value.toString())
                is ULong -> printer.append(value.toString())
                // Java values
                is Enum<*> -> printer.append(value.name)
                is List<*> -> renderList(value, printer, renderSymbolsFully = false)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. src/cmd/cgo/doc.go

    The standard C numeric types are available under the names
    C.char, C.schar (signed char), C.uchar (unsigned char),
    C.short, C.ushort (unsigned short), C.int, C.uint (unsigned int),
    C.long, C.ulong (unsigned long), C.longlong (long long),
    C.ulonglong (unsigned long long), C.float, C.double,
    C.complexfloat (complex float), and C.complexdouble (complex double).
    The C type void* is represented by Go's unsafe.Pointer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/test.go

    // issue 22958
    
    typedef struct {
    	unsigned long long f8  : 8;
    	unsigned long long f16 : 16;
    	unsigned long long f24 : 24;
    	unsigned long long f32 : 32;
    	unsigned long long f40 : 40;
    	unsigned long long f48 : 48;
    	unsigned long long f56 : 56;
    	unsigned long long f64 : 64;
    } issue22958Type;
    
    // issue 23356
    int a(void) { return 5; };
    int r(void) { return 3; };
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/init/certs.go

    	}
    
    	// SA creates the private/public key pair, which doesn't use x509 at all
    	saPhase := workflow.Phase{
    		Name:         "sa",
    		Short:        "Generate a private key for signing service account tokens along with its public key",
    		Long:         saKeyLongDesc,
    		Run:          runCertsSa,
    		InheritFlags: getCertPhaseFlags("sa"),
    	}
    
    	subPhases = append(subPhases, saPhase)
    
    	return subPhases
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 06:35:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonServer.java

                    }
    
                    @Override
                    public HashCode hash(File file, long length, long lastModified) {
                        throw new UnsupportedOperationException();
                    }
                };
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. maven-embedder/src/test/java/org/apache/maven/cli/transfer/FileSizeFormatTest.java

            long _10_bytes = 10L;
            assertEquals("10 B", format.format(_10_bytes));
    
            long _15_bytes = 15L;
            assertEquals("15 B", format.format(_15_bytes));
    
            long _999_bytes = 999L;
            assertEquals("999 B", format.format(_999_bytes));
    
            long _1000_bytes = 1000L;
            assertEquals("1.0 kB", format.format(_1000_bytes));
    
            long _5500_bytes = 5500L;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 21:48:41 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestOutputStore.java

                    for (Map.Entry<Long, Map<Long, TestCaseRegion>> classEntry : index.entrySet()) {
                        Long classId = classEntry.getKey();
                        Map<Long, TestCaseRegion> regions = classEntry.getValue();
    
                        indexOutput.writeLong(classId, true);
                        indexOutput.writeInt(regions.size(), true);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top