Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 364 for isDependent (0.27 sec)

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

            return MultipartBody(boundary, type, parts.toImmutableList())
          }
        }
    
      companion object {
        /**
         * The "mixed" subtype of "multipart" is intended for use when the body parts are independent
         * and need to be bundled in a particular order. Any "multipart" subtypes that an implementation
         * does not recognize must be treated as being of subtype "mixed".
         */
        @JvmField
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. src/runtime/sys_linux_386.s

    // __kernel_vsyscall vdso helper at 0x10(GS) for easy access from position
    // independent code and setldt in runtime does the same in the statically
    // linked case. However, systems that use alternative libc such as Android's
    // bionic and musl, do not save the helper anywhere, and so the only way to
    // invoke a syscall from position independent code is boring old int $0x80
    // (which is also what syscall wrappers in bionic/musl use).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/reference/third_party_integration.adoc

    
    [[sec:embedding_features]]
    === Tooling API Features
    
    A fundamental characteristic of the Tooling API is that it operates in a version independent way.
    This means that you can use the same API to work with builds that use different versions of Gradle, including versions that are newer or older than the version of the Tooling API that you are using.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. src/testing/quick/quick.go

    		} else {
    			maxCount = *defaultMaxCount
    		}
    	}
    
    	return
    }
    
    // A SetupError is the result of an error in the way that check is being
    // used, independent of the functions being tested.
    type SetupError string
    
    func (s SetupError) Error() string { return string(s) }
    
    // A CheckError is the result of Check finding an error.
    type CheckError struct {
    	Count int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/security/first-steps.md

    Now let's go back a bit and understand what is all that.
    
    The `password` "flow" is one of the ways ("flows") defined in OAuth2, to handle security and authentication.
    
    OAuth2 was designed so that the backend or API could be independent of the server that authenticates the user.
    
    But in this case, the same **FastAPI** application will handle the API and the authentication.
    
    So, let's review it from that simplified point of view:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:48:20 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/tutorial_using_tasks.adoc

    // limitations under the License.
    
    [[tutorial_using_tasks]]
    = Using Tasks
    
    The work that Gradle can do on a project is defined by one or more _tasks_.
    
    image::author-gradle-5.png[]
    
    A task represents some independent unit of work that a build performs.
    This might be compiling some classes, creating a JAR, generating Javadoc, or publishing some archives to a repository.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. pkg/apis/certificates/types.go

    //
    // It can be optionally associated with a particular assigner, in which case it
    // contains one valid set of trust anchors for that signer. Signers may have
    // multiple associated ClusterTrustBundles; each is an independent set of trust
    // anchors for that signer.
    type ClusterTrustBundle struct {
    	metav1.TypeMeta
    	// +optional
    	metav1.ObjectMeta
    
    	// Spec contains the signer (if any) and trust anchors.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 11K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/canonicalize.td

    def IsDeviceCompatible: Constraint<
      Neg<And<[IsOnGpuDevicePred, IsInteger32Pred]>>>;
    
    // TODO(b/239736969): Remove the device compatibility constraint to make the
    // canonicalization device independent, by adding an int32 GPU kernel for Relu.
    def MaximumOfZeroToRelu : Pat<
      (TF_MaximumOp:$maximum_op $x, $y), (TF_ReluOp:$dest $x),
      [(IsConstantValueOf<0> $y), (IsDeviceCompatible $maximum_op)],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 18:42:28 UTC 2023
    - 17K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/FinalizableReferenceQueue.java

       * This means that dynamically loaded web applications and OSGi bundles can't be unloaded.
       *
       * If the library is loaded in an application class loader, we try to break the cycle by loading
       * Finalizer in its own independent class loader:
       *
       * System class loader -> Application class loader -> ReferenceMap -> FinalizableReferenceQueue ->
       * etc. -> Decoupled class loader -> Finalizer
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/FinalizableReferenceQueue.java

       * This means that dynamically loaded web applications and OSGi bundles can't be unloaded.
       *
       * If the library is loaded in an application class loader, we try to break the cycle by loading
       * Finalizer in its own independent class loader:
       *
       * System class loader -> Application class loader -> ReferenceMap -> FinalizableReferenceQueue ->
       * etc. -> Decoupled class loader -> Finalizer
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 13.1K bytes
    - Viewed (0)
Back to top