Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 700 for dying (0.2 sec)

  1. pkg/volume/util/fsquota/common/quota_common_linux.go

    	FSQuotaAccounting QuotaType = 1 << iota
    	// FSQuotaEnforcing for quotas for enforcement
    	FSQuotaEnforcing QuotaType = 1 << iota
    )
    
    // FirstQuota is the quota ID we start with.
    // XXXXXXX Need a better way of doing this...
    var FirstQuota QuotaID = 1048577
    
    // MountsFile is the location of the system mount data
    var MountsFile = "/proc/self/mounts"
    
    // MountParseRegexp parses out /proc/sys/self/mounts
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 28 06:09:31 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/cover_coverpkg_with_init.txt

    # Testcase inspired by issue #58770, intended to verify that we're
    # doing the right thing when running "go test -coverpkg=./... ./..."
    # on a collection of packages where some have init functions and some
    # do not, some have tests and some do not.
    
    [short] skip
    [!GOEXPERIMENT:coverageredesign] skip
    
    # Verify correct statements percentages. We have a total of 10
    # statements in the packages matched by "./..."; package "a" (for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 30 12:33:44 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. manifests/charts/ztunnel/templates/daemonset.yaml

                drop:
                - ALL
                add: # See https://man7.org/linux/man-pages/man7/capabilities.7.html
                - NET_ADMIN # Required for TPROXY and setsockopt
                - SYS_ADMIN # Required for `setns` - doing things in other netns
                - NET_RAW # Required for RAW/PACKET sockets, TPROXY
              readOnlyRootFilesystem: true
              runAsGroup: 1337
              runAsNonRoot: false
              runAsUser: 0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 01:33:52 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top