Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 412 for Succeeded (0.32 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_uniform_attribute_utils_test.cc

    TF::UniformQuantizedAddOp ParseUniformQuantizedAddOp(
        const absl::string_view add_op_str, Block& block, MLIRContext& ctx) {
      const LogicalResult parse_result =
          parseSourceString(add_op_str, &block, ParserConfig(&ctx));
      EXPECT_TRUE(succeeded(parse_result));
    
      auto uq_add_op = dyn_cast_or_null<TF::UniformQuantizedAddOp>(block.back());
      EXPECT_TRUE(uq_add_op);
    
      return uq_add_op;
    }
    
    TF::UniformRequantizeOp ParseUniformRequantizedOp(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 11 00:47:05 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  2. pkg/controller/job/job_controller_test.go

    			succeededPods, failedPods := getNewFinishedPods(jobCtx)
    			succeeded := int32(len(succeededPods)) + tc.job.Status.Succeeded + int32(len(uncounted.succeeded))
    			failed := int32(len(failedPods)) + tc.job.Status.Failed + int32(len(uncounted.failed))
    			if succeeded != tc.wantSucceeded {
    				t.Errorf("getStatus reports %d succeeded pods, want %d", succeeded, tc.wantSucceeded)
    			}
    			if failed != tc.wantFailed {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/batch/v1/jobstatus.go

    	return b
    }
    
    // WithSucceeded sets the Succeeded field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Succeeded field is set to the value of the last call.
    func (b *JobStatusApplyConfiguration) WithSucceeded(value int32) *JobStatusApplyConfiguration {
    	b.Succeeded = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 16:34:38 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/os/removeall_test.go

    			if _, err = Lstat(s); err == nil {
    				t.Fatalf("Lstat %q succeeded after partial RemoveAll", s)
    			}
    		}
    	}
    	if err = RemoveAll(path); err != nil {
    		t.Fatalf("RemoveAll %q after partial RemoveAll: %s", path, err)
    	}
    	if _, err = Lstat(path); err == nil {
    		t.Fatalf("Lstat %q succeeded after RemoveAll (final)", path)
    	}
    }
    
    // Test RemoveAll on a large directory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:21:29 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top