Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 424 for distinguish (0.45 sec)

  1. src/vendor/golang.org/x/text/unicode/norm/forminfo.go

    	nextMain:      nextComposed,
    }, {
    	form:          NFKD,
    	composing:     false,
    	compatibility: true,
    	info:          lookupInfoNFKC,
    	nextMain:      nextDecomposed,
    }}
    
    // We do not distinguish between boundaries for NFC, NFD, etc. to avoid
    // unexpected behavior for the user.  For example, in NFD, there is a boundary
    // after 'a'.  However, 'a' might combine with modifiers, so from the application's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admission/v1/types.go

    }
    
    // AdmissionRequest describes the admission.Attributes for the admission request.
    type AdmissionRequest struct {
    	// UID is an identifier for the individual request/response. It allows us to distinguish instances of requests which are
    	// otherwise identical (parallel requests, requests when earlier requests did not modify etc)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/extensions/v1beta1/types_swagger_doc_generated.go

    	"revisionHistoryLimit": "The number of old history to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.",
    }
    
    func (DaemonSetSpec) SwaggerDoc() map[string]string {
    	return map_DaemonSetSpec
    }
    
    var map_DaemonSetStatus = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 42.5K bytes
    - Viewed (0)
  4. src/net/http/pprof/pprof_test.go

    			mu1.Unlock()
    			mu2.Unlock()
    		}
    		if runtime.Compiler == "gccgo" {
    			runtime.Gosched()
    		}
    	}
    }
    
    // mutexHog2 is almost identical to mutexHog but we keep them separate
    // in order to distinguish them with function names in the stack trace.
    // We make them slightly different, using Sink, because otherwise
    // gccgo -c opt will merge them.
    func mutexHog2(mu1, mu2 *sync.Mutex, start time.Time, dt time.Duration) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:52:28 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/debug/debug.cc

               absl::StrCat(absl::Hex(pass_counter_++, absl::kZeroPad8)));
        }
      }
    
     private:
      // Dumps the given op. `name` is used as part of the filename to help
      // distinguish dumps at different passes.
      void Dump(absl::string_view name, mlir::Operation* op,
                std::string prefix = "") {
        static constexpr char kFiletypeSuffix[] = "mlir";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 02:44:52 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    // Finally, you are free to instantiate the pattern with the types you
    // want.  If you put the above code in a header file, you can #include
    // it in multiple C++ source files and instantiate it multiple times.
    //
    // To distinguish different instances of the pattern, the first
    // argument to the INSTANTIATE_* macro is a prefix that will be added
    // to the actual test case name.  Remember to pick unique prefixes for
    // different instances.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/discovery/v1/generated.proto

      // conditions contains information about the current status of the endpoint.
      optional EndpointConditions conditions = 2;
    
      // hostname of this endpoint. This field may be used by consumers of
      // endpoints to distinguish endpoints from each other (e.g. in DNS names).
      // Multiple endpoints which use the same hostname should be considered
      // fungible (e.g. multiple A values in DNS). Must be lowercase and pass DNS
      // Label (RFC 1123) validation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/discovery/v1beta1/types.go

    	Conditions EndpointConditions `json:"conditions,omitempty" protobuf:"bytes,2,opt,name=conditions"`
    
    	// hostname of this endpoint. This field may be used by consumers of
    	// endpoints to distinguish endpoints from each other (e.g. in DNS names).
    	// Multiple endpoints which use the same hostname should be considered
    	// fungible (e.g. multiple A values in DNS). Must be lowercase and pass DNS
    	// Label (RFC 1123) validation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:26:19 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  9. src/internal/diff/diff.go

    	// Count the number of times each string appears in a and b.
    	// We only care about 0, 1, many, counted as 0, -1, -2
    	// for the x side and 0, -4, -8 for the y side.
    	// Using negative numbers now lets us distinguish positive line numbers later.
    	m := make(map[string]int)
    	for _, s := range x {
    		if c := m[s]; c > -2 {
    			m[s] = c - 1
    		}
    	}
    	for _, s := range y {
    		if c := m[s]; c > -8 {
    			m[s] = c - 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 14:13:04 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  10. pkg/apis/apps/types.go

    	// Defaults to 0 (pod will be considered available as soon as it is ready)
    	// +optional
    	MinReadySeconds int32
    
    	// The number of old ReplicaSets to retain to allow rollback.
    	// This is a pointer to distinguish between explicit zero and not specified.
    	// This is set to the max value of int32 (i.e. 2147483647) by default, which means
    	// "retaining all old ReplicaSets".
    	// +optional
    	RevisionHistoryLimit *int32
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:09:29 UTC 2023
    - 36.4K bytes
    - Viewed (0)
Back to top