Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 632 for isSucceeded (0.19 sec)

  1. pkg/ctrlz/topics/assets/templates/scopes.html

            ajax.onload = onload;
            ajax.onerror = onerror;
            ajax.open("GET", url, true);
            ajax.send();
    
            function onload() {
                if (this.status === 200) { // request succeeded
                    let si = JSON.parse(this.responseText);
                    for (let i = 0; i < si.length; i++) {
                        let info = si[i];
    
                        let tr = document.getElementById(info.name);
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/device_util_test.cc

          GetDeviceOrdinalFromDeviceString(unknown_loc, tpu0, &device_ordinal0);
      EXPECT_TRUE(mlir::succeeded(result0));
      EXPECT_EQ(device_ordinal0, 0);
    
      int64_t device_ordinal1 = -1;
      mlir::LogicalResult result1 =
          GetDeviceOrdinalFromDeviceString(unknown_loc, tpu1, &device_ordinal1);
      EXPECT_TRUE(mlir::succeeded(result1));
      EXPECT_EQ(device_ordinal1, 1);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. samples/guide/src/main/java/okhttp3/recipes/kt/PerCallSettings.kt

        val client1 =
          client.newBuilder()
            .readTimeout(500, TimeUnit.MILLISECONDS)
            .build()
        try {
          client1.newCall(request).execute().use { response ->
            println("Response 1 succeeded: $response")
          }
        } catch (e: IOException) {
          println("Response 1 failed: $e")
        }
    
        // Copy to customize OkHttp for this request.
        val client2 =
          client.newBuilder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/reflect/TypeVisitor.java

              visitGenericArrayType((GenericArrayType) type);
            } else {
              throw new AssertionError("Unknown type: " + type);
            }
            succeeded = true;
          } finally {
            if (!succeeded) { // When the visitation failed, we don't want to ignore the second.
              visited.remove(type);
            }
          }
        }
      }
    
      void visitClass(Class<?> t) {}
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 16 21:10:04 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  5. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/googletest/GoogleTestTestResults.groovy

        }
    
        def checkTestCases(int total, int succeeded, int failed) {
            def tests = resultsNode.@tests as int
            def disabled = resultsNode.@disabled as int
            def testFailed = resultsNode.@failures as int
            def run = tests - disabled
            def testSucceeded = tests - failed
            assert run == total
            assert testSucceeded == succeeded
            assert testFailed == failed
            return true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/reflect/TypeVisitor.java

              visitGenericArrayType((GenericArrayType) type);
            } else {
              throw new AssertionError("Unknown type: " + type);
            }
            succeeded = true;
          } finally {
            if (!succeeded) { // When the visitation failed, we don't want to ignore the second.
              visited.remove(type);
            }
          }
        }
      }
    
      void visitClass(Class<?> t) {}
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 16 21:10:04 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/internal/buildtree/DefaultBuildTreeLifecycleControllerTest.groovy

        }
    
        def "runs tasks"() {
            when:
            controller.scheduleAndRunTasks()
    
            then:
            1 * workController.scheduleAndRunRequestedTasks(null) >> ExecutionResult.succeeded()
    
            and:
            1 * finishExecutor.finishBuildTree([]) >> null
        }
    
        def "runs tasks and collects failure to schedule and execute tasks"() {
            def failure = new RuntimeException()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 10:38:23 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/batch/v1/types.go

    // been accounted in Job status counters.
    type UncountedTerminatedPods struct {
    	// succeeded holds UIDs of succeeded Pods.
    	// +listType=set
    	// +optional
    	Succeeded []types.UID `json:"succeeded,omitempty" protobuf:"bytes,1,rep,name=succeeded,casttype=k8s.io/apimachinery/pkg/types.UID"`
    
    	// failed holds UIDs of failed Pods.
    	// +listType=set
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  9. test/interface/receiver.go

    	if _, ok := i.(P); ok {
    		println("dynamic i.(P) succeeded incorrectly")
    		panic("fail")
    	}
    
    	//	println("--struct--");
    	var s S
    	s.T = 42
    	s.P()
    	s.V()
    
    	v = s
    	s.V()
    
    	p = &s
    	p.P()
    	p.V()
    
    	v = &s
    	v.V()
    
    	//	p = s	// ERROR
    	var j interface{} = s
    	if _, ok := j.(P); ok {
    		println("dynamic j.(P) succeeded incorrectly")
    		panic("fail")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 06:33:41 UTC 2012
    - 1.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/batch/v1/generated.proto

      // +optional
      optional PodFailurePolicy podFailurePolicy = 11;
    
      // successPolicy specifies the policy when the Job can be declared as succeeded.
      // If empty, the default behavior applies - the Job is declared as succeeded
      // only when the number of succeeded pods equals to the completions.
      // When the field is specified, it must be immutable and works only for the Indexed Jobs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
Back to top