Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,304 for nature (0.28 sec)

  1. platforms/core-runtime/functional/src/main/java/org/gradle/internal/Try.java

     * <p>
     * It is possible for Try to hold null values.
     */
    public abstract class Try<T> {
        // TODO(https://github.com/gradle/gradle/issues/24767): with JSpecify, the nullable nature of the type argument <T> should be expressed as <T extends @Nullable Object>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/model/CalculatedValueContainer.java

     */
    @ThreadSafe
    public class CalculatedValueContainer<T, S extends ValueCalculator<? extends T>> implements CalculatedValue<T>, WorkNodeAction {
        // TODO(https://github.com/gradle/gradle/issues/24767): with JSpecify, the nullable nature of the type argument <T> should be expressed as <T extends @Nullable Object>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/eclipse/EclipseWtpPlugin.java

                    model.getProject().buildCommand("org.eclipse.wst.validation.validationbuilder");
                    model.getProject().natures("org.eclipse.wst.common.project.facet.core.nature");
                    model.getProject().natures("org.eclipse.wst.common.modulecore.ModuleCoreNature");
                    model.getProject().natures("org.eclipse.jem.workbench.JavaEMFNature");
                }
    
            };
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/version/internal/DefaultPluginVersionResolver.java

            org.eclipse.aether.metadata.Metadata metadata = new DefaultMetadata(
                    request.getGroupId(),
                    request.getArtifactId(),
                    "maven-metadata.xml",
                    DefaultMetadata.Nature.RELEASE_OR_SNAPSHOT);
    
            List<MetadataRequest> requests = new ArrayList<>();
    
            requests.add(new MetadataRequest(metadata, null, REPOSITORY_CONTEXT).setTrace(trace));
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 09 20:17:59 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/ld_test.go

    func TestArchiveBuildInvokeWithExec(t *testing.T) {
    	t.Parallel()
    	testenv.MustHaveGoBuild(t)
    	testenv.MustHaveCGO(t)
    
    	// run this test on just a small set of platforms (no need to test it
    	// across the board given the nature of the test).
    	pair := runtime.GOOS + "-" + runtime.GOARCH
    	switch pair {
    	case "darwin-amd64", "darwin-arm64", "linux-amd64", "freebsd-amd64":
    	default:
    		t.Skip("no need for test on " + pair)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 05:45:53 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/test_kit.adoc

    ----
    
    [[sub:test-kit-compatibility]]
    === Feature support when testing with different Gradle versions
    
    It is possible to use the GradleRunner to execute builds with Gradle 1.0 and later. However, some runner features are not supported on earlier versions. In such cases, the runner will throw an exception when attempting to use the feature.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. src/compress/bzip2/bzip2.go

    		err = brErr
    	}
    	return
    }
    
    func (bz2 *reader) readFromBlock(buf []byte) int {
    	// bzip2 is a block based compressor, except that it has a run-length
    	// preprocessing step. The block based nature means that we can
    	// preallocate fixed-size buffers and reuse them. However, the RLE
    	// preprocessing would require allocating huge buffers to store the
    	// maximum expansion. Thus we process blocks all at once, except for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. docs/bigdata/README.md

    # **Disaggregated HDP Spark and Hive with MinIO**
    
    ## **1. Cloud-native Architecture**
    
    ![cloud-native](https://github.com/minio/minio/blob/master/docs/bigdata/images/image1.png?raw=true "cloud native architecture")
    
    Kubernetes manages stateless Spark and Hive containers elastically on the compute nodes. Spark has native scheduler integration with Kubernetes. Hive, for legacy reasons, uses YARN scheduler on top of Kubernetes.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    // Collectively, these codes provide an identifier that may be used to
    // implement special handling for certain types of errors.
    //
    // Error codes should be fine-grained enough that the exact nature of the error
    // can be easily determined, but coarse enough that they are not an
    // implementation detail of the type checking algorithm. As a rule-of-thumb,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  10. internal/etag/etag.go

    	//
    	//   return len(e) > 16 && !bytes.ContainsRune(e, '-')
    	//
    	// An encrypted ETag may contain some random bytes - e.g.
    	// and nonce value. This nonce value may contain a '-'
    	// just by its nature of being randomly generated.
    	// The above implementation would incorrectly consider
    	// such an ETag (with a nonce value containing a '-')
    	// as non-encrypted.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 10 21:09:36 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top