Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,389 for below (0.23 sec)

  1. src/runtime/mklockrank.go

      timer
    # Anything that can have write barriers can acquire WB.
    # Above WB, we can have write barriers.
    < WB
    # Below WB is the write barrier implementation.
    < wbufSpans;
    
    # Span allocator
    stackLarge,
      stackpool,
      wbufSpans
    # Above mheap is anything that can call the span allocator.
    < mheap;
    # Below mheap is the span allocator implementation.
    #
    # Specials: we're allowed to allocate a special while holding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. .github/workflows/scorecard.yml

        permissions:
          # Needed to upload the results to code-scanning dashboard.
          security-events: write
          # Needed to publish results and get a badge (see publish_results below).
          id-token: write
          # Uncomment the permissions below if installing in a private repository.
          # contents: read
          # actions: read
    
        steps:
          - name: "Checkout code"
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 04 17:53:21 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. src/internal/types/testdata/fixedbugs/issue49541.go

    type S[A, B any] struct {
    	f int
    }
    
    func (S[A, B]) m() {}
    
    // TODO(gri): with type-type inference enabled we should only report one error
    // below. See issue #50588.
    
    func _[A any](s S /* ERROR "not enough type arguments for type S: have 1, want 2" */ [A]) {
    	// we should see no follow-on errors below
    	s.f = 1
    	s.m()
    }
    
    // another test case from the issue
    
    func _() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:50:55 UTC 2023
    - 875 bytes
    - Viewed (0)
  4. src/image/color/ycbcr.go

    	// The bit twiddling below is equivalent to
    	//
    	// cb := (-11056*r1 - 21712*g1 + 32768*b1 + 257<<15) >> 16
    	// if cb < 0 {
    	//     cb = 0
    	// } else if cb > 0xff {
    	//     cb = ^int32(0)
    	// }
    	//
    	// but uses fewer branches and is faster.
    	// Note that the uint8 type conversion in the return
    	// statement will convert ^int32(0) to 0xff.
    	// The code below to compute cr uses a similar pattern.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  5. test/typeparam/boundmethod.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This test illustrates how a type bound method (String below) can be implemented
    // either by a concrete type (myint below) or an instantiated generic type
    // (StringInt[myint] below).
    
    package main
    
    import (
    	"fmt"
    	"reflect"
    	"strconv"
    )
    
    type myint int
    
    //go:noinline
    func (m myint) String() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 25 14:29:30 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/passes/verify_input_dialect_to_executor_pass_test.mlir

    }
    
    // -----
    
    func.func @_func(%arg0: tensor<i32>) -> tensor<i32> {
      func.return %arg0 : tensor<i32>
    }
    
    func.func @testClusterFuncOpFails(%arg0: tensor<i32>) -> tensor<i32> {
       // expected-error@below {{failed TF functional to executor validation, op tf_device.cluster_func is not allowed}}
      %cluster = "tf_device.cluster_func"(%arg0) {func = @_func} : (tensor<i32>) -> tensor<i32>
     func.return %cluster : tensor<i32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 30 22:07:53 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. samples/bookinfo/src/productpage/templates/index.html

            <h3 class="text-2xl">Hello! This is a simple bookstore application consisting of three services as shown below
            </h3>
            {% autoescape false %}
            {{ serviceTable }}
            {% endautoescape %}
            <p>
                Click on one of the links below to auto generate a request to the backend as a real user or a tester
            </p>
            <ul>
                <li>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. ci/official/requirements_updater/README.md

    for an example.
    
    See
    [this commit](https://github.com/tensorflow/tensorflow/commit/5f7f05a80aac9b01325a78ec3fcff0dbedb1cc23)
    as a rough example of the steps below.
    
    All the files referenced below are located in the same directory as this README,
    unless indicated otherwise.
    
    1) Add the new version to the `VERSIONS` variable inside
       `tensorflow/tools/toolchains/python/python_repo.bzl`. \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 02:14:00 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/ConnectorServicesTest.groovy

            then:
            connectorOne != connectorTwo
    
            //below is necessary for some of the thread safety measures we took in the internal implementation
            //it is covered in integrations tests as well, but is not immediately obvious why the concurrent integ test fails hence below assertions
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/TestStringSortedMapGenerator.java

        implements TestSortedMapGenerator<String, String> {
      @Override
      public Entry<String, String> belowSamplesLesser() {
        return Helpers.mapEntry("!! a", "below view");
      }
    
      @Override
      public Entry<String, String> belowSamplesGreater() {
        return Helpers.mapEntry("!! b", "below view");
      }
    
      @Override
      public Entry<String, String> aboveSamplesLesser() {
        return Helpers.mapEntry("~~ a", "above view");
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top