Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 661 for dying (0.15 sec)

  1. subprojects/core/src/main/java/org/gradle/api/tasks/Delete.java

         */
        public void setDelete(Object target) {
            this.paths.setFrom(target);
        }
    
        /**
         * Returns if symlinks should be followed when doing a delete.
         *
         * @return true if symlinks will be followed.
         */
        @Input
        public boolean isFollowSymlinks() {
            return followSymlinks;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 4K bytes
    - Viewed (0)
  2. testing/performance/docs/performance-bisect.md

    or by having a new failing test, given the current slow feedback cycle, it can
    be difficult to track the exact commit that triggered the regression.
    
    The most convenient way to find the commit is to use `git bisect`. Before doing so
    you need to
     1. identify the test that exposes the regression
     2. set up the test to search only for the regression you are looking after to speed up the search for the regression.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. src/math/big/natdiv.go

    calls. While in general the number of recursive calls can change the time
    analysis, in this case doing three calls does not change the analysis:
    
    	T(n) = 3T(n/2) + O(n) + O(n^log₂3)
    
    ends up being T(n) = O(n^log₂3). Because the Karatsuba multiplication taking
    time O(n^log₂3) is itself doing 3 half-sized recursions, doing three for the
    division does not hurt the asymptotic performance. Of course, it is likely
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/build-organization/composite-builds/basic/README.adoc

    ====
    include::sample[dir="kotlin",files="settings.gradle.kts[]"]
    include::sample[dir="groovy",files="settings.gradle[]"]
    ====
    
    After doing so, you can reference any tasks in the included builds directly on the command line in order to execute.
    
    ```
    gradle :my-app:app:run
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. platforms/software/build-init/build.gradle.kts

        compileOnly(libs.eclipseSisuPlexus) {
            exclude(module = "cdi-api") // To respect the Maven exclusion
        }
        compileOnly(libs.maven3Compat)
    
        // 3 dependencies below are recommended as implementation but doing so adds them to the distribution
        // TODO Check why we reference them and if so, why they don't need to be in the distribution
        compileOnly(libs.maven3Artifact)
        compileOnly(libs.mavenResolverApi)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/NonNormalizedIdentityImmutableTransformExecution.java

            //
            // Note that we are not capturing this value in the actual inputs of the work; doing so would cause unnecessary cache misses.
            // This is why the hash is captured here and not in visitIdentityInputs().
            FileSystemLocationSnapshot inputArtifactSnapshot = fileSystemAccess.read(inputArtifact.getAbsolutePath());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:14:33 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/call_to_exported.py

      # module.
      #
      # If there is a call to an exported function, we create a wrapper function
      # that forwards to the other function and put the tf_saved_model attributes on
      # the wrapper.
      #
      # The reason for doing this is so that later interprocedural passes don't have
      # to worry about what to do with these attributes.
      # An example of where this would happen is when converting to XLA, which
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 28 19:09:38 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. src/runtime/netpoll_solaris.go

    // mode. Level triggering means we have to keep track of a few things
    // ourselves. After we receive an event for a file descriptor,
    // it's our responsibility to ask again to be notified for future
    // events for that descriptor. When doing this we must keep track of
    // what kind of events the goroutines are currently interested in,
    // for example a fd may be open both for reading and writing.
    //
    // A description of the high level operation of this code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/AbstractUserInputRenderer.java

            // This does leave a small window where some text may be captured prior to the prompt being fully displayed, however this is
            // better than doing things in the other order, where there will be a small window where text may not be captured after prompt is fully displayed.
            // This is only a problem for tooling; for a human (the audience for this feature) this makes no difference.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 05:02:18 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. pilot/pkg/xds/lds.go

    	case model.Waypoint:
    		if model.HasConfigsOfKind(req.ConfigsUpdated, kind.Address) {
    			// Waypoint proxies have a matcher against pod IPs in them. Historically, any LDS change would do a full
    			// push, recomputing push context. Doing that on every IP change doesn't scale, so we need these to remain
    			// incremental pushes.
    			// This allows waypoints only to push LDS on incremental pushes to Address type which would otherwise be skipped.
    			return true
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top