Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for l1 (0.04 sec)

  1. CONTRIBUTING.md

    *   [Python license example](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/python/ops/nn.py#L1)
    *   [Java license example](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/java/src/main/java/org/tensorflow/Graph.java#L1)
    *   [Go license example](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/go/operation.go#L1)
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Wed Oct 23 06:20:12 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  2. src/bytes/bytes.go

    	// limit (8KB), we stop growing the source string once the limit
    	// is reached and keep reusing the same source string - that
    	// should therefore be always resident in the L1 cache - until we
    	// have completed the construction of the result.
    	// This yields significant speedups (up to +100%) in cases where
    	// the result length is large (roughly, over L2 cache size).
    	const chunkLimit = 8 * 1024
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Sep 03 20:55:15 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  3. manifests/charts/base/files/crd-all.gen.yaml

                    - name
                    x-kubernetes-list-type: map
                    x-kubernetes-validations:
                    - message: port number cannot be duplicated
                      rule: self.all(l1, self.exists_one(l2, l1.number == l2.number))
                  resolution:
                    description: |-
                      Service resolution mode for the hosts.
    
                      Valid Options: NONE, STATIC, DNS, DNS_ROUND_ROBIN
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Nov 01 16:23:52 UTC 2024
    - 805K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    For instance, this example:
    </p>
    
    <pre>
    if n%2 == 1 {
    	goto L1
    }
    for n &gt; 0 {
    	f()
    	n--
    L1:
    	f()
    	n--
    }
    </pre>
    
    <p>
    is erroneous because the label <code>L1</code> is inside
    the "for" statement's block but the <code>goto</code> is not.
    </p>
    
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Oct 10 18:25:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  5. doc/go_spec.html

    For instance, this example:
    </p>
    
    <pre>
    if n%2 == 1 {
    	goto L1
    }
    for n &gt; 0 {
    	f()
    	n--
    L1:
    	f()
    	n--
    }
    </pre>
    
    <p>
    is erroneous because the label <code>L1</code> is inside
    the "for" statement's block but the <code>goto</code> is not.
    </p>
    
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Oct 02 00:58:01 UTC 2024
    - 282.5K bytes
    - Viewed (0)
Back to top