Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,304 for nature (0.22 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/more_about_tasks.adoc

    > Task :app:check
    > Task :app:build
    ----
    
    The actionable `:compileJava` task is wired to the lifecycle `:build` task.
    
    [[sec:incremental_tasks]]
    == Incremental tasks
    
    A key feature of Gradle tasks is their incremental nature.
    
    Gradle can reuse results from prior builds.
    Therefore, if we've built our project before and made only minor changes, rerunning `:build` will not require Gradle to perform extensive work.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  2. src/runtime/chan_test.go

    	r := make(chan int, nwork*3)
    
    	// workers
    	var wg sync.WaitGroup
    	for i := 0; i < nwork; i++ {
    		wg.Add(1)
    		go func(w int) {
    			for v := range q {
    				// mess with the fifo-ish nature of range
    				if pn[w%len(pn)] == v {
    					runtime.Gosched()
    				}
    				r <- v
    			}
    			wg.Done()
    		}(i)
    	}
    
    	// feeder & closer
    	expect := 0
    	go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:47:35 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    * The Kotlin DSL will not support `model {}` elements. This is part of the link:https://blog.gradle.org/state-and-future-of-the-gradle-software-model[discontinued Gradle Software Model].
    * Enabling the incubating configuration on demand feature is not recommended as it can lead to very hard-to-diagnose problems.
    
    Read more in the <<kotlin_dsl.adoc#kotlin_dsl,Gradle Kotlin DSL Primer>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/v1beta4/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"`
    
    	// DryRun tells if the dry run mode is enabled, don't apply any change if it is and just output what would be done.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  5. pilot/pkg/model/telemetry.go

    	return class == networking.ListenerClassSidecarInbound || class == networking.ListenerClassGateway
    }
    
    // Equal compares two computedTelemetries for equality. This was created to help with testing. Because of the nature of the structs being compared,
    // it is safer to use cmp.Equal as opposed to reflect.DeepEqual. Also, because of the way the structs are generated, it is not possible to use
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  6. LICENSE

        interfaces that do not display Appropriate Legal Notices, your
        work need not make them do so.
    
      A compilation of a covered work with other separate and independent
    works, which are not by their nature extensions of the covered work,
    and which are not combined with it such as to form a larger program,
    in or on a volume of a storage or distribution medium, is called an
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 33.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    [[migant:general_guidelines]]
    == General guidelines
    
    When you migrate a build from Ant to Gradle, you should keep in mind the nature of what you already have and where you would like to end up.
    Do you want a Gradle build that mirrors the structure of the existing Ant build?
    Or do you want to move to something that is more idiomatic to Gradle?
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    The following plugins for experimental JavaScript integration are now removed from the distribution:
    `coffeescript-base`, `envjs`, `javascript-base`, `jshint`, `rhino`.
    
    If you used these plugins despite their experimental nature, you may find suitable replacements in the https://plugins.gradle.org/[Plugin Portal].
    
    ==== Configuring the layout of an Ivy repository
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  9. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

        automatically if You fail to comply with terms herein and fail to
        cure such breach within 30 days of becoming aware of the breach.
        Provisions which, by their nature, must remain in effect beyond the
        termination of this License shall survive.
    
        6.2. If You assert a patent infringement claim (excluding
        declaratory judgment actions) against Initial Developer or a
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    This works similar to <<feature_variants.adoc#sec::declare_feature_variants,defining optional feature variants>> in build scripts.
    We then use one of the `add` methods for adding dependencies to define which dependencies this optional feature needs.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
Back to top