Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 388 for composed (0.73 sec)

  1. guava/src/com/google/common/net/InternetDomainName.java

       *
       * @since 6.0
       */
      public boolean isUnderPublicSuffix() {
        return publicSuffixIndex() > 0;
      }
    
      /**
       * Indicates whether this domain name is composed of exactly one subdomain component followed by a
       * {@linkplain #isPublicSuffix() public suffix}. For example, returns {@code true} for {@code
       * google.com} {@code foo.co.uk}, and {@code myblog.blogspot.com}, but not for {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/net/InternetDomainName.java

       *
       * @since 6.0
       */
      public boolean isUnderPublicSuffix() {
        return publicSuffixIndex() > 0;
      }
    
      /**
       * Indicates whether this domain name is composed of exactly one subdomain component followed by a
       * {@linkplain #isPublicSuffix() public suffix}. For example, returns {@code true} for {@code
       * google.com} {@code foo.co.uk}, and {@code myblog.blogspot.com}, but not for {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/config/cluster_test.go

    					Data: map[string]string{},
    				},
    			},
    			expectedError: true,
    		},
    		{
    			name: "valid v1beta3 - new control plane == false", // InitConfiguration composed with data from different places, with also node specific information
    			staticPods: []testresources.FakeStaticPod{
    				{
    					NodeName:  nodeName,
    					Component: kubeadmconstants.KubeAPIServer,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_build_scripts.adoc

    | `task()`
    | Creates a Task with the given name and adds it to this project.
    |===
    
    == Build Script structure
    
    The Build script is composed of `{ ... }`, a special object in both Groovy and Kotlin.
    This object is called a _lambda_ in Kotlin or a _closure_ in Groovy.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:22:43 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/SequentialExecutor.java

         * #queue}, the Executor will complete its tasks, and then restore the interruption. This means
         * that once the Thread returns to the Executor that this Executor composes, the interruption
         * will still be present. If the composed Executor is an ExecutorService, it can respond to
         * shutdown() by returning tasks queued on that Thread after {@link #worker} drains the queue.
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/SequentialExecutor.java

         * #queue}, the Executor will complete its tasks, and then restore the interruption. This means
         * that once the Thread returns to the Executor that this Executor composes, the interruption
         * will still be present. If the composed Executor is an ExecutorService, it can respond to
         * shutdown() by returning tasks queued on that Thread after {@link #worker} drains the queue.
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/tests/compose-uniform-quantized-type.mlir

        %0 = stablehlo.convert %arg0 : (tensor<1x3xi8>) -> tensor<1x3xf32>
        return %0 : tensor<1x3xf32>
      }
    // CHECK: @uniform_dequantize_0
    }
    
    // -----
    
    // Tests that a quantized dot_general op is composed when both operands are
    // actiavations.
    
    // CHECK-LABEL: dot_general_with_two_activations
    // CHECK-SAME: %[[ARG_0:.*]]: tensor<8x16x16xf32>
    // CHECK-SAME: %[[ARG_1:.*]]: tensor<8x16x4xf32>
    module {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 37K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part1_gradle_init.adoc

    image::tutorial/intellij-idea-ide.png[]
    
    Open the `settings.gradle(.kts)` and `build.gradle(.kts)` files in the IDE:
    
    image::tutorial/intellij-idea-open.png[]
    
    == Step 6. Understanding the Settings file
    A project is composed of one or more subprojects (sometimes called modules).
    
    Gradle reads the `settings.gradle(.kts)` file to figure out which subprojects comprise a project build.
    
    Take a look at the file in your project:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

        2. Operations that don't have a kernel defined for the device.
    
        This pass is conservative in that it will mark all ops for outside compilation
        that can not be compiled for the device.  Exceptions for this are added for ops
        that will be rewritten or decomposed before compiling on device.
    
    
        For example, tf_device.cluster op with an unsupported op, tf.UnsupportedOp:
    
        ```mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/security/simple-oauth2.md

        ```
    
    `OAuth2PasswordRequestForm` is a class dependency that declares a form body with:
    
    * The `username`.
    * The `password`.
    * An optional `scope` field as a big string, composed of strings separated by spaces.
    * An optional `grant_type`.
    
    !!! tip
        The OAuth2 spec actually *requires* a field `grant_type` with a fixed value of `password`, but `OAuth2PasswordRequestForm` doesn't enforce it.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top