Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,195 for avoided (0.13 sec)

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

    Older versions of Gradle only support the `create(...)` API.
    The `create(...)` API eagerly creates and configures tasks when called and should be avoided.
    
    NOTE: Using `register(...)` alone may not be enough to avoid all task configuration completely.
    You may need to change other code that configures tasks by name or by type, see below.
    
    [[sec:how_do_i_defer_configuration]]
    === Defer task configuration
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

    #
    #   Important for patching:
    #
    #   (2) This script targets any POSIX shell, so it avoids extensions provided
    #       by Bash, Ksh, etc; in particular arrays are avoided.
    #
    #       The "traditional" practice of packing multiple parameters into a
    #       space-separated string is a well documented source of bugs and security
    #       problems, so this is (mostly) avoided, by progressively accumulating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. src/slices/slices_test.go

    	s := mem[0:5] // there is 1 element beyond len(s), within cap(s)
    
    	s = Delete(s, 2, 4)
    
    	if mem[3] != nil || mem[4] != nil {
    		// Check that potential memory leak is avoided
    		t.Errorf("Delete: want nil discarded elements, got %v, %v", mem[3], mem[4])
    	}
    	if mem[5] == nil {
    		t.Errorf("Delete: want unchanged elements beyond original len, got nil")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:06 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  4. maven-compat/src/main/mdo/profiles.mdo

              <association>
                <type>RepositoryPolicy</type>
              </association>
            </field>
          </fields>
          <!-- prevent modello generation of an incorrect equals method. Could be avoided by using <identity/> tags to mark ID as the only identity field -->
          <codeSegments>
            <codeSegment>
              <version>1.0.0</version>
              <code><![CDATA[
                public boolean equals( Object obj )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 03 21:08:35 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Interpreter.kt

     * unprocessed contents of the script, the target object type and parent `ClassLoader`.
     *
     * Because each program is specialized to a given script structure, a lot of work is
     * avoided. For example, a top-level script containing a `plugins` block but no body
     * can be compiled down to a specialized program that instantiates the compiled
     * `plugins` block class directly - without reflection - and does nothing else. The
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  6. src/runtime/runtime.go

    // ticksPerSecond returns a conversion rate between the cputicks clock and the nanotime clock.
    //
    // Note: Clocks are hard. Using this as an actual conversion rate for timestamps is ill-advised
    // and should be avoided when possible. Use only for durations, where a tiny error term isn't going
    // to make a meaningful difference in even a 1ms duration. If an accurate timestamp is needed,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/bisect/bisect.go

    			}
    		}
    	}
    	return h
    }
    
    // Trivial error implementation, here to avoid importing errors.
    
    type parseError struct{ text string }
    
    func (e *parseError) Error() string { return e.text }
    
    // FNV-1a implementation. See Go's hash/fnv/fnv.go.
    // Copied here for simplicity (can handle uints directly)
    // and to avoid the dependency.
    
    const (
    	offset64 uint64 = 14695981039346656037
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/controlling_task_execution.adoc

    Instead of relying on the `-x` parameter, defining a suitable lifecycle task for the desired action is recommended.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/custom_plugins.adoc

    ====
    
    ----
    $ gradle -q hi
    include::{snippetsPath}/customPlugins/customPlugin/tests/customPluginScript.out[]
    ----
    
    **Script plugins should be avoided.**
    
    [[sec:precompile_script_plugin]]
    == Precompiled script plugins
    
    *Precompiled script plugins* are compiled into class files and packaged into a JAR before they are executed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	{31, "EMLINK", "too many links"},
    	{32, "EPIPE", "broken pipe"},
    	{33, "EDOM", "numerical argument out of domain"},
    	{34, "ERANGE", "numerical result out of range"},
    	{35, "EDEADLK", "resource deadlock avoided"},
    	{36, "ENAMETOOLONG", "file name too long"},
    	{37, "ENOLCK", "no locks available"},
    	{38, "ENOSYS", "function not implemented"},
    	{39, "ENOTEMPTY", "directory not empty"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
Back to top