Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 220 for 119s (0.04 sec)

  1. samples/jwt-server/src/Dockerfile

    #   See the License for the specific language governing permissions and
    #   limitations under the License.
    
    # build a jwt-server binary using the golang container
    FROM golang:1.19 as builder
    WORKDIR /go/src/istio.io/jwt-server/
    COPY . .
    RUN CGO_ENABLED=0 GOOS=linux go build -o jwt-server main.go
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 04 03:06:26 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_goline_old.txt

    go 1.17
    
    require example.com/b v1.0.1
    
    -- a101/a.go --
    package a
    
    -- b100/go.mod --
    module example.com/b
    go 1.18
    
    -- b100/b.go --
    package b
    
    -- b101/go.mod --
    module example.com/b
    go 1.19
    
    -- b101/b.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 17:51:28 UTC 2023
    - 1011 bytes
    - Viewed (0)
  3. test/fixedbugs/bug273.go

    // https://golang.org/issue/589
    
    package main
    
    import "unsafe"
    
    var bug = false
    
    var minus1 = -1
    var five = 5
    var big int64 = 10 | 1<<46
    
    type block [1 << 19]byte
    
    var g1 []block
    
    func shouldfail(f func(), desc string) {
    	defer func() { recover() }()
    	f()
    	if !bug {
    		println("BUG")
    		bug = true
    	}
    	println("didn't crash: ", desc)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 26 14:06:28 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/coordination/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *LeaseList) APILifecycleIntroduced() (major, minor int) {
    	return 1, 19
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. samples/ambient-argo/README.md

    writing, the stable tag or channel is using Istio 1.18.5, while the rapid channel is using Istio 1.19.3.  Under the channel model, these versions would be updated in-place as new patch releases are produced for various bugs or security concerns.  Then, when Istio 1.20.0 ships (ETA late November 2023), the rapid channel will be moved to point to version 1.20.0, while the stable version will be moved to point to 1.19.x (where x is the lates patch result at that time).  Because Istio releases are supported...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  6. src/os/exec/lp_plan9.go

    // directly and the path is not consulted.
    // On success, the result is an absolute path.
    //
    // In older versions of Go, LookPath could return a path relative to the current directory.
    // As of Go 1.19, LookPath will instead return that path along with an error satisfying
    // [errors.Is](err, [ErrDot]). See the package documentation for more details.
    func LookPath(file string) (string, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. test/ken/strvar.go

    	s3.d.a = 17;
    	s3.d.b = 19;
    	s3.d.c = 23;
    	s3.d.d = 29;
    
    	if(s3.d.c != 23) { panic(s3.d.c); }
    
    	x =	s3.a +
    		s3.b +
    		s3.c +
    		s3.d.a +
    		s3.d.b +
    		s3.d.c +
    		s3.d.d;
    
    	if(x != 119) { panic(x); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 1.1K bytes
    - Viewed (0)
  8. okhttp-idna-mapping-table/src/main/kotlin/okhttp3/internal/idn/MappedRange.kt

      val rangeStart: Int
    
      data class Constant(
        override val rangeStart: Int,
        val type: Int,
      ) : MappedRange {
        val b1: Int
          get() =
            when (type) {
              TYPE_IGNORED -> 119
              TYPE_VALID -> 120
              TYPE_DISALLOWED -> 121
              else -> error("unexpected type: $type")
            }
      }
    
      data class Inline1(
        override val rangeStart: Int,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/events/v1/types.go

    import (
    	corev1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // +genclient
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.19
    
    // Event is a report of an event somewhere in the cluster. It generally denotes some state change in the system.
    // Events have a limited retention time and triggers and messages may evolve
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/authorization/v1beta1/types.go

    // +genclient:nonNamespaced
    // +genclient:onlyVerbs=create
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.2
    // +k8s:prerelease-lifecycle-gen:deprecated=1.19
    // +k8s:prerelease-lifecycle-gen:replacement=authorization.k8s.io,v1,SubjectAccessReview
    
    // SubjectAccessReview checks whether or not a user or group can perform an action.
    type SubjectAccessReview struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 15.1K bytes
    - Viewed (0)
Back to top