Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 530 for fries (0.07 sec)

  1. android/guava/src/com/google/common/collect/CompoundOrdering.java

    import java.io.Serializable;
    import java.util.Arrays;
    import java.util.Comparator;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /** An ordering that tries several comparators in order. */
    @GwtCompatible(serializable = true)
    @ElementTypesAreNonnullByDefault
    final class CompoundOrdering<T extends @Nullable Object> extends Ordering<T>
        implements Serializable {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. src/runtime/testdata/testprog/preempt.go

    	debug.SetGCPercent(-1)
    	// Out of an abundance of caution, also make sure that there are
    	// no GCs actively in progress. The sweep phase of a GC cycle
    	// for instance tries to preempt Ps at the very beginning.
    	runtime.GC()
    
    	// Start a goroutine with no sync safe-points.
    	var ready, ready2 uint32
    	go func() {
    		for {
    			atomic.StoreUint32(&ready, 1)
    			dummy()
    			dummy()
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 07 17:46:04 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtCompileTimeConstantProvider.kt

    }
    
    public typealias KtCompileTimeConstantProvider = KaCompileTimeConstantProvider
    
    public interface KaCompileTimeConstantProviderMixIn : KaSessionMixIn {
        /**
         * Tries to evaluate the provided expression.
         * Returns a [KaConstantValue] if the expression evaluates to a compile-time constant, otherwise returns null.
         */
        public fun KtExpression.evaluate(): KaConstantValue? =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/FingerprintCompareStrategy.java

    package org.gradle.internal.execution.history.changes;
    
    import org.gradle.internal.fingerprint.FileCollectionFingerprint;
    
    /**
     * Strategy to compare two {@link FileCollectionFingerprint}s.
     *
     * The strategy first tries to do a trivial comparison and delegates the more complex cases to a separate implementation.
     */
    public interface FingerprintCompareStrategy {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/writer/PgpKeyGrouper.java

    import java.util.Comparator;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    import java.util.stream.Collectors;
    
    /**
     * This class is responsible for "normalizing" trusted PGP keys.
     * It tries to identify common super modules/groups/etc... which can
     * then be moved globally.
     *
     * It's worth noting that the result is _less strict_ than keeping all
     * trusted PGP keys at the artifact level, but it significantly reduces
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/ForcingPlatformAlignmentTest.groovy

            when:
            expectAlignment {
                module('core') tries('2.9.4') alignsTo('2.7.9') byVirtualPlatform()
                module('databind') alignsTo('2.7.9') byVirtualPlatform()
                module('kotlin') tries('2.9.4.1') alignsTo('2.7.9') byVirtualPlatform()
                module('annotations') tries('2.9.4.1') alignsTo('2.7.9') byVirtualPlatform()
            }
            run ':checkDeps'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  7. src/os/zero_copy_linux.go

    	written, handled, err = pollCopyFileRange(&f.pfd, &src.pfd, remain)
    	if lr != nil {
    		lr.N -= written
    	}
    	return written, handled, wrapSyscallError("copy_file_range", err)
    }
    
    // getPollFDAndNetwork tries to get the poll.FD and network type from the given interface
    // by expecting the underlying type of i to be the implementation of syscall.Conn
    // that contains a *net.rawConn.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. test/fixedbugs/bug452.go

    // run
    
    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 3835: 8g tries to optimize arithmetic involving integer
    // constants, but can run out of registers in the process.
    
    package main
    
    var a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z, A, B, C, D, E, F, G int
    
    func foo() int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 915 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/work_module_not_in_go_work.txt

    # This is a regression test for issue #49632.
    # The Go command should mention go.work if the user
    # tries to load a local package that's in a module
    # that's not in go.work and can't be resolved.
    
    ! go list ./...
    stderr 'pattern ./...: directory prefix . does not contain modules listed in go.work or their selected dependencies'
    
    ! go list ./a/c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 18:09:53 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/internal/buildtree/BuildTreeStateTest.groovy

            listenerManager.addListener(listener)
    
            when:
            state.run(action)
    
            then:
            1 * action.apply(_)
            0 * actionExecutor._
            0 * listener._
        }
    
        def "fires events before and after build action is run"() {
            def listener = Mock(BuildTreeLifecycleListener)
            def action = Mock(Function)
            def buildAction = Stub(BuildAction)
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top