Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 585 for respective (0.18 sec)

  1. src/cmd/compile/internal/types2/typexpr.go

    		check.objDecl(obj, def)
    		typ = obj.Type() // type must have been assigned by Checker.objDecl
    	}
    	assert(typ != nil)
    
    	// The object may have been dot-imported.
    	// If so, mark the respective package as used.
    	// (This code is only needed for dot-imports. Without them,
    	// we only have to mark variables, see *Var case below).
    	if pkgName := check.dotImportMap[dotImportKey{scope, obj.Name()}]; pkgName != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. src/strconv/atof.go

    // ParseFloat returns f = ±Inf, err.Err = ErrRange.
    //
    // ParseFloat recognizes the string "NaN", and the (possibly signed) strings "Inf" and "Infinity"
    // as their respective special floating point values. It ignores case when matching.
    //
    // [floating-point literals]: https://go.dev/ref/spec#Floating-point_literals
    func ParseFloat(s string, bitSize int) (float64, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 18:50:50 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope.go

    	cache       *simpleCache
    	apiServerID string
    }
    
    // NewEnvelopeTransformer returns a transformer which implements a KEK-DEK based envelope encryption scheme.
    // It uses envelopeService to encrypt and decrypt DEKs. Respective DEKs (in encrypted form) are prepended to
    // the data items they encrypt.
    func NewEnvelopeTransformer(envelopeService kmsservice.Service, providerName string, stateFunc StateFunc, apiServerID string) value.Transformer {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 00:23:50 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

          const Iterator* typed_other =
              CheckedDowncastToActualType<const Iterator>(&other);
          // We must report iterators equal if they both point beyond their
          // respective ranges. That can happen in a variety of fashions,
          // so we have to consult AtEnd().
          return (AtEnd() && typed_other->AtEnd()) ||
             (
              current1_ == typed_other->current1_ &&
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 187.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/gen_test.go

    // someMatchesAllResourceRequests and
    // someMatchesAllNonResourceRequests parameters indicate whether any
    // rule in the collection matches all of the relevant sort of request;
    // these imply the respective returned slice of counterexamples will
    // be empty.  The matchAllResourceRequests and
    // matchAllNonResourceRequests parameters indicate whether the
    // generated rule should match all of the relevant sort.  The
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  6. doc/go1.17_spec.html

    <p>
    The iteration values are assigned to the respective
    iteration variables as in an <a href="#Assignments">assignment statement</a>.
    </p>
    
    <p>
    The iteration variables may be declared by the "range" clause using a form of
    <a href="#Short_variable_declarations">short variable declaration</a>
    (<code>:=</code>).
    In this case their types are set to the types of the respective iteration values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/internal/language/language.go

    	return t.str != "" && t.pVariant == 0
    }
    
    // RemakeString is used to update t.str in case lang, script or region changed.
    // It is assumed that pExt and pVariant still point to the start of the
    // respective parts.
    func (t *Tag) RemakeString() {
    	if t.str == "" {
    		return
    	}
    	extra := t.str[t.pVariant:]
    	if t.pVariant > 0 {
    		extra = extra[1:]
    	}
    	if t.equalTags(Und) && strings.HasPrefix(extra, "x-") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  8. manifests/charts/istiod-remote/values.yaml

        meshNetworks: {}
        # Use the user-specified, secret volume mounted key and certs for Pilot and workloads.
        mountMtlsCerts: false
        multiCluster:
          # Set to true to connect two kubernetes clusters via their respective
          # ingressgateway services when pods in each cluster cannot directly
          # talk to one another. All clusters should be using Istio mTLS and must
          # have a shared root CA for this model to work.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/scanner_test.go

    	for _, test := range []struct {
    		src, err  string
    		line, col uint // 0-based
    	}{
    		// Note: Positions for lexical errors are the earliest position
    		// where the error is apparent, not the beginning of the respective
    		// token.
    
    		// rune-level errors
    		{"fo\x00o", "invalid NUL character", 0, 2},
    		{"foo\n\ufeff bar", "invalid BOM in the middle of the file", 1, 0},
    		{"foo\n\n\xff    ", "invalid UTF-8 encoding", 2, 0},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/walk/range.go

    }
    
    // rangeConvert returns src, converted to dst if necessary. If a
    // conversion is necessary, then typeWord and srcRType are copied to
    // their respective ConvExpr fields.
    func rangeConvert(nrange *ir.RangeStmt, dst *types.Type, src, typeWord, srcRType ir.Node) ir.Node {
    	src = typecheck.Expr(src)
    	if dst.Kind() == types.TBLANK || types.Identical(dst, src.Type()) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:33 UTC 2023
    - 17.6K bytes
    - Viewed (0)
Back to top