Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 153 for Element (0.13 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. 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)
  7. 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)
  8. 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)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      // moment its destructor finishes) will be output in XML as attributes of
      // the <testcase> element.  Properties recorded from fixture's
      // SetUpTestCase or TearDownTestCase are logged as attributes of the
      // corresponding <testsuite> element.  Calls to RecordProperty made in the
      // global context (before or after invocation of RUN_ALL_TESTS and from
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/test/test.go

    	    the package list (if present) must appear before this flag.
    
    	-c
    	    Compile the test binary to pkg.test in the current directory but do not run it
    	    (where pkg is the last element of the package's import path).
    	    The file name or target directory can be changed with the -o flag.
    
    	-exec xprog
    	    Run the test binary using xprog. The behavior is the same as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top