Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 771 for SKIPPED (0.1 sec)

  1. cmd/prune-junit-xml/prunexml_test.go

    			<skipped message="=== RUN   TestMaxResourceSize/JSONPatchType_should_handle_a_patch_just_under_the_max_limit&#xA;    max_request_body_bytes_test.go:89: skipping expensive test&#xA;    --- SKIP: TestMaxResourceSize/JSONPatchType_should_handle_a_patch_just_under_the_max_limit (0.00s)&#xA;"></skipped>
    		</testcase>
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 12:26:00 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. pkg/controller/endpointslicemirroring/metrics/metrics.go

    	)
    	// AddressesSkippedPerSync tracks the number of addresses skipped on each
    	// Endpoints sync due to being invalid or exceeding MaxEndpointsPerSubset.
    	AddressesSkippedPerSync = metrics.NewHistogramVec(
    		&metrics.HistogramOpts{
    			Subsystem:      EndpointSliceMirroringSubsystem,
    			Name:           "addresses_skipped_per_sync",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 06 19:43:35 UTC 2020
    - 5.2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/SkippedResult.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.tooling.events;
    
    /**
     * Describes how an operation was skipped.
     *
     * @since 2.4
     */
    public interface SkippedResult extends OperationResult {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 780 bytes
    - Viewed (0)
  4. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/SamplesMavenPublishIntegrationTest.groovy

            then:
            executed ":publishBinaryAndSourcesPublicationToInternalRepository", ":publishBinaryPublicationToExternalRepository", ":publishBinaryAndSourcesPublicationToMavenLocal"
            skipped ":publishBinaryAndSourcesPublicationToExternalRepository", ":publishBinaryPublicationToInternalRepository", ":publishBinaryPublicationToMavenLocal"
    
            and:
            binary.assertPublishedAsJavaModule()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  5. src/io/fs/walk.go

    // SkipDir is used as a return value from [WalkDirFunc] to indicate that
    // the directory named in the call is to be skipped. It is not returned
    // as an error by any function.
    var SkipDir = errors.New("skip this directory")
    
    // SkipAll is used as a return value from [WalkDirFunc] to indicate that
    // all remaining files and directories are to be skipped. It is not returned
    // as an error by any function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 08:50:19 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecIntegrationTest.groovy

            """
    
            when:
            run "run"
    
            then:
            executedAndNotSkipped ":run"
    
            when:
            run "run"
    
            then:
            skipped ":run"
    
            when:
            file("out.txt").delete()
    
            and:
            run "run"
    
            then:
            executedAndNotSkipped ":run"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. docs/debugging/s3-check-md5/main.go

    				continue
    			}
    			if object.IsDeleteMarker {
    				log.Println("SKIPPED: DELETE marker object:", objFullPath(object))
    				continue
    			}
    			if _, ok := object.UserMetadata["X-Amz-Server-Side-Encryption-Customer-Algorithm"]; ok {
    				log.Println("SKIPPED: Objects encrypted with SSE-C do not have md5sum as ETag:", objFullPath(object))
    				continue
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 17 01:15:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_variable_runtime_reformatting.cc

      void runOnOperation() final;
    };
    
    // Returns the earlier value of which `v` is an identity. If `skipped` is
    // provided, it will be used to store the identity nodes skipped.
    Value SkipIdentity(Value v, bool allow_other_use,
                       llvm::SmallPtrSet<Operation*, 4>* skipped = nullptr) {
      while (auto result = mlir::dyn_cast<OpResult>(v)) {
        if (!(allow_other_use || v.hasOneUse())) break;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  9. pkg/test/framework/suite_test.go

    func TestSuite_Basic(t *testing.T) {
    	defer cleanupRT()
    	g := NewWithT(t)
    
    	var runCalled bool
    	var runSkipped bool
    	var exitCode int
    	runFn := func(ctx *suiteContext) int {
    		runCalled = true
    		runSkipped = ctx.skipped
    		return -1
    	}
    	exitFn := func(code int) {
    		exitCode = code
    	}
    
    	s := newTestSuite("tid", runFn, exitFn, defaultSettingsFn)
    	s.Run()
    
    	g.Expect(runCalled).To(BeTrue())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/test/TestSkippedResult.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.events.test;
    
    import org.gradle.tooling.events.SkippedResult;
    
    /**
     * Describes how a test operation was skipped.
     *
     * @since 2.4
     */
    public interface TestSkippedResult extends TestOperationResult, SkippedResult {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 861 bytes
    - Viewed (0)
Back to top