Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 204 for haninge (0.32 sec)

  1. tensorflow/compiler/jit/device_util.h

    #include "tensorflow/core/framework/types.h"
    
    namespace tensorflow {
    namespace jit {
    class DeviceInfoCache;
    class DeviceSet;
    
    // Instances of DeviceId represent TensorFlow devices as integers.
    //
    // This helps avoid having to manipulate device names as strings when
    // auto-clustering.
    class DeviceId {
     public:
      DeviceId(DeviceId&&) = default;
      DeviceId(const DeviceId&) = default;
      DeviceId& operator=(const DeviceId&) = default;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 17:18:31 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_container_windows.go

    		// will better follow the intent of the user. At one point CpuWeights were set, but this prevented limits from having any effect.
    
    		// There are 3 parts to how this works:
    		// Part one - Windows kernel
    		//   cpuMaximum is documented at https://docs.microsoft.com/en-us/virtualization/windowscontainers/manage-containers/resource-controls
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/route/retry/retry_test.go

    				g.Expect(policy.RetriableStatusCodes).To(Equal([]uint32{503}))
    			},
    		},
    		{
    			name: "TestRetryOnWithWhitespace",
    			// Create a route with a retry policy with retryOn having white spaces.
    			route: &networking.HTTPRoute{
    				Retries: &networking.HTTPRetry{
    					// Explicitly not retrying.
    					Attempts: 2,
    					RetryOn:  " some,	,fake ,	conditions, ,",
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    === Configuring the per project lock file name and location
    
    When using the single lock file per project, you can configure its name and location.
    The main reason for providing this is to enable having a file name that is determined by some project properties, effectively allowing a single project to store different lock state for different execution contexts.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache-base/src/main/kotlin/org/gradle/internal/cc/base/services/ConfigurationCacheEnvironmentChangeTracker.kt

        class SystemPropertyRemove(val key: String) : SystemPropertyChange()
    
        /**
         * This is a placeholder for system properties that were set but then removed. Having this in the map marks
         * the property as mutated for the rest of the configuration phase but doesn't store the key in cache.
         */
        object SystemPropertyIgnored : SystemPropertyChange()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. subprojects/core/src/testFixtures/groovy/org/gradle/process/ShellScript.groovy

        protected String getRelativePath(File baseDir) {
            // Do not use Groovy's baseDir.relativePath there. It has a custom implementation
            // and assumes that having "/" as a separator in Windows path is fine. It isn't.
            Path basePath = baseDir.absoluteFile.toPath()
            Path scriptPath = scriptFile.absoluteFile.toPath()
    
            return basePath.relativize(scriptPath).toString()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/AbstractKotlinScriptModelCrossVersionTest.groovy

            if (GradleVersion.version(releasedGradleVersion) == GradleVersion.version("6.5.1")) {
                toolingApi.requireIsolatedUserHome()
            }
            // Having this unset is now deprecated, will default to `false` in Gradle 9.0
            // TODO remove - see https://github.com/gradle/gradle/issues/26810
            file('gradle.properties') << 'org.gradle.kotlin.dsl.skipMetadataVersionCheck=false'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. src/net/tcpsock_posix.go

    	// local ports, regardless of destination port. If a kernel happens to
    	// pick local port 50001 as the source for a Dial("tcp", "", "localhost:50001"),
    	// then the Dial will succeed, having simultaneously connected to itself.
    	// This can only happen when we are letting the kernel pick a port (laddr == nil)
    	// and when there is no listener for the destination address.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/path-params-numeric-validations.md

        These functions are there (instead of just using the classes directly) so that your editor doesn't mark errors about their types.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 01 21:05:52 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. src/testing/fstest/mapfs.go

    // to avoid an infinite recursion when implementing special
    // methods in terms of helpers that would use them.
    // (In general, implementing these methods using the package fs helpers
    // is redundant and unnecessary, but having the methods may make
    // MapFS exercise more code paths when used in tests.)
    type fsOnly struct{ fs.FS }
    
    func (fsys MapFS) ReadFile(name string) ([]byte, error) {
    	return fs.ReadFile(fsOnly{fsys}, name)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top