Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 131 for distinguish (0.33 sec)

  1. staging/src/k8s.io/api/resource/v1alpha2/generated.proto

      // ParametersRef references an arbitrary separate object that may hold
      // parameters that will be used by the driver when allocating a
      // resource that uses this class. A dynamic resource driver can
      // distinguish between parameters stored here and and those stored in
      // ResourceClaimSpec.
      // +optional
      optional ResourceClassParametersReference parametersRef = 3;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 22:07:50 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  2. src/crypto/tls/conn.go

    	good &= good << 2
    	good &= good << 1
    	good = uint8(int8(good) >> 7)
    
    	// Zero the padding length on error. This ensures any unchecked bytes
    	// are included in the MAC. Otherwise, an attacker that could
    	// distinguish MAC failures from padding failures could mount an attack
    	// similar to POODLE in SSL 3.0: given a good ciphertext that uses a
    	// full block's worth of padding, replace the final block with another
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    ====
    
    Note that the lazy configuration of `into()` is different from a <<#sub:using_child_copy_specifications,child specification>>, even though the syntax is similar.
    Keep an eye on the number of arguments to distinguish between them.
    
    [[sec:project_copy_method]]
    === Copying files in your own tasks
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_builder.go

    	// h2. Clients would then connect with h2, while the upstream may not support it. This is not a
    	// concern for plaintext, but we do not have a way to distinguish https vs http here. If users of
    	// gateway want this behavior, they can configure UseClientProtocol explicitly.
    	if cb.sidecarProxy() && port.Protocol.IsUnsupported() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  5. manifests/charts/base/crds/crd-all.gen.yaml

                                  format: int32
                                  type: integer
                                splitExternalLocalOriginErrors:
                                  description: Determines whether to distinguish local
                                    origin failures from external errors.
                                  type: boolean
                              type: object
                            portLevelSettings:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  6. pkg/config/validation/agent/validation.go

    			}
    		}
    
    		if settings.Mode == networking.ClientTLSSettings_MUTUAL {
    			// In tls mutual mode, we can specify both client cert and ca cert by CredentialName.
    			// However, here we can not distinguish whether user specify ca cert by CredentialName or not.
    			if settings.CaCertificates != "" || settings.SubjectAltNames != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.cc

      auto dequantize = builder_.create<quantfork::DequantizeCastOp>(
          loc, expressed_type, quantize.getResult());
    
      // This attribute is set to distinguish the quantize ops being added by the
      // quantization pass. These ops can be removed without losing original
      // program accuracy.
      // TODO: b/323478683 - Make the attribute being part of op definition.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  8. src/internal/trace/gc.go

    				util[len(util)-1] = mu
    			}
    			return util
    		}
    	}
    	return append(util, mu)
    }
    
    // totalUtil is total utilization, measured in nanoseconds. This is a
    // separate type primarily to distinguish it from mean utilization,
    // which is also a float64.
    type totalUtil float64
    
    func totalUtilOf(meanUtil float64, dur int64) totalUtil {
    	return totalUtil(meanUtil * float64(dur))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  9. tensorflow/BUILD

    selects.config_setting_group(
        name = "is_cuda_enabled_and_windows",
        match_all = [
            ":is_cuda_enabled",
            ":windows",
        ],
    )
    
    # Config setting to use in select()s to distinguish open source build from
    # google internal build on configurable attributes.
    #
    # For non-configurable distinction between OSS and Google builds, see
    # `if_oss()` and `if_google()` macros in tensorflow.bzl.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  10. pkg/controller/garbagecollector/garbagecollector.go

    			//    recognized by gc.restMapper (this is a transient error).
    			// 2. The reference is to an invalid group/version. We don't currently
    			//    have a way to distinguish this from a valid type we will recognize
    			//    after the next discovery sync.
    			// For now, record the error and retry.
    			logger.V(5).Error(err, "error syncing item", "item", n.identity)
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.9K bytes
    - Viewed (0)
Back to top