Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 86 for Characteristics (0.29 sec)

  1. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JavaToolchainSpec.java

     * <p>
     * A toolchain is a JRE/JDK used by the tasks of a build.
     * Tasks may require one or more of the tools (javac, java, or javadoc) of a toolchain.
     * Depending on the needs of a build, only toolchains matching specific characteristics can be used to run a build or a specific task of a build.
     * <p>
     * Even though specification properties can be configured independently,
     * the configuration must follow certain rules in order to form a  specification.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/http2/Settings.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package okhttp3.internal.http2
    
    /**
     * Settings describe characteristics of the sending peer, which are used by the receiving peer.
     * Settings are [connection][Http2Connection] scoped.
     */
    class Settings {
      /** Bitfield of which flags that values. */
      private var set: Int = 0
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. src/syscall/types_solaris.go

    	struct sockaddr_un s4;
    	struct sockaddr_dl s5;
    };
    
    struct sockaddr_any {
    	struct sockaddr addr;
    	char pad[sizeof(union sockaddr_all) - sizeof(struct sockaddr)];
    };
    
    */
    import "C"
    
    // Machine characteristics; for internal use.
    
    const (
    	sizeofPtr      = C.sizeofPtr
    	sizeofShort    = C.sizeof_short
    	sizeofInt      = C.sizeof_int
    	sizeofLong     = C.sizeof_long
    	sizeofLongLong = C.sizeof_longlong
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 4.9K bytes
    - Viewed (0)
  4. src/syscall/types_darwin.go

    	struct sockaddr_un s4;
    	struct sockaddr_dl s5;
    };
    
    struct sockaddr_any {
    	struct sockaddr addr;
    	char pad[sizeof(union sockaddr_all) - sizeof(struct sockaddr)];
    };
    
    */
    import "C"
    
    // Machine characteristics; for internal use.
    
    const (
    	sizeofPtr      = C.sizeofPtr
    	sizeofShort    = C.sizeof_short
    	sizeofInt      = C.sizeof_int
    	sizeofLong     = C.sizeof_long
    	sizeofLongLong = C.sizeof_longlong
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 5K bytes
    - Viewed (0)
  5. src/syscall/types_openbsd.go

    	struct sockaddr_un s4;
    	struct sockaddr_dl s5;
    };
    
    struct sockaddr_any {
    	struct sockaddr addr;
    	char pad[sizeof(union sockaddr_all) - sizeof(struct sockaddr)];
    };
    
    */
    import "C"
    
    // Machine characteristics; for internal use.
    
    const (
    	sizeofPtr      = C.sizeofPtr
    	sizeofShort    = C.sizeof_short
    	sizeofInt      = C.sizeof_int
    	sizeofLong     = C.sizeof_long
    	sizeofLongLong = C.sizeof_longlong
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 5K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/hash/HashTestUtils.java

          }
        }
      }
    
      /**
       * Test for 2-bit characteristics. A characteristic is a delta in the input which is repeated in
       * the output. For example, if f() is a block cipher and c is a characteristic, then f(x^c) =
       * f(x)^c with greater than expected probability. The test for funneling is merely a test for
       * 1-bit characteristics.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  7. src/syscall/types_dragonfly.go

    	struct sockaddr_un s4;
    	struct sockaddr_dl s5;
    };
    
    struct sockaddr_any {
    	struct sockaddr addr;
    	char pad[sizeof(union sockaddr_all) - sizeof(struct sockaddr)];
    };
    
    */
    import "C"
    
    // Machine characteristics; for internal use.
    
    const (
    	sizeofPtr      = C.sizeofPtr
    	sizeofShort    = C.sizeof_short
    	sizeofInt      = C.sizeof_int
    	sizeofLong     = C.sizeof_long
    	sizeofLongLong = C.sizeof_longlong
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 5K bytes
    - Viewed (0)
  8. src/syscall/types_netbsd.go

    	struct sockaddr_un s4;
    	struct sockaddr_dl s5;
    };
    
    struct sockaddr_any {
    	struct sockaddr addr;
    	char pad[sizeof(union sockaddr_all) - sizeof(struct sockaddr)];
    };
    
    */
    import "C"
    
    // Machine characteristics; for internal use.
    
    const (
    	sizeofPtr      = C.sizeofPtr
    	sizeofShort    = C.sizeof_short
    	sizeofInt      = C.sizeof_int
    	sizeofLong     = C.sizeof_long
    	sizeofLongLong = C.sizeof_longlong
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/passes.td

        In the long term it is desired that the framework produces uniform
        quantized types directly and deprecate this pass.
    
        The target patterns should have the following characteristics, with some
        variations depending on the op being quantized.
    
        * A tensor is quantized using a `func::FuncOp` whose name contains
          "uniform_quantize". The first argument is the tensor to be quantized,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 21:59:06 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/pkg/resource/query_param_verifier_v3.go

    )
    
    var _ Verifier = &queryParamVerifierV3{}
    
    // NewQueryParamVerifierV3 returns a pointer to the created queryParamVerifier3 struct,
    // which implements the Verifier interface. The caching characteristics of the
    // OpenAPI V3 specs are determined by the passed oapiClient. For memory caching, the
    // client should be wrapped beforehand as: cached.NewClient(oapiClient). The disk
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 01:23:27 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top