Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 266 for imprecise (0.51 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/facts/facts.go

    		//
    		// This is analogous to the pruning done by "deep"
    		// export data for types, but not as precise because
    		// we aren't careful about which structs or methods
    		// we rexport: it should be only those referenced
    		// from the API of s.pkg.
    		// TODO(adonovan): opt: be more precise. e.g.
    		// intersect with the set of objects computed by
    		// importMap(s.pkg.Imports()).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/networking/v1beta1/generated.proto

      // Incoming requests are matched against the host before the
      // IngressRuleValue. If the host is unspecified, the Ingress routes all
      // traffic based on the specified IngressRuleValue.
      //
      // host can be "precise" which is a domain name without the terminating dot of
      // a network host (e.g. "foo.bar.com") or "wildcard", which is a domain name
      // prefixed with a single wildcard label (e.g. "*.foo.com").
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    //  3. Inconsistent validation.  Because the usages are different, the validation rules are different by usage, which makes it hard for users to predict what will happen.
    //  4. The fields are both imprecise and overly precise.  Kind is not a precise mapping to a URL. This can produce ambiguity
    //     during interpretation and require a REST mapping.  In most cases, the dependency is on the group,resource tuple
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. src/os/file_posix.go

    // file, similar to the Unix utime() or utimes() functions.
    // A zero [time.Time] value will leave the corresponding file time unchanged.
    //
    // The underlying filesystem may truncate or round the values to a
    // less precise time unit.
    // If there is an error, it will be of type [*PathError].
    func Chtimes(name string, atime time.Time, mtime time.Time) error {
    	var utimes [2]syscall.Timespec
    	set := func(i int, t time.Time) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/networking/v1beta1/types_swagger_doc_generated.go

    :443 for https.\nBoth these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue.\n\nhost can be \"precise\" which is a domain name without the terminating dot of a network host (e.g. \"foo.bar.com\") or \"wildcard\", which is a domain name prefixed with a single wildcard label (e.g. \"*.foo.com\"). The wildcard character '*' must appear by itself as the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/networking/v1beta1/generated.proto

      // Incoming requests are matched against the host before the
      // IngressRuleValue. If the host is unspecified, the Ingress routes all
      // traffic based on the specified IngressRuleValue.
      //
      // host can be "precise" which is a domain name without the terminating dot of
      // a network host (e.g. "foo.bar.com") or "wildcard", which is a domain name
      // prefixed with a single wildcard label (e.g. "*.foo.com").
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. src/math/big/decimal.go

    // license that can be found in the LICENSE file.
    
    // This file implements multi-precision decimal numbers.
    // The implementation is for float to decimal conversion only;
    // not general purpose use.
    // The only operations are precise conversion from binary to
    // decimal and rounding.
    //
    // The key observation and some code (shr) is borrowed from
    // strconv/decimal.go: conversion of binary fractional values can be done
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 22:45:29 UTC 2020
    - 6.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ImmutableSet.java

       * is unnecessary; for example, {@code copyOf(copyOf(anArrayList))} will copy the data only once.
       * This reduces the expense of habitually making defensive copies at API boundaries. However, the
       * precise conditions for skipping the copy operation are undefined.
       *
       * @throws NullPointerException if any of {@code elements} is null
       * @since 7.0 (source-compatible since 2.0)
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_server_journal_test.go

    		args        nodeLogQuery
    		wantLinux   []string
    		wantWindows []string
    		wantOtherOS []string
    	}{
    		{
    			args:        nodeLogQuery{},
    			wantLinux:   []string{"--utc", "--no-pager", "--output=short-precise"},
    			wantWindows: []string{"-NonInteractive", "-ExecutionPolicy", "Bypass", "-Command", "Get-WinEvent -FilterHashtable @{LogName='Application'} | Sort-Object TimeCreated | Format-Table -AutoSize -Wrap"},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 10 22:27:44 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unreachable/unreachable.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package unreachable
    
    // TODO(adonovan): use the new cfg package, which is more precise.
    
    import (
    	_ "embed"
    	"go/ast"
    	"go/token"
    	"log"
    
    	"golang.org/x/tools/go/analysis"
    	"golang.org/x/tools/go/analysis/passes/inspect"
    	"golang.org/x/tools/go/analysis/passes/internal/analysisutil"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 7.6K bytes
    - Viewed (0)
Back to top