Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 530 for nature (0.21 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/link/internal/ld/elf_test.go

    	}
    }
    
    func TestNoDuplicateNeededEntries(t *testing.T) {
    	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 "linux-amd64", "linux-arm64", "freebsd-amd64", "openbsd-amd64":
    	default:
    		t.Skip("no need for test on " + pair)
    	}
    
    	t.Parallel()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. pkg/controller/nodeipam/ipam/range_allocator.go

    		// period.
    		defer r.queue.Done(obj)
    		var key string
    		var ok bool
    		// We expect strings to come off the workNodeQueue. These are of the
    		// form namespace/name. We do this as the delayed nature of the
    		// workNodeQueue means the items in the informer cache may actually be
    		// more up to date that when the item was initially put onto the
    		// workNodeQueue.
    		if key, ok = obj.(string); !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

    The actual replacement happens when the user runs his Gradle build.
    
    **_Note: Dynamic Groovy interception uses the same mechanism but replacements are a bit more complicated due to the dynamic nature of Groovy. 
    And due to that build logic is also intercepted when code is run and not just on the bytecode level._**
    
    Next sections will explain more in detail how we can define interceptors and how the code is then replaced.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    	// BootstrapTokens is respected at `kubeadm init` time and describes a set of Bootstrap Tokens to create.
    	// This information IS NOT uploaded to the kubeadm cluster configmap, partly because of its sensitive nature
    	// +optional
    	BootstrapTokens []bootstraptokenv1.BootstrapToken `json:"bootstrapTokens,omitempty"`
    
    	// NodeRegistration holds fields that relate to registering the new control-plane node to the cluster
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
Back to top