Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 478 for prefers (0.12 sec)

  1. okhttp/src/main/kotlin/okhttp3/ResponseBody.kt

       * may trigger an [OutOfMemoryError]. Prefer to stream the response body if this is a
       * possibility for your response.
       */
      @Throws(IOException::class)
      fun bytes() = commonBytes()
    
      /**
       * Returns the response as a [ByteString].
       *
       * This method loads entire response body into memory. If the response body is very large this
       * may trigger an [OutOfMemoryError]. Prefer to stream the response body if this is a
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/io/Files.java

       *     helpful predefined constants
       * @return a string containing all the characters from the file
       * @throws IOException if an I/O error occurs
       * @deprecated Prefer {@code asCharSource(file, charset).read()}.
       */
      @Deprecated
      @InlineMe(
          replacement = "Files.asCharSource(file, charset).read()",
          imports = "com.google.common.io.Files")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  3. staging/src/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/TopKSelector.java

     * comparator. "Top" can mean the greatest or the lowest elements, specified in the factory used to
     * create the {@code TopKSelector} instance.
     *
     * <p>If your input data is available as an {@link Iterable} or {@link Iterator}, prefer {@link
     * Ordering#leastOf(Iterable, int)}, which provides the same implementation with an interface
     * tailored to that use case.
     *
     * <p>This uses the same efficient implementation as {@link Ordering#leastOf(Iterable, int)},
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/generic/webhook_test.go

    			expectCallKind:        gvk("apps", "v1", "Deployment"),
    			expectCallResource:    gvr("apps", "v1", "deployments"),
    			expectCallSubresource: "",
    			matchResult:           true,
    		},
    		{
    			name: "specific rules, prefer exact match",
    			webhook: &v1.ValidatingWebhook{
    				NamespaceSelector: &metav1.LabelSelector{},
    				ObjectSelector:    &metav1.LabelSelector{},
    				Rules: []v1.RuleWithOperations{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 28 19:30:04 UTC 2023
    - 32K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesUseCasesIntegrationTest.groovy

         * either as individual modules, or using a fatjar. It's illegal to have both the fat jar and
         * individual modules on the classpath, so we need a way to declare that we prefer to use
         * the fat jar.
         *
         * This is from the consumer point of view, fixing the fact the library doesn't declare capabilities.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/management/DefaultDependencyResolutionManagement.java

            if (displayName == null) {
                displayName = UNKNOWN_CODE;
            }
            String message = "Build was configured to prefer settings repositories over project repositories but repository '" + artifactRepository.getName() + "' was added by " + displayName;
            switch (getConfiguredRepositoriesMode()) {
                case FAIL_ON_PROJECT_REPOS:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/networking/v1/types_swagger_doc_generated.go

    interpretation of the path matching. PathType can be one of the following values: * Exact: Matches the URL path exactly. * Prefix: Matches based on a URL path prefix split by '/'. Matching is\n  done on a path element by element basis. A path element refers is the\n  list of labels in the path split by the '/' separator. A request is a\n  match for path p if every p is an element-wise prefix of p of the\n  request path. Note that if the last element of the path is a substring\n  of the last element in...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top