Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 38 for forall (0.1 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/DaemonContextParser.java

                    Pattern.MULTILINE + Pattern.DOTALL);
            Matcher matcher = pattern.matcher(source);
    
            if (matcher.matches()) {
                String uid = matcher.group(1) == null ? null : matcher.group(1).substring("uid=".length());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 09:22:54 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. testing/internal-testing/src/main/groovy/org/gradle/util/internal/AlwaysTrue.java

        }
    
        @Override
        public Boolean call(Object... args) {
            return true;
        }
    
        @Override
        public Boolean call(Object arguments) {
            return true;
        }
    
        public Boolean doCall() {
            return true;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. src/runtime/netpoll_kqueue_pipe.go

    // until NetBSD 10.0, check out https://www.netbsd.org/releases/formal-10/NetBSD-10.0.html
    // Therefore we use the pipe to wake up the kevent on NetBSD at this point. Get back here
    // and switch to EVFILT_USER when we bump up the minimal requirement of NetBSD to 10.0.
    // Alternatively, maybe we can use EVFILT_USER on the NetBSD by checking the kernel version
    // via uname(3) and fall back to the pipe if the kernel version is older than 10.0.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/sparsecore_passes.h

    // rewrite the graph to use pipelining for better device utilization.
    std::unique_ptr<OperationPass<ModuleOp>> CreateEmbeddingSequencingPass();
    
    // This is a strictly sequential and formally correct fallback option for the
    // embedding pipelining pass intended for debugging during pipelining
    // development.
    std::unique_ptr<OperationPass<ModuleOp>> CreateEmbeddingPipeliningPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:42:09 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AntFileSetBuilder.java

                dynamicObject.invokeMethod(nodeName == null ? "fileset" : nodeName, Collections.singletonMap("dir", AntUtil.maskFilename(tree.getDir().getAbsolutePath())), new Closure<Void>(this) {
                    public Object doCall(Object ignore) {
                        return tree.getPatterns().addToAntBuilder(node, null);
                    }
                });
            }
            return null;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/fiat/README

    The code in this package was autogenerated by the fiat-crypto project
    at version v0.0.9 from a formally verified model, and by the addchain
    project at a recent tip version.
    
        docker build -t fiat-crypto:v0.0.9 .
        go install github.com/mmcloughlin/addchain/cmd/addchain@v0.3.1-0.20211027081849-6a7d3decbe08
        ../../../../../bin/go run generate.go
    
    fiat-crypto code comes under the following license.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AntFileCollectionBuilder.java

            final DynamicObject dynamicObject = new BeanDynamicObject(node);
            dynamicObject.invokeMethod(childNodeName == null ? "resources" : childNodeName, new Closure(this) {
                public Object doCall(Object ignore) {
                    for (File file : files) {
                        dynamicObject.invokeMethod("file", Collections.singletonMap("file", AntUtil.maskFilename(file.getAbsolutePath())));
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. VULNERABILITY_REPORT.md

    # Vulnerability Management Policy
    
    This document formally describes the process of addressing and managing a
    reported vulnerability that has been found in the MinIO server code base,
    any directly connected ecosystem component or a direct / indirect dependency
    of the code base.
    
    ## Scope
    
    The vulnerability management policy described in this document covers the
    process of investigating, assessing and resolving a vulnerability report
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/util/internal/ClosureBackedAction.java

                        copy.call(delegate);
                    }
                }
            } catch (groovy.lang.MissingMethodException e) {
                if (Objects.equal(e.getType(), closure.getClass()) && Objects.equal(e.getMethod(), "doCall")) {
                    throw new InvalidActionClosureException(closure, delegate);
                }
                // https://github.com/apache/groovy/commit/75c068207ba24648ea2d698c520601c6fcf0a45b
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectModelAccessTrackingClosure.kt

    ) : Closure<T>(
        trackingProjectAccess(crossProjectModelAccess, referrerProject, delegate.owner),
        trackingProjectAccess(crossProjectModelAccess, referrerProject, delegate.thisObject)
    ) {
        @Suppress("unused")
        fun doCall(vararg args: Any) {
            val numClosureArgs = delegate.maximumNumberOfParameters
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top