Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 119 for tracking (0.22 sec)

  1. src/time/format.go

    	stdNumColonSecondsTZ                           // "-07:00:00"
    	stdFracSecond0                                 // ".0", ".00", ... , trailing zeros included
    	stdFracSecond9                                 // ".9", ".99", ..., trailing zeros omitted
    
    	stdNeedDate       = 1 << 8             // need month, day, year
    	stdNeedClock      = 2 << 8             // need hour, minute, second
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/compare/testdata/configdump.json

                                  "@type": "type.googleapis.com/envoy.extensions.filters.http.router.v3.Router"
                                }
                              }
                            ],
                            "tracing": {
                              "client_sampling": {
                                "value": 100
                              },
                              "random_sampling": {
                                "value": 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 52K bytes
    - Viewed (0)
  3. src/go/printer/testdata/parser.go

    // The parser structure holds the parser's internal state.
    type parser struct {
    	file *token.File
    	scanner.ErrorVector
    	scanner scanner.Scanner
    
    	// Tracing/debugging
    	mode   uint // parsing mode
    	trace  bool // == (mode & Trace != 0)
    	indent uint // indentation used for tracing output
    
    	// Comments
    	comments    []*ast.CommentGroup
    	leadComment *ast.CommentGroup // last lead comment
    	lineComment *ast.CommentGroup // last line comment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  4. cmd/object-api-listobjects_test.go

    			Objects: []ObjectInfo{
    				{Name: "temporary/0/"},
    			},
    		},
    		// ListObjectsResult-34:
    		//    * Listing with marker > last object should return empty
    		//    * Listing an object with a trailing slash and '/' delimiter
    		34: {
    			IsTruncated: false,
    			Objects:     []ObjectInfo{},
    		},
    		// ListObjectsResult-35 list with custom uncommon delimiter
    		35: {
    			IsTruncated: false,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  5. src/crypto/x509/x509.go

    			return nil, errors.New("x509: failed to parse public key (use ParsePKCS1PublicKey instead for this key format)")
    		}
    		return nil, err
    	} else if len(rest) != 0 {
    		return nil, errors.New("x509: trailing data after ASN.1 of public-key")
    	}
    	return parsePublicKey(&pki)
    }
    
    func marshalPublicKey(pub any) (publicKeyBytes []byte, publicKeyAlgorithm pkix.AlgorithmIdentifier, err error) {
    	switch pub := pub.(type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  6. src/net/netip/netip_test.go

    		"fe80:tail:scal:e::",
    		// IPv6 with a zone delimiter but no zone.
    		"fe80::1%",
    		// IPv6 (without ellipsis) with too many fields for trailing embedded IPv4.
    		"ffff:ffff:ffff:ffff:ffff:ffff:ffff:192.168.140.255",
    		// IPv6 (with ellipsis) with too many fields for trailing embedded IPv4.
    		"ffff::ffff:ffff:ffff:ffff:ffff:ffff:192.168.140.255",
    		// IPv6 with invalid embedded IPv4.
    		"::ffff:192.168.140.bad",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  7. src/cmd/dist/build.go

    	}
    	return "gcc"
    }
    
    // rmworkdir deletes the work directory.
    func rmworkdir() {
    	if vflag > 1 {
    		errprintf("rm -rf %s\n", workdir)
    	}
    	xremoveall(workdir)
    }
    
    // Remove trailing spaces.
    func chomp(s string) string {
    	return strings.TrimRight(s, " \t\r\n")
    }
    
    // findgoversion determines the Go version to use in the version string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	"k8s.io/apiserver/pkg/storage/cacher/metrics"
    	etcdfeature "k8s.io/apiserver/pkg/storage/feature"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/client-go/tools/cache"
    	"k8s.io/component-base/tracing"
    	"k8s.io/klog/v2"
    	"k8s.io/utils/clock"
    	"k8s.io/utils/ptr"
    )
    
    var (
    	emptyFunc = func(bool) {}
    )
    
    const (
    	// storageWatchListPageSize is the cacher's request chunk size of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

                padding='SAME',
                data_format='NHWC',
            )
            if has_bias:
              out = nn_ops.bias_add(out, self.bias)
            if has_batch_norm:
              # Fusing is supported for non-training case.
              out, _, _, _, _, _ = nn_ops.fused_batch_norm_v3(
                  out, scale, offset, mean, variance, is_training=False
              )
            if activation_fn is not None:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    		},
    		{
    			name:      "discovery url same as issuer url, with trailing slash",
    			issuerURL: "https://issuer-url",
    			in:        "https://issuer-url/",
    			want:      `issuer.discoveryURL: Invalid value: "https://issuer-url/": discoveryURL must be different from URL`,
    		},
    		{
    			name:      "discovery url same as issuer url, with multiple trailing slashes",
    			issuerURL: "https://issuer-url",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
Back to top