Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 45 for ulong (0.03 sec)

  1. cmd/metrics-v3-ilm.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 (
    	"context"
    )
    
    const (
    	expiryPendingTasks             = "expiry_pending_tasks"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirBuiltInTypes.kt

        private val builder: KaSymbolByFirBuilder,
        override val token: KaLifetimeToken
    ) : KaBuiltinTypes() {
    
        override val int: KaType by cachedBuiltin(builtinTypes.intType)
        override val long: KaType by cachedBuiltin(builtinTypes.longType)
        override val short: KaType by cachedBuiltin(builtinTypes.shortType)
        override val byte: KaType by cachedBuiltin(builtinTypes.byteType)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/oldresult/DefaultResolvedConfigurationBuilder.java

    import java.util.HashMap;
    import java.util.Map;
    
    public class DefaultResolvedConfigurationBuilder implements ResolvedConfigurationBuilder {
        private final Map<Long, Dependency> modulesMap = new HashMap<>();
        private final TransientConfigurationResultsBuilder builder;
    
        public DefaultResolvedConfigurationBuilder(TransientConfigurationResultsBuilder builder) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/RootNode.java

    class RootNode extends NodeState implements RootGraphNode {
        private final ResolveOptimizations resolveOptimizations;
        private final List<? extends DependencyMetadata> syntheticDependencies;
    
        RootNode(long resultId, ComponentState moduleRevision, ResolveState resolveState, List<? extends DependencyMetadata> syntheticDependencies, VariantGraphResolveState root) {
            super(resultId, moduleRevision, resolveState, root, false);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/substututorFactory/AbstractSubstitutorBuilderTest.kt

                val substitutor = buildSubstitutor {
                    substitution(getSymbolByName(mainFile, "A"), builtinTypes.int)
                    substitution(getSymbolByName(mainFile, "B"), builtinTypes.long)
                    substitution(
                        getSymbolByName(mainFile, "C"),
                        buildClassType(StandardClassIds.List) {
                            argument(builtinTypes.string)
                        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. src/syscall/rlimit.go

    // On some systems the limit is 256, which is very easy to run into,
    // even in simple programs like gofmt when they parallelize walking
    // a file tree.
    //
    // After a long discussion on go.dev/issue/46279, we decided the
    // best approach was for Go to raise the limit unconditionally for itself,
    // and then leave old software to set the limit back as needed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:57 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/RecordingObjectOutputStream.kt

            writeBoolean(`val`)
        }
    
        override fun writeShort(`val`: Int) = record {
            this.writeShort(`val`.toShort())
        }
    
        override fun writeLong(`val`: Long) = record {
            writeLong(`val`)
        }
    
        override fun writeFloat(`val`: Float) = record {
            this.writeFloat(`val`)
        }
    
        override fun writeDouble(`val`: Double) = record {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. internal/grid/stream.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 grid
    
    import (
    	"context"
    	"errors"
    )
    
    // A Stream is a two-way stream.
    // All responses *must* be read by the caller.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultCapabilitiesConflictHandlerTest.groovy

    class DefaultCapabilitiesConflictHandlerTest extends Specification {
    
        ResolveState resolveState = Mock(ResolveState)
        DefaultCapabilitiesConflictHandler handler = new DefaultCapabilitiesConflictHandler([])
    
        private long id
    
        @Issue("gradle/gradle#5920")
        def "order of components should be preserved"() {
            PotentialConflict conflict
            CapabilityInternal capability = capability()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/cache/internal/DefaultGeneratedGradleJarCacheIntegrationTest.groovy

    import static org.apache.commons.io.FileUtils.touch
    
    class DefaultGeneratedGradleJarCacheIntegrationTest extends Specification {
        private final static String CACHE_IDENTIFIER = 'test'
        private final static long JAR_GENERATION_TIME_MS = 2000L
    
        @Rule
        TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider(getClass())
    
        @Rule
        RedirectStdOutAndErr stdout = new RedirectStdOutAndErr()
    
        @Rule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top