Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 923 for read1 (0.07 sec)

  1. src/cmd/go/internal/modindex/read.go

    	return i
    }
    
    // string reads the next string.
    func (r *reader) string() string {
    	return r.d.stringTableAt(r.int())
    }
    
    // bool reads the next bool.
    func (r *reader) bool() bool {
    	return r.int() != 0
    }
    
    // tokpos reads the next token.Position.
    func (r *reader) tokpos() token.Position {
    	return token.Position{
    		Filename: r.string(),
    		Offset:   r.int(),
    		Line:     r.int(),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  2. src/encoding/xml/read.go

    }
    
    // Decode works like [Unmarshal], except it reads the decoder
    // stream to find the start element.
    func (d *Decoder) Decode(v any) error {
    	return d.DecodeElement(v, nil)
    }
    
    // DecodeElement works like [Unmarshal] except that it takes
    // a pointer to the start XML element to decode into v.
    // It is useful when a client reads some raw XML tokens itself
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/ready.go

    type status int
    
    const (
    	Pending status = iota
    	Ready
    	Stopped
    )
    
    // ready is a three state condition variable that blocks until is Ready if is not Stopped.
    // Its initial state is Pending and its state machine diagram is as follow.
    //
    // Pending <------> Ready -----> Stopped
    //
    //	|                           ^
    //	└---------------------------┘
    type ready struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 13:32:11 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. src/os/exec/read3.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build ignore
    
    // This is a test program that verifies that it can read from
    // descriptor 3 and that no other descriptors are open.
    // This is not done via TestHelperProcess and GO_EXEC_TEST_PID
    // because we want to ensure that this program does not use cgo,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 26 14:49:07 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    Alan Donovan <******@****.***> 1714508407 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inject/hello-mtls-not-ready.yaml.injected

            ports:
            - containerPort: 15090
              name: http-envoy-prom
              protocol: TCP
            readinessProbe:
              failureThreshold: 4
              httpGet:
                path: /healthz/ready
                port: 15021
              periodSeconds: 15
              timeoutSeconds: 3
            resources:
              limits:
                cpu: "2"
                memory: 1Gi
              requests:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inject/hello-mtls-not-ready.yaml

    Shriram Rajagopalan <******@****.***> 1572405935 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 30 03:25:35 UTC 2019
    - 506 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

        // CHECK: "tf.ReadVariableOp"
        // CHECK-SAME: (tensor<!tf_type.resource<tensor<4xf32>>>) -> tensor<4xf32>
        %read = "tf.ReadVariableOp"(%ri) : (tensor<*x!tf_type.resource>) -> tensor<*xf32>
        // CHECK: "tf.ReadVariableOp"
        // CHECK-SAME: (tensor<!tf_type.resource<tensor<*xf32>>>) -> tensor<*xf32>
        %read1 = "tf.ReadVariableOp"(%arg2) : (tensor<!tf_type.resource<tensor<*xf32>>>) -> tensor<*xf32>
        // CHECK: return
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  9. manifests/charts/istio-cni/templates/daemonset.yaml

                # But we don't need _everything_ in `privileged`, so drop+readd capabilities based on feature.
                # privileged is redundant with CAP_SYS_ADMIN
                # since it's redundant, hardcode it to `true`, then manually drop ALL + readd granular
                # capabilities we actually require
                capabilities:
                  drop:
                  - ALL
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tpu-resource-read-for-write.mlir

    // RUN: tf-opt -tf-tpu-resource-read-for-write %s | FileCheck %s --dump-input=always
    
    // CHECK-LABEL: func @write_only_resource
    // CHECK-SAME: ([[ARG0:%.*]]: tensor<i32>, [[ARG1:%.*]]: tensor<f32>, [[ARG2:%.*]]: tensor<*x!tf_type.resource<tensor<i32>>>)
    func.func @write_only_resource(%arg0: tensor<i32>, %arg1: tensor<f32>, %arg2: tensor<*x!tf_type.resource<tensor<i32>>>) {
      // CHECK-NEXT: [[READ:%.*]] = "tf.ReadVariableOp"([[ARG2]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 16:54:40 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top