Search Options

Results per page
Sort
Preferred Languages
Advance

Results 401 - 410 of 1,302 for SAME (0.02 sec)

  1. cni/pkg/cmd/root.go

    1. registerIntegerParameter(constants.KubeconfigMode, constants.DefaultKubeconfigMode, "File mode of the kubeconfig file")
    2. registerStringParameter(constants.KubeCAFile, "", "CA file for kubeconfig. Defaults to the same as install-cni pod")
    3. registerBooleanParameter(constants.SkipTLSVerify, false, "Whether to use insecure TLS in kubeconfig file")
    4. registerIntegerParameter(constants.MonitoringPort, 15014, "HTTP port to serve prometheus metrics")
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Aug 16 15:33:47 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildEnvironment.kt

    1. else -> actualBranch
    2. }
    3.  
    4. /**
    5. * The build environment.
    6. *
    7. * WARNING: Every val in here must not change for they same daemon. If it does, changes will go undetected,
    8. * since this whole object is kept in the classloader between builds.
    9. * Anything that changes must be in a val with a get() method that recomputes the value each time.
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Oct 09 08:19:42 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/386.s

    1. // This input was created by taking the instruction productions in
    2. // the old assembler's (8a's) grammar and hand-writing complete
    3. // instructions for each rule, to guarantee we cover the same space.
    4.  
    5. #include "../../../../../runtime/textflag.h"
    6.  
    7. TEXT foo(SB), DUPOK|NOSPLIT, $0
    8.  
    9. // LTYPE1 nonrem { outcode(int($1), &$2); }
    10. SETCC AX
    11. SETCC foo+4(SB)
    12.  
    13. // LTYPE2 rimnon { outcode(int($1), &$2); }
    14. DIVB AX
    15. DIVB foo+4(SB)
    16. PUSHL $foo+4(SB)
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Apr 09 18:57:21 UTC 2019
    - 2K bytes
    - Viewed (0)
  4. compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t04/ProjectInheritanceTest.java

    1. import static org.junit.jupiter.api.Assertions.assertTrue;
    2.  
    3. /**
    4. * Verifies the version of a dependency listed in a parent's
    5. * dependencyManagement section is chosen over another version of the same
    6. * dependency, listed transitively.
    7. *
    8. */
    9. @Deprecated
    10. class ProjectInheritanceTest extends AbstractProjectInheritanceTestCase {
    11. // ----------------------------------------------------------------------
    12. //
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. impl/maven-core/src/main/java/org/apache/maven/execution/scope/internal/MojoExecutionScope.java

    1. provided.afterExecutionFailure(event);
    2. }
    3. }
    4.  
    5. private Collection<WeakMojoExecutionListener> getProvidedListeners() {
    6. // the same instance can be provided multiple times under different Key's
    7. // deduplicate instances to avoid redundant beforeXXX/afterXXX callbacks
    8. IdentityHashMap<WeakMojoExecutionListener, Object> listeners = new IdentityHashMap<>();
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/concurrent/Task.kt

    1. * task should not be executed again. Otherwise it returns a delay until the next execution.
    2. *
    3. * A task has at most one next execution. If the same task instance is scheduled multiple times, the
    4. * earliest one wins. This applies to both executions scheduled with [TaskRunner.Queue.schedule] and
    5. * those implied by the returned execution delay.
    6. *
    7. * Cancellation
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. .github/workflows/ci.yml

    1. - os: windows-latest
    2. java: 21
    3. root-pom: pom.xml
    4. runs-on: ${{ matrix.os }}
    5. env:
    6. ROOT_POM: ${{ matrix.root-pom }}
    7. steps:
    8. # Cancel any previous runs for the same branch that are still running.
    9. - name: 'Cancel previous runs'
    10. uses: styfle/cancel-workflow-action@85880fa0301c86cca9da44039ee3bb12d3bedbfa # 0.12.1
    11. with:
    12. access_token: ${{ github.token }}
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Oct 29 18:53:45 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/math/QuantilesAlgorithmTest.java

    1. import java.util.Random;
    2. import java.util.Set;
    3. import junit.framework.TestCase;
    4.  
    5. /**
    6. * Tests that the different algorithms benchmarked in {@link QuantilesBenchmark} are actually all
    7. * returning more-or-less the same answers.
    8. */
    9. public class QuantilesAlgorithmTest extends TestCase {
    10.  
    11. private static final Random RNG = new Random(82674067L);
    12. private static final int DATASET_SIZE = 1000;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 3.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/ForwardingLoadingCache.java

    1. * href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>.
    2. *
    3. * <p>Note that {@link #get}, {@link #getUnchecked}, and {@link #apply} all expose the same
    4. * underlying functionality, so should probably be overridden as a group.
    5. *
    6. * @author Charles Fry
    7. * @since 11.0
    8. */
    9. @GwtIncompatible
    10. @ElementTypesAreNonnullByDefault
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Aug 06 17:12:03 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/io/Files.java

    1. @J2ObjCIncompatible
    2. public static File createTempDir() {
    3. return TempFileCreator.INSTANCE.createTempDir();
    4. }
    5.  
    6. /**
    7. * Creates an empty file or updates the last updated timestamp on the same as the unix command of
    8. * the same name.
    9. *
    10. * @param file the file to create or update
    11. * @throws IOException if an I/O error occurs
    12. */
    13. @SuppressWarnings("GoodTime") // reading system time without TimeSource
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Jul 22 19:03:12 UTC 2024
    - 33.1K bytes
    - Viewed (0)
Back to top