Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for untracked (0.18 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                        doLast {
                            println "files: " + files.collect { it.name }
                        }
                    }
                }
    """
    
            and: 'preconditions for cleanup of untracked files'
            gcFile.createFile().lastModified = daysAgo(2)
            writeJournalInceptionTimestamp(daysAgo(8))
    
            when: 'cleaning build is started'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

          (filter_ty && filter_ty.hasRank() && filter_ty.getRank() != 4)) {
        return emitOptionalError(location, "Invalid ranks");
      }
    
      // If either input or filter is unranked, we will just return unranked output
      // shape.
      if (!input_ty || !filter_ty || !input_ty.hasRank() || !filter_ty.hasRank()) {
        Type result_type;
        result_type = UnrankedTensorType::get(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      return success();
    }
    
    namespace {
    
    // Hoist coefficient-wise unary operation out of the Unpack op:
    //
    //   %unpacked:N = "tf.Unpack"(%0)
    //   %neg0 = "tf.Neg"(%unpacked#0)
    //   %neg1 = "tf.Neg"(%unpacked#1)
    //   ...
    //   %negN-1 = "tf.Neg"(%unpacked:N-1)
    //
    // Rewrite it to:
    //
    //   %neg = "tf.Neg"(%0)
    //   %unpacked:N = "tf.Unpack"(%neg)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      }
    
      // incompatible_shape_error=false implies that the op will either return a
      // valid result or a scalar boolean indicating the error. For unranked outputs
      // we don't know which one it is. TF shape inference turns unranked outputs
      // into ranked ones if it can statically evaluate the broadcast, see the shape
      // function of tf.Equal.
      auto ty = mlir::dyn_cast<RankedTensorType>(op.getType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      }
    
      // Returns the inferred function signature of the given function body. Input
      // types are unranked tensor of the respective datatype in the function and
      // result types are inferred by the shape_refiner_. Result types need not be
      // unranked tensors and could be ranked tensors in cases where result type
      // depends on an op with static output shape like tf.Const.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      // CHECK: %[[UNPACK:.*]]:2 = "tf.Unpack"(%[[NEG]]) <{axis = 1 : i64}> {device = ""}
      %unpacked:2 = "tf.Unpack"(%arg0) {axis = 1 : i64, device = ""}
                    : (tensor<?x2xf32>) -> (tensor<?xf32>, tensor<?xf32>)
      %0 = "tf.Neg"(%unpacked#0): (tensor<?xf32>) -> tensor<?xf32>
      %1 = "tf.Neg"(%unpacked#1): (tensor<?xf32>) -> tensor<?xf32>
    
      // CHECK: return %[[UNPACK]]#0, %[[UNPACK]]#1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	WNOHANG                                     = 0x1
    	WNOTHREAD                                   = 0x20000000
    	WNOWAIT                                     = 0x1000000
    	WSTOPPED                                    = 0x2
    	WUNTRACED                                   = 0x2
    	XATTR_CREATE                                = 0x1
    	XATTR_REPLACE                               = 0x2
    	XDP_COPY                                    = 0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        DCOMMENT("Unexpected rank mismatch: " << lhs << " vs " << rhs);
        return lhs;
      }
    
      SmallVector<int64_t> shape;
      bool refined_shape = false;
      // Build the shape of the refined type, if lhs is unranked it
      // will be directly the shape of the refined type, otherwise we merged by
      // taking the most specialized. This combines `10x?x?` and `?x?x8` into
      // `10x?x8`.
      if (!lhs_shape_type.hasRank()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller_test.go

    	for _, v := range job.Status.Conditions {
    		if v.Status == v1.ConditionTrue {
    			return &v.Type
    		}
    	}
    	return nil
    }
    
    // TestPastDeadlineJobFinished ensures that a Job is correctly tracked until
    // reaching the active deadline, at which point it is marked as Failed.
    func TestPastDeadlineJobFinished(t *testing.T) {
    	_, ctx := ktesting.NewTestContext(t)
    	clientset := fake.NewSimpleClientset()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet.go

    	// running, and not all running pods are in the podManager - for instance, force deleting a pod
    	// from the apiserver will remove it from the podManager, but the pod may still be terminating and
    	// tracked by the podWorkers. Components that need to know the actual consumed resources of the
    	// node or are driven by podWorkers and the sync*Pod methods (status, volume, stats) should also
    	// consult the podWorkers when reconciling.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top