Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 184 for Traverse (0.13 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/DefaultConvention.java

                Map<String, Object> properties = new HashMap<String, Object>();
                if (plugins != null) {
                    List<Object> reverseOrder = new ArrayList<Object>(plugins.values());
                    Collections.reverse(reverseOrder);
                    for (Object object : reverseOrder) {
                        properties.putAll(asDynamicObject(object).getProperties());
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/test.go

    	for len(q) > 0 {
    		p := q[0]
    		q = q[1:]
    		if p == ptest {
    			// The stack is supposed to be in the order x imports y imports z.
    			// We collect in the reverse order: z is imported by y is imported
    			// by x, and then we reverse it.
    			var stk []string
    			for p != nil {
    				stk = append(stk, p.ImportPath)
    				p = importerOf[p]
    			}
    			// complete the cycle: we set importer[p] = nil to break the cycle
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/legalize_patterns.td

      (TFL_ScatterNdOp (CreateTFCastToInt32Op $indices), $updates,
        (CreateTFCastToInt32Op $shape))>;
    
    def LegalizeCumsum : Pat<
      (TF_CumsumOp $input, $axis, $exclusive, $reverse),
      (TFL_CumsumOp $input, (CreateTFCastToInt32Op $axis), $exclusive, $reverse)>;
    
    def LegalizeReshape : Pat<
      (TF_ReshapeOp $input, $shape),
      (TFL_ReshapeOp $input, (CreateInt32ConstOrCast $shape))>;
    
    def LegalizeStridedSlice : Pat<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  4. src/crypto/aes/block.go

    			t = subw(rotw(t)) ^ (uint32(powx[i/nk-1]) << 24)
    		} else if nk > 6 && i%nk == 4 {
    			t = subw(t)
    		}
    		enc[i] = enc[i-nk] ^ t
    	}
    
    	// Derive decryption key from encryption key.
    	// Reverse the 4-word round key sets from enc to produce dec.
    	// All sets but the first and last get the MixColumn transform applied.
    	if dec == nil {
    		return
    	}
    	n := len(enc)
    	for i := 0; i < n; i += 4 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GFileUtils.java

            File parent = dir.getParentFile();
            while (!parent.exists()) {
                toCreate.add(parent);
                parent = parent.getParentFile();
            }
    
            Collections.reverse(toCreate);
            for (File parentDirToCreate : toCreate) {
                if (parentDirToCreate.isDirectory()) {
                    continue;
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. src/go/ast/commentmap.go

    		// don't collect comments
    		switch n.(type) {
    		case nil, *CommentGroup, *Comment:
    			return false
    		}
    		list = append(list, n)
    		return true
    	})
    
    	// Note: The current implementation assumes that Inspect traverses the
    	//       AST in depth-first and thus _source_ order. If AST traversal
    	//       does not follow source order, the sorting call below will be
    	//       required.
    	// slices.Sort(list, func(a, b Node) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/call.go

    		//
    		//    var tvar tsig = x
    		//
    		// like a call g(tvar) of the synthetic generic function g
    		//
    		//    func g[type_parameters_of_x](func_type_of_x)
    		//
    		var args []*operand
    		var params []*Var
    		var reverse bool
    		if T != nil && sig.tparams != nil {
    			if !versionErr && !check.allowVersion(instErrPos, go1_21) {
    				if inst != nil {
    					check.versionErrorf(instErrPos, go1_21, "partially instantiated function in assignment")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  8. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    "grid-rows",["gridTemplateRows"]]]),flexDirection:({addUtilities:i})=>{i({".flex-row":{"flex-direction":"row"},".flex-row-reverse":{"flex-direction":"row-reverse"},".flex-col":{"flex-direction":"column"},".flex-col-reverse":{"flex-direction":"column-reverse"}})},flexWrap:({addUtilities:i})=>{i({".flex-wrap":{"flex-wrap":"wrap"},".flex-wrap-reverse":{"flex-wrap":"wrap-reverse"},".flex-nowrap":{"flex-wrap":"nowrap"}})},placeContent:({addUtilities:i})=>{i({".place-content-center":{"place-content":"...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_lifting.cc

          !value_shape.hasStaticShape() || !rhs_shape.hasStaticShape()) {
        return {};
      }
    
      int64_t num_elements = value_shape.getNumElements();
      SmallVector<int64_t> new_shape;
      for (auto idx : llvm::reverse(llvm::seq<int32_t>(0, rhs_shape.getRank()))) {
        const int64_t rhs_dim = rhs_shape.getDimSize(idx);
        if (num_elements % rhs_dim != 0) {
          return {};
        }
        new_shape.push_back(rhs_dim);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ImmutableSortedMultiset.java

        ImmutableSortedMultiset<E> result = descendingMultiset;
        if (result == null) {
          return descendingMultiset =
              this.isEmpty()
                  ? emptyMultiset(Ordering.from(comparator()).reverse())
                  : new DescendingImmutableSortedMultiset<E>(this);
        }
        return result;
      }
    
      /**
       * {@inheritDoc}
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 35.5K bytes
    - Viewed (0)
Back to top