Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 402 for prefers (0.75 sec)

  1. src/internal/runtime/atomic/types.go

    // perform a write barrier on value, and so this operation may
    // hide pointers from the GC. Use with care and sparingly.
    // It is safe to use with values not found in the Go heap.
    // Prefer Store instead.
    //
    //go:nosplit
    func (u *UnsafePointer) StoreNoWB(value unsafe.Pointer) {
    	StorepNoWB(unsafe.Pointer(&u.value), value)
    }
    
    // Store updates the value atomically.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/DefaultVisualStudioLocator.java

            architectureDescriptorBuilders.add(LEGACY_ARM_ON_X86);
    
            boolean isNativeAmd64 = systemInfo.getArchitecture() == SystemInfo.Architecture.amd64;
            if (isNativeAmd64) {
                // Prefer 64-bit tools when building on a 64-bit OS
                architectureDescriptorBuilders.add(LEGACY_AMD64_ON_AMD64);
                architectureDescriptorBuilders.add(LEGACY_X86_ON_AMD64);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManager.java

            // Here, we need to determine which policy to use. Release updateInterval will be used when
            // the metadata refers to a release artifact or meta-version, and snapshot updateInterval will be used when
            // it refers to a snapshot artifact or meta-version.
            // NOTE: Release metadata includes version information about artifacts that have been released, to allow
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractor.java

            }
    
            if (value instanceof Map) {
                return ((Map) value).get(key);
            }
    
            final String message = String.format(
                    "The token '%s' at position '%d' refers to a java.util.Map, but the value "
                            + "seems is an instance of '%s'",
                    expression.subSequence(from, to), from, value.getClass());
    
            throw new IntrospectionException(message);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.h

    //   "XLA_GPU_JIT" or "XLA_TPU_JIT".
    // use_tuple_args: when this is true, always create a tuple argument for the
    //   entry computation.
    // enable_op_fallback: when this is true, prefer tf2xla fallback kernels over
    // MLIR
    //   native kernels for legalization to HLO.
    // return_tuple: when this is true, always create a tuple result for the
    //   entry computation.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/schema/schema.fbs

      // Tensorflow's NHWC).
      shape:[int];
      type:TensorType;
      // An index that refers to the buffers table at the root of the model. Or,
      // if there is no data buffer associated (i.e. intermediate results), then
      // this is 0 (which refers to an always existent empty buffer).
      //
      // The data_buffer itself is an opaque container, with the assumption that the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/networking/v1/generated.proto

      // be one of the following values:
      // * Exact: Matches the URL path exactly.
      // * Prefix: Matches based on a URL path prefix split by '/'. Matching is
      //   done on a path element by element basis. A path element refers is the
      //   list of labels in the path split by the '/' separator. A request is a
      //   match for path p if every p is an element-wise prefix of p of the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook.go

    }
    
    // New creates a new WebhookAuthorizer from the provided kubeconfig file.
    // The config's cluster field is used to refer to the remote service, user refers to the returned authorizer.
    //
    //	# clusters refers to the remote service.
    //	clusters:
    //	- name: name-of-remote-authz-service
    //	  cluster:
    //	    certificate-authority: /path/to/ca.pem      # CA for verifying the remote service.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/networking/v1beta1/types.go

    	PathTypeExact = PathType("Exact")
    
    	// PathTypePrefix matches based on a URL path prefix split by '/'. Matching
    	// is case sensitive and done on a path element by element basis. A path
    	// element refers to the list of labels in the path split by the '/'
    	// separator. A request is a match for path p if every p is an element-wise
    	// prefix of p of the request path. Note that if the last element of the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:30 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  10. okhttp-testing-support/src/main/kotlin/okhttp3/testing/PlatformRule.kt

          /**
           * For whatever reason our BouncyCastle provider doesn't work with ECDSA keys. Just configure it
           * to use RSA-2048 instead.
           *
           * (We otherwise prefer ECDSA because it's faster.)
           */
          private val localhostHandshakeCertificatesWithRsa2048: HandshakeCertificates by lazy {
            val heldCertificate =
              HeldCertificate.Builder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top