Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,042 for inter (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    +
    A build scan will make it easier to visualize what's happening in the build.
    For Gradle builds, you'll be able to see the project structure, the dependencies (regular and inter-project ones), what plugins are being used and the console output of the build.
    +
    Your build may fail at this point, but that's ok; the scan will still run.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/core-plugins/build_init_plugin.adoc

    For example, to create a Java library project run:
    
    ```bash
    gradle init --type java-library
    ```
    
    If a `--type` option is not provided, Gradle will attempt to infer the type from the environment. For example, it will infer a type of “`pom`” if it finds a `pom.xml` file to convert to a Gradle build. If the type could not be inferred, the type “`basic`” will be used.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_merge_variables_with_execute.cc

      // interfering accesses in a conservative way (see below). We do not consider
      // resource accesses in other islands since their ordering is enforced by
      // inter-island dependencies.
      Operation* first_read = nullptr;
      auto execute = cast<TF::TPUExecuteOp>(execute_launch.GetBody().front());
      auto parallel_execute = llvm::dyn_cast<tf_device::ParallelExecuteOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 17:52:11 UTC 2024
    - 27K bytes
    - Viewed (0)
  4. src/crypto/sha256/sha256block_amd64.s

    //
    //  https://csrc.nist.gov/publications/fips/fips180-4/fips-180-4.pdf
    
    // The avx2-version is described in an Intel White-Paper:
    // "Fast SHA-256 Implementations on Intel Architecture Processors"
    // To find it, surf to http://www.intel.com/p/en_US/embedded
    // and search for that title.
    // AVX2 version by Intel, same algorithm as code in Linux kernel:
    // https://github.com/torvalds/linux/blob/master/arch/x86/crypto/sha256-avx2-asm.S
    // by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  5. src/syscall/zerrors_solaris_amd64.go

    	27: "stopped (tty output)",
    	28: "virtual Timer Expired",
    	29: "profiling Timer Expired",
    	30: "cpu Limit Exceeded",
    	31: "file Size Limit Exceeded",
    	32: "no runnable lwp",
    	33: "inter-lwp signal",
    	34: "checkpoint Freeze",
    	35: "checkpoint Thaw",
    	36: "thread Cancellation",
    	37: "resource Lost",
    	38: "resource Control Exceeded",
    	39: "reserved for JVM 1",
    	40: "reserved for JVM 2",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  6. docs/metrics/prometheus/list.md

    | `minio_heal_time_last_activity_nano_seconds` | Time elapsed (in nano seconds) since last self healing activity. |
    
    ## Inter Node Metrics
    
    | Name                                      | Description                                             |
    |:------------------------------------------|:--------------------------------------------------------|
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    == Using classes instead of jar for compilation
    
    A feature of the `java-library` plugin is that projects which consume the library only require the classes folder for compilation, instead of the full JAR.
    This enables lighter inter-project dependencies as resources processing (`processResources` task) and archive construction (`jar` task) are no longer executed when only Java code compilation is performed during development.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/runtime/framework.go

    	// If all filters succeed in this pass, we run them again when these
    	// nominated pods are not added. This second pass is necessary because some
    	// filters such as inter-pod affinity may not pass without the nominated pods.
    	// If there are no nominated pods for the node or if the first run of the
    	// filters fail, we don't run the second pass.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go

    	{29, "SIGPROF", "profiling Timer Expired"},
    	{30, "SIGXCPU", "cpu Limit Exceeded"},
    	{31, "SIGXFSZ", "file Size Limit Exceeded"},
    	{32, "SIGWAITING", "no runnable lwp"},
    	{33, "SIGLWP", "inter-lwp signal"},
    	{34, "SIGFREEZE", "checkpoint Freeze"},
    	{35, "SIGTHAW", "checkpoint Thaw"},
    	{36, "SIGCANCEL", "thread Cancellation"},
    	{37, "SIGLOST", "resource Lost"},
    	{38, "SIGXRES", "resource Control Exceeded"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/types.go

    		Gated:                   pqi.Gated,
    	}
    }
    
    // PodInfo is a wrapper to a Pod with additional pre-computed information to
    // accelerate processing. This information is typically immutable (e.g., pre-processed
    // inter-pod affinity selectors).
    type PodInfo struct {
    	Pod                        *v1.Pod
    	RequiredAffinityTerms      []AffinityTerm
    	RequiredAntiAffinityTerms  []AffinityTerm
    	PreferredAffinityTerms     []WeightedAffinityTerm
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
Back to top