Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 6,362 for gives (0.2 sec)

  1. pkg/test/framework/components/cluster/cluster.go

    	fmt.Stringer
    	kube.CLIClient
    
    	// Name of this cluster. Use for interacting with the cluster or validation against clusters.
    	// Use StableName instead of Name when creating subtests.
    	Name() string
    
    	// StableName gives a deterministic name for the cluster. Use this for test/subtest names to
    	// allow test grid to compare runs, even when the underlying cluster names are dynamic.
    	// Use Name for validation/interaction with the actual cluster.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/FakeTimeLimiter.java

     * desirable to use in some unit tests. More importantly, attempting to debug a call which is
     * time-limited would be extremely annoying, so this gives you a time-limiter you can easily swap in
     * for your real time-limiter while you're debugging.
     *
     * @author Kevin Bourrillion
     * @author Jens Nyman
     * @since 1.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 14 20:35:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. .github/ISSUE_TEMPLATE/30_contributor_regression.yml

        validations:
          required: true
      - type: input
        id: gradle-old-version
        attributes:
          label: Gradle version that used to work
          description: What version of Gradle gives proper result for your case?
        validations:
          required: true
      - type: input
        id: build-scan-url
        attributes:
          label: Build scan URL (optional)
          description: |
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 16 07:49:32 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/PostPluginResolutionFailuresIntegrationSpec.groovy

        }
    
        private static String applyPlugin() {
            """
                plugins {
                    id "$PLUGIN_ID" version "$VERSION"
                }
    
                task verify // no-op, but gives us a task to execute
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/extender.go

    	// given:
    	//   1. Pod to schedule
    	//   2. Candidate nodes and victim pods (nodeNameToVictims) generated by previous scheduling process.
    	// The possible changes made by extender may include:
    	//   1. Subset of given candidate nodes after preemption phase of extender.
    	//   2. A different set of victim pod for every given candidate node after preemption phase of extender.
    	ProcessPreemption(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/JavaUtilLoggingSystemIntegrationTest.groovy

     */
    
    
    package org.gradle.internal.logging
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    /**
     * Test that log levels are propagated to java.util.logging
     * such that logger.isLoggable(Level) gives the expected results.
     * Mapping of log levels is configured in
     * {@link org.gradle.internal.logging.source.JavaUtilLoggingSystem#LOG_LEVEL_MAPPING}.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. CONTRIBUTING.md

    and, when the change is synced out, give the pull request author credit for the
    commit.
    
    Contributor License Agreement
    -----------------------------
    
    Contributions to any Google project must be accompanied by a Contributor
    License Agreement. This is not a copyright _assignment_; it simply gives
    Google permission to use and redistribute your contributions as part of the
    project.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/FakeTimeLimiter.java

     * desirable to use in some unit tests. More importantly, attempting to debug a call which is
     * time-limited would be extremely annoying, so this gives you a time-limiter you can easily swap in
     * for your real time-limiter while you're debugging.
     *
     * @author Kevin Bourrillion
     * @author Jens Nyman
     * @since 1.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 14 20:35:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/CompositeBuildTaskExecutionCrossVersionSpec.groovy

            executeTaskViaTAPI("oB:doSo")
    
            then:
            assertHasBuildSuccessfulLogging()
            outputContains("do something")
        }
    
        def "gives reasonable error message when a task does not exist in the referenced included build"() {
            given:
            settingsFile << """
                rootProject.name = 'root-project'
                includeBuild('other-build')
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r10rc1/PassingCommandLineArgumentsCrossVersionSpec.groovy

            given:
            file('build.gradle') << "assert !gradle.startParameter.searchUpwards"
    
            when:
            withConnection {
                it.newBuild().withArguments('-u').run()
            }
    
            then:
            noExceptionThrown()
        }
    
        def "can overwrite task names via build arguments"() {
            given:
            file('build.gradle') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top