Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 86 for Everything (0.55 sec)

  1. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    
    [[sec:scripts]]
    == Kotlin DSL scripts
    
    Just like the Groovy-based equivalent, the Kotlin DSL is implemented on top of Gradle's Java API.
    Everything you can read in a Kotlin DSL script is Kotlin code compiled and executed by Gradle.
    Many of the objects, functions and properties you use in your build scripts come from the Gradle API and the APIs of the applied plugins.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    message ListOptions {
      // A selector to restrict the list of returned objects by their labels.
      // Defaults to everything.
      // +optional
      optional string labelSelector = 1;
    
      // A selector to restrict the list of returned objects by their fields.
      // Defaults to everything.
      // +optional
      optional string fieldSelector = 2;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    message ListOptions {
      // A selector to restrict the list of returned objects by their labels.
      // Defaults to everything.
      // +optional
      optional string labelSelector = 1;
    
      // A selector to restrict the list of returned objects by their fields.
      // Defaults to everything.
      // +optional
      optional string fieldSelector = 2;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  4. src/cmd/cgo/out.go

    //
    // When doing external linking, we hand everything off to the external
    // linker, which will create its own dynamic symbol tables. For
    // internal linking, this may turn weak imports into strong imports,
    // which could cause dynamic linking to fail if a symbol really isn't
    // defined. However, the standard library depends on everything it
    // imports, and this is the primary use of dynamic symbol tables with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. src/go/build/build.go

    	// systems, such as android, to arrive without breaking existing code with
    	// innocuous source code in "android.go". The easiest fix: cut everything
    	// in the name before the initial _.
    	i := strings.Index(name, "_")
    	if i < 0 {
    		return true
    	}
    	name = name[i:] // ignore everything before first _
    
    	l := strings.Split(name, "_")
    	if n := len(l); n > 0 && l[n-1] == "test" {
    		l = l[:n-1]
    	}
    	n := len(l)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

                buildPhaseListeners.getSource().statusChanged(event);
            } else if (event instanceof ProblemEvent) {
                problemListeners.getSource().statusChanged(event);
            } else {
                // Everything else treat as a generic operation
                buildOperationProgressListeners.getSource().statusChanged(event);
            }
        }
    
        private void broadcastTestProgressEvent(InternalTestProgressEvent event) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    Additionally to the aforementioned general classpath rules, compile classpaths ignore changes to everything but class files. Gradle uses the same class analysis described in <<java_plugin.adoc#sec:java_compile_avoidance,Java compile avoidance>> to further filter changes that don't affect the class' ABIs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	for desc, test := range map[string]struct {
    		mutatePodFn    func(*v1.Pod)
    		mutateStatusFn func(*kubecontainer.PodStatus)
    		actions        podActions
    		resetStatusFn  func(*kubecontainer.PodStatus)
    	}{
    		"everything is good; do nothing": {
    			actions: noAction,
    		},
    		"start pod sandbox and all containers for a new pod": {
    			mutateStatusFn: func(status *kubecontainer.PodStatus) {
    				// No container or sandbox exists.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// A selector to restrict the list of returned objects by their labels.
    	// Defaults to everything.
    	// +optional
    	LabelSelector string `json:"labelSelector,omitempty" protobuf:"bytes,1,opt,name=labelSelector"`
    	// A selector to restrict the list of returned objects by their fields.
    	// Defaults to everything.
    	// +optional
    	FieldSelector string `json:"fieldSelector,omitempty" protobuf:"bytes,2,opt,name=fieldSelector"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  10. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        //
        //
        // D E P R E C A T E D
        //
        //
        // ----------------------------------------------------------------------------------------------------------------
        //
        // Everything below will be removed for Maven 4.0.0
        //
        // ----------------------------------------------------------------------------------------------------------------
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
Back to top