Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 193 for lineFor (0.17 sec)

  1. platforms/documentation/docs/src/samples/templates/java-android-application/app/src/main/res/drawable-v24/ic_launcher_foreground.xml

                <gradient
                    android:endX="78.5885"
                    android:endY="90.9159"
                    android:startX="48.7653"
                    android:startY="61.0927"
                    android:type="linear">
                    <item
                        android:color="#44000000"
                        android:offset="0.0" />
                    <item
                        android:color="#00000000"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/cc_ops_test.cc

    #include "tensorflow/core/framework/tensor_testutil.h"
    #include "tensorflow/core/lib/core/status_test_util.h"
    
    namespace tensorflow {
    namespace ops {
    namespace {
    
    Output Linear(const Scope& scope, Input x, Input w, Input b) {
      auto cop_scopes = scope.GetCompositeOpScopes("linear");
      auto m = MatMul(cop_scopes.child, x, w);
      return BiasAdd(cop_scopes.last, m, b);
    }
    
    void GetColocationConstraints(const Output& tensor,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/parse.go

    }
    
    func (p *parseState) addBlock(c blockBuilder) {
    	p.trimStack(p.lineDepth + 1)
    	p.stack = append(p.stack, openBlock{})
    	ob := &p.stack[len(p.stack)-1]
    	ob.builder = c
    	ob.pos.StartLine = p.lineno
    	ob.pos.EndLine = p.lineno
    }
    
    func (p *parseState) doneBlock(b Block) {
    	p.trimStack(p.lineDepth + 1)
    	ob := &p.stack[len(p.stack)-1]
    	ob.inner = append(ob.inner, b)
    }
    
    func (p *parseState) para() *paraBuilder {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/templates/java-android-application/src/main/res/drawable-v24/ic_launcher_foreground.xml

                <gradient
                    android:endX="78.5885"
                    android:endY="90.9159"
                    android:startX="48.7653"
                    android:startY="61.0927"
                    android:type="linear">
                    <item
                        android:color="#44000000"
                        android:offset="0.0" />
                    <item
                        android:color="#00000000"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/kotlinDsl/androidBuild/kotlin/app/src/main/res/drawable-v24/ic_launcher_foreground.xml

                <gradient
                    android:endX="78.5885"
                    android:endY="90.9159"
                    android:startX="48.7653"
                    android:startY="61.0927"
                    android:type="linear">
                    <item
                        android:color="#44000000"
                        android:offset="0.0" />
                    <item
                        android:color="#00000000"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. src/cmd/link/internal/wasm/asm.go

    	ctxt.Out.WriteByte(0x00)            // no max
    	writeUleb128(ctxt.Out, numElements) // min
    
    	writeSecSize(ctxt, sizeOffset)
    }
    
    // writeMemorySec writes the section that declares linear memories. Currently one linear memory is being used.
    // Linear memory always starts at address zero. More memory can be requested with the GrowMemory instruction.
    func writeMemorySec(ctxt *ld.Link, ldr *loader.Loader) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/profile/legacy_java_profile.go

    			continue
    		}
    		var lineFunc, lineFile string
    		var lineNo int64
    
    		if fileLine := javaLocationFileLineRx.FindStringSubmatch(jloc[2]); len(fileLine) == 4 {
    			// Found a line of the form: "function (file:line)"
    			lineFunc, lineFile = fileLine[1], fileLine[2]
    			if n, err := strconv.ParseInt(fileLine[3], 10, 64); err == nil && n > 0 {
    				lineNo = n
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/example_test.go

    	fmt.Println("Defs and Uses of each named object:")
    	usesByObj := make(map[types2.Object][]string)
    	for id, obj := range info.Uses {
    		posn := id.Pos()
    		lineCol := fmt.Sprintf("%d:%d", posn.Line(), posn.Col())
    		usesByObj[obj] = append(usesByObj[obj], lineCol)
    	}
    	var items []string
    	for obj, uses := range usesByObj {
    		sort.Strings(uses)
    		item := fmt.Sprintf("%s:\n  defined at %s\n  used at %s",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 28 17:58:07 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/ChildMapFactory.java

    import java.util.ArrayList;
    import java.util.Collection;
    import java.util.Comparator;
    import java.util.List;
    
    public class ChildMapFactory {
        /**
         * If a node has fewer children, we use a linear search for the child.
         * We use this limit since {@link VfsRelativePath#compareToFirstSegment(String, CaseSensitivity)}
         * is about twice as slow as {@link VfsRelativePath#hasPrefix(String, CaseSensitivity)},
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. docs/bucket/versioning/versioning-tests.sh

    #!/usr/bin/env bash
    
    if [ -n "$TEST_DEBUG" ]; then
    	set -x
    fi
    
    trap 'catch $LINENO' ERR
    
    # shellcheck disable=SC2120
    catch() {
    	if [ $# -ne 0 ]; then
    		echo "error on line $1"
    		echo "server logs ========="
    		cat "/tmp/sitea_1.log"
    		echo "==========================="
    		cat "/tmp/sitea_2.log"
    	fi
    
    	echo "Cleaning up instances of MinIO"
    	pkill minio
    	pkill -9 minio
    	rm -rf /tmp/multisitea
    }
    
    catch
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top