Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 444 for sometimes (0.17 sec)

  1. src/net/tcpsock_posix.go

    	//	https://golang.org/issue/2690
    	//	https://stackoverflow.com/questions/4949858/
    	//
    	// The opposite can also happen: if we ask the kernel to pick an appropriate
    	// originating local address, sometimes it picks one that is already in use.
    	// So if the error is EADDRNOTAVAIL, we have to try again too, just for
    	// a different reason.
    	//
    	// The kernel socket code is no doubt enjoying watching us squirm.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/WithEstimatedSize.java

         * will contain. With this method we can properly size it and avoid resizes. The reason we use an
         * estimate size instead of the real size is that sometimes the real size is too expensive to compute.
         * Typically in a filtered collection you would have to actually do the filtering before knowing the size,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 18 08:11:23 UTC 2017
    - 2.7K bytes
    - Viewed (0)
  3. build/build-image/Dockerfile

    ARG KUBE_CROSS_IMAGE
    ARG KUBE_CROSS_VERSION
    
    FROM ${KUBE_CROSS_IMAGE}:${KUBE_CROSS_VERSION}
    
    # Mark this as a kube-build container
    RUN touch /kube-build-image
    
    # To run as non-root we sometimes need to rebuild go stdlib packages.
    RUN chmod -R a+rwx /usr/local/go/pkg
    
    # For running integration tests /var/run/kubernetes is required
    # and should be writable by user
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 05 23:26:09 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.idea.model.IdeaModule.xml

                    </tr>
                </thead>
                <tr>
                    <td>name</td>
                    <td><literal><replaceable>${project.name}</replaceable> (sometimes prefixed with parts of <replaceable>${project.path}</replaceable> to guarantee uniqueness)</literal></td>
                    <td/>
                </tr>
                <tr>
                    <td>sourceDirs</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/internal/cache/CacheMarkingStrategyIntegrationTest.groovy

            "caches"        | "CACHEDIR_TAG"  | false     | "marked"
            "caches"        | "CACHEDIR_TAG"  | true      | "marked"
            // Daemon logs will be generated by test framework sometimes, so marked even if not created
            "daemon"        | "NONE"          | false     | "not marked"
            "daemon"        | "NONE"          | true      | "not marked"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 15:10:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/util/cgroups_linux.go

    	if err != nil {
    		return "", err
    	}
    
    	// If the cgroup name/path is absolute do not look relative to the cgroup of the init process.
    	if filepath.IsAbs(cgroupPath) {
    		// Sometimes subsystems can be mounted together as 'cpu,cpuacct'.
    		return filepath.Join(root, mnt, cgroupPath), nil
    	}
    
    	parentPath, err := getCgroupV1ParentPath(mnt, root)
    	if err != nil {
    		return "", err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 12 07:50:19 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/function/function.h

      TfrtFunctionCompileOptions() {
        tpu_fuse_ops = false;
        // Currently grappler is not correctly applied in the eager execution of TF
        // functions, as it may sometimes remove arguments and results.
        enable_grappler = false;
      }
    
      // If true, use ServingCoreSelector to pick TPU core. Otherwise, obtain core
      // location from assigned device name.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 04:50:20 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. src/runtime/trace/annotation.go

    	//   hard and makes the code less readable.
    	//     e.g. code block nested deep in the loop with various
    	//          exit point with return values
    	// - Refactoring the code to use this API with closure can
    	//   cause different GC behavior such as retaining some parameters
    	//   longer.
    	// This causes more churns in code than I hoped, and sometimes
    	// makes the code less readable.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftLibraryCppInteroperabilityIntegrationTest.groovy

    import org.gradle.nativeplatform.fixtures.app.SwiftGreeterUsingCppFunction
    import org.gradle.test.fixtures.file.DoesNotSupportNonAsciiPaths
    
    @DoesNotSupportNonAsciiPaths(reason = "Swift sometimes fails when executed from non-ASCII directory")
    class SwiftLibraryCppInteroperabilityIntegrationTest extends AbstractSwiftMixedLanguageIntegrationTest {
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/RangeMap.java

    @DoNotMock("Use ImmutableRangeMap or TreeRangeMap")
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public interface RangeMap<K extends Comparable, V> {
      /*
       * TODO(cpovirk): These docs sometimes say "map" and sometimes say "range map." Pick one, or at
       * least decide on a policy for when to use which.
       */
    
      /**
       * Returns the value associated with the specified key, or {@code null} if there is no such value.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top