Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 204 for lineFor (0.32 sec)

  1. src/crypto/ecdsa/ecdsa_test.go

    	}
    
    	buf := bufio.NewReader(bzip2.NewReader(f))
    
    	lineNo := 1
    	var h hash.Hash
    	var msg []byte
    	var hashed []byte
    	var r, s *big.Int
    	pub := new(PublicKey)
    
    	for {
    		line, err := buf.ReadString('\n')
    		if len(line) == 0 {
    			if err == io.EOF {
    				break
    			}
    			t.Fatalf("error reading from input: %s", err)
    		}
    		lineNo++
    		// Need to remove \r\n from the end of the line.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:58 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/ops/nn_ops.cc

      Status status = op_ptr->Execute(temp_outputs, &num_retvals);
      *loss = temp_outputs[0];
      *backprop = temp_outputs[1];
      return status;
    }
    
    // Op: ReluGrad()
    // Summary: Computes rectified linear gradients for a Relu operation.
    //
    // Description:
    Status ReluGrad(AbstractContext* ctx, AbstractTensorHandle* const gradients,
                    AbstractTensorHandle* const features,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 10 19:11:36 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  3. test/fixedbugs/issue11656.go

    // windows doesn't work, because Windows exception handling
    // delivers signals based on the current PC, and that current PC
    // doesn't go into the Go runtime.
    
    // wasm does not work, because the linear memory is not executable.
    
    // This test doesn't work on gccgo/GoLLVM, because they will not find
    // any unwind information for the artificial function, and will not be
    // able to unwind past that point.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 700 bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/ast/inspector/typeof.go

    //
    //	                                                                GOGC=off
    //	- type switch					4.9-5.5ms	2.1ms
    //	- binary search over a sorted list of types	5.5-5.9ms	2.5ms
    //	- linear scan, frequency-ordered list		5.9-6.1ms	2.7ms
    //	- linear scan, unordered list			6.4ms		2.7ms
    //	- hash table					6.5ms		3.1ms
    //
    // A perfect hash seemed like overkill.
    //
    // The compiler's switch statement is the clear winner
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/kotlinDsl/androidSingleBuild/kotlin/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. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top