Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for errString (0.15 sec)

  1. tensorflow/compiler/mlir/tf2xla/api/v1/cluster_tf.cc

        }
    
        return mlir::WalkResult::advance();
      });
    
      if (num_submodules > 1) {
        auto num_submodules_error = absl::InternalError(
            "V1 Compat Bridge has more than one submodule. Erroring out.");
        TF_RETURN_IF_ERROR(RecordStatusIfError(
            /*error_prefix=*/"Bridge has more than one submodule:",
            is_in_fallback_enabled_mode, num_submodules_error));
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 22:25:18 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. src/runtime/runtime-gdb_unix_test.go

    	if _, err := r.Read(buf[:]); err != io.EOF {
    		t.Fatalf("control pipe read get err %v want io.EOF", err)
    	}
    
    	// 💥
    	if err := cmd.Process.Signal(os.Signal(syscall.SIGABRT)); err != nil {
    		t.Fatalf("erroring signaling child: %v", err)
    	}
    
    	err = cmd.Wait()
    	t.Logf("child output:\n%s", output.String())
    	if err == nil {
    		t.Fatalf("Wait succeeded, want SIGABRT")
    	}
    	ee, ok := err.(*exec.ExitError)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 17 19:05:30 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. pkg/controller/disruption/disruption.go

    	if err != nil {
    		dc.recorder.Eventf(pdb, v1.EventTypeWarning, "CalculateExpectedPodCountFailed", "Failed to calculate the number of expected pods: %v", err)
    		return err
    	}
    	// We have unmamanged pods, instead of erroring and hotlooping in disruption controller, log and continue.
    	if len(unmanagedPods) > 0 {
    		logger.V(4).Info("Found unmanaged pods associated with this PDB", "pods", unmanagedPods)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

        if (data_predecessor || control_predecessor) {
          if (cluster_predecessor_ops.contains(&op)) {
            // Op has a dependency from and to the cluster which is invalid. Instead
            // of erroring out we don't add the op to `cluster_successor_ops` which
            // is in line with previous behavior when certain control dependencies
            // were not considered.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  5. pkg/controller/disruption/disruption_test.go

    	add(t, dc.podStore, pod)
    	dc.sync(ctx, pdbName)
    
    	ps.VerifyDisruptionAllowed(t, pdbName, 0)
    	verifyEventEmitted(t, dc, "CalculateExpectedPodCountFailed")
    }
    
    // Verify that disruption controller is not erroring when unmanaged pods are found
    func TestStatusForUnmanagedPod(t *testing.T) {
    	_, ctx := ktesting.NewTestContext(t)
    	dc, ps := newFakeDisruptionController(ctx)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  6. cmd/storage-rest-server.go

    // or informative based on the `exit` flag, please look
    // at each implementation of error for added hints.
    //
    // FIXME: This is an unusual function but serves its purpose for
    // now, need to revisit the overall erroring structure here.
    // Do not like it :-(
    func logFatalErrs(err error, endpoint Endpoint, exit bool) {
    	switch {
    	case errors.Is(err, errXLBackend):
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modget/get.go

    				// may downgrade this module out of the build list entirely, in which
    				// case the pattern will no longer include it and it won't be an error.
    				//
    				// Either way, punt on the query rather than erroring out just yet.
    				return pathSet{}
    			}
    
    			return r.tryWildcard(ctx, q, m)
    		})
    	}
    
    	// Even if no modules matched, we shouldn't query for a new module to provide
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.25.md

    
    ###  Introduced KMS v2
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  9. RELEASE.md

            layers and happens to work before TF 2.4. These will explicitly be
            unsupported now. Converting these ops to Functional API op layers was
            unreliable before TF 2.4, and prone to erroring incomprehensibly or
            being silently buggy.
        *   Code that directly asserts on a Keras symbolic value in cases where ops
            like `tf.rank` used to return a static or symbolic value depending on if
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top