Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,121 for below (0.04 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/codeql-analysis.yml

      push:
        branches: [master]
      pull_request:
        # The branches below must be a subset of the branches above
        branches: [master]
      schedule:
        - cron: '0 11 * * 4'
    
    jobs:
      analyze:
        name: Analyze
        runs-on: ubuntu-latest
    
        strategy:
          fail-fast: false
          matrix:
            # Override automatic language detection by changing the below list
    Registered: Wed Jun 12 08:29:43 UTC 2024
    - Last Modified: Fri Oct 02 13:24:14 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  3. helm/minio/templates/NOTES.txt

    MinIO can be accessed via port {{ .Values.service.port }} on the following DNS name from within your cluster:
    {{ template "minio.fullname" . }}.{{ .Release.Namespace }}.svc.cluster.local
    
    To access MinIO from localhost, run the below commands:
    
      1. export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "release={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}")
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  4. .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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. test/fixedbugs/issue15281.go

    			println("BUG: f1: after alloc: expected delta at least 9MB, got: ", delta)
    			println(x)
    		}
    		x = nil
    		if delta := inuse() - start; delta > 1<<20 {
    			println("BUG: f1: after alloc: expected delta below 1MB, got: ", delta)
    			println(x)
    		}
    	}
    }
    
    func f2(c chan []byte, start int64) {
    	for {
    		x, ok := <-c
    		if !ok {
    			break
    		}
    		if delta := inuse() - start; delta < 9<<20 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 17 09:45:44 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  10. 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)
Back to top