Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 39 for Eintrag (0.24 sec)

  1. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_executor.cc

    // -------------------------------------------------------------------------- //
    
    namespace {
    // Thread pool for running `intra-op` tasks scheduled by the fallback kernels.
    class IntraOpThreadPool : public ThreadPoolInterface {
     public:
      explicit IntraOpThreadPool(int64_t num_threads)
          : tpool_(Env::Default(), "intra-op",
                   std::max(1, static_cast<int32_t>(num_threads))) {}
    
      void Schedule(std::function<void()> fn) override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. samples/external/README.md

    # External Services
    
    By default, Istio-enabled services are unable to access services and URLs outside the cluster. Pods use <i>iptables</i> to transparently redirect all outbound traffic to the sidecar proxy, which only handles intra-cluster destinations.
    
    See [the Egress Task](https://istio.io/docs/tasks/traffic-management/egress/) for
    information on configuring Istio to contact external services.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/ReadelfBinaryInfoTest.groovy

     0x000000000000000e (SONAME)             Library soname: [heythere]
     0x000000000000000c (INIT)               0x668
    """],
                ["German", """
    Dynamische Sektion an Offset 0x1a6da8 enthält 26 Einträge:
      Tag       Typ                          Name/Wert
     0x00000001 (NEEDED)                     Gemeinsame Bibliothek [ld-linux.so.2]
     0x0000000e (SONAME)                     soname der Bibliothek: [heythere]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. test/stackobj2.go

    			// Make sure x.data hasn't been collected.
    			if got := *x.data; got != i {
    				panic(fmt.Sprintf("bad data want %d, got %d", i, got))
    			}
    		}
    		return
    	}
    	// Put 2 objects in each frame, to test intra-frame pointers.
    	// Use both orderings to ensure the linked list isn't always in address order.
    	var a, b T
    	if n%3 == 0 {
    		a.data = newInt(n)
    		a.next = x
    		a.next2 = x
    		b.data = newInt(n - 1)
    		b.next = &a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 03 19:54:29 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/RepositoryHandler.java

        /**
         * Adds a repository which looks in Bintray's JCenter repository for dependencies.
         * <p>
         * The URL used to access this repository is {@literal "https://jcenter.bintray.com/"}.
         * The behavior of this repository is otherwise the same as those added by {@link #maven(org.gradle.api.Action)}.
         * <p>
         * Examples:
         * <pre class='autoTestedWithDeprecations'>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 03:42:11 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/MonolithicNativeProjectGeneratorTask.groovy

     * component per project so we can use parallel project execution. Generates headers, C and C++
     * files.
     *
     * "monolithic" here means the project follows a monorepo layout. If we used intra-parallel
     * execution, this might be built as a single project with many components instead.
     *
     * The project also allows for "overlapping" inputs where the build output and source files are
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/DefaultRepositoryHandler.java

        public static final String DEFAULT_BINTRAY_JCENTER_REPO_NAME = "BintrayJCenter";
        public static final String BINTRAY_JCENTER_URL = "https://jcenter.bintray.com/";
        public static final String GOOGLE_REPO_NAME = "Google";
    
        public static final String FLAT_DIR_DEFAULT_NAME = "flatDir";
        private static final String MAVEN_REPO_DEFAULT_NAME = "maven";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. docs/fr/docs/project-generation.md

    * Intégration Python facile avec **Jupyter Kernels** pour le développement à distance ou intra-Docker avec des extensions comme Atom Hydrogen ou Visual Studio Code Jupyter.
    * Frontend **Vue** :
        * Généré avec Vue CLI.
        * Gestion de l'**Authentification JWT**.
        * Page de connexion.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 02 14:18:06 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/build.gradle

                    "snippet-build-cache-configure-task_kotlin_configureTask.sample",
                    // TODO(mlopatkin) These snippets use bintray plugin which is not fully CC-compatible. Remove bintray plugin from samples.
                    "snippet-plugins-buildscript_groovy_sanityCheck.sample",
                    "snippet-plugins-buildscript_kotlin_sanityCheck.sample",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationRepositoriesBuildOperationIntegrationTest.groovy

                    ARTIFACT_URLS: [],
                    METADATA_SOURCES: ['mavenPom'],
                    AUTHENTICATED: false,
                    AUTHENTICATION_SCHEMES: [],
                    URL: 'https://jcenter.bintray.com/',
                ]
            ]
        }
    
        private static String googleRepoBlock() {
            "repositories { google() }"
        }
    
        private static Map expectedGoogleRepo() {
            [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 22.2K bytes
    - Viewed (0)
Back to top