Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 157 for Element (0.25 sec)

  1. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            !collection.explicit
        }
    
        def "elements provider tracks changes to content"() {
            given:
            def file1 = new File("1")
            def file2 = new File("2")
            def callable = Mock(Callable)
    
            collection.from(callable)
            def elements = collection.elements
    
            when:
            def f1 = elements.get()
    
            then:
            f1*.asFile == [file1, file2]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    //
    // OneHot with on=1 off=0 axis=-1, where `index` is a single element tensor,
    // creates a tensor of size depth, and all values are 0, except for the element
    // at `index`, which is 1. Multiplying such a tensor with a 2D filter esentially
    // returns the single column in filter as a 1D tensor. If the input has multiple
    // elements, repeat this for every entry, forming the higher dimensions in the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	}
    	st.advance(1)
    
    	t := st.demangleType(isCast)
    
    	arr := &ArrayType{Dimension: dim, Element: t}
    
    	// Qualifiers on the element of an array type go on the whole
    	// array type.
    	if q, ok := arr.Element.(*TypeWithQualifiers); ok {
    		return &TypeWithQualifiers{Base: &ArrayType{Dimension: dim, Element: q.Base}, Qualifiers: q.Qualifiers}
    	}
    
    	return arr
    }
    
    // vectorType parses:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

                return true;
            }
            if (type.isArray()) {
                ClassNode element = type.getComponentType();
                boolean resolved = resolve(element, testModuleImports, testDefaultImports, testStaticInnerClasses);
                if (resolved) {
                    ClassNode cn = element.makeArray();
                    type.setRedirect(cn);
                }
                return resolved;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug.go

    // the function "f"; it is used when we are compiling without
    // optimization but the register ABI is enabled. For each reg param,
    // it constructs a 2-element location list: the first element holds
    // the input register, and the second element holds the stack location
    // of the param (the assumption being that when optimization is off,
    // each input param reg will be spilled in the prolog). In addition
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/fiat/p384_fiat64.go

    // The type p384MontgomeryDomainFieldElement is a field element in the Montgomery domain.
    //
    // Bounds: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]]
    type p384MontgomeryDomainFieldElement [6]uint64
    
    // The type p384NonMontgomeryDomainFieldElement is a field element NOT in the Montgomery domain.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 90.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

      }
    };
    
    // Lowers `SparseMatMulOp` to `MatMulOp`, ignoring the sparseness hints,
    // since we currently don't have an implementation that can use this
    // information. Adds appropriate casts where necessary to align element types
    // of operands and result for `MatMulOp`.
    class LowerSparseMatMulOp : public RewritePattern {
     public:
      explicit LowerSparseMatMulOp(MLIRContext *context)
          : RewritePattern(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    The `trusted-key` element works similarly to the <<sec:trusting-artifacts,trusted-artifact>> element:
    
    - `group`, the group of the artifact to trust
    - `name`, the name of the artifact to trust
    - `version`, the version of the artifact to trust
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  9. src/go/parser/parser.go

    }
    
    func (p *parser) parseValue() ast.Expr {
    	if p.trace {
    		defer un(trace(p, "Element"))
    	}
    
    	if p.tok == token.LBRACE {
    		return p.parseLiteralValue(nil)
    	}
    
    	x := p.parseExpr()
    
    	return x
    }
    
    func (p *parser) parseElement() ast.Expr {
    	if p.trace {
    		defer un(trace(p, "Element"))
    	}
    
    	x := p.parseValue()
    	if p.tok == token.COLON {
    		colon := p.pos
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

        value, = tuple(value)
        if value == TFRTypes.TF_TENSOR_SHAPE_LIST:
          # TODO(mdan): This is not entirely correct for multi-element slices.
          return {int}
        elif value in (TFRTypes.TENSOR_LIST, TFRTypes.TENSOR):
          # TODO(mdan): This is not entirely correct for multi-element slices.
          return {TFRTypes.TENSOR}
        else:
          return {value}
    
      def res_compare(self, ns, types_ns, node, left, right):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
Back to top