Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 4,069 for simply (0.11 sec)

  1. src/net/rlimit_unix.go

    // file descriptor so we limit this to less than the number of
    // permitted open files. On some systems, notably Darwin, if
    // getaddrinfo is unable to open a file descriptor it simply returns
    // EAI_NONAME rather than a useful error. Limiting the number of
    // concurrent getaddrinfo calls to less than the permitted number of
    // file descriptors makes that error less likely. We don't bother to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. hack/verify-import-boss.sh

    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    kube::util::require-jq
    
    # Doing it this way is MUCH faster than simply saying "all", and there doesn't
    # seem to be a simpler way to express "this whole workspace".
    packages=()
    kube::util::read-array packages < <(
        go work edit -json | jq -r '.Use[].DiskPath + "/..."'
    )
    
    GOPROXY=off \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. src/runtime/testdata/testprogcgo/raceprof.go

    // We want a bunch of different profile stacks that collide in the
    // hash table maintained in runtime/cpuprof.go. This code knows the
    // size of the hash table (1 << 10) and knows that the hash function
    // is simply multiplicative.
    void raceprofTraceback(void* parg) {
    	struct cgoTracebackArg* arg = (struct cgoTracebackArg*)(parg);
    	raceprofCount++;
    	arg->buf[0] = raceprofCount * (1 << 10);
    	arg->buf[1] = 0;
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 18:13:14 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileAccessTracker.java

    /**
     * Tracks access to files.
     */
    public interface FileAccessTracker {
        /**
         * Marks the supplied file as accessed.
         *
         * If the supplied file is unknown to this tracker, implementations must
         * simply ignore it instead of throwing an exception. However, depending
         * on the use case, implementations may throw an exception when marking a
         * known file fails.
         */
        void markAccessed(File file);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. pilot/pkg/config/monitor/README.md

        1*time.Second,   // How quickly the monitor requests new snapshots
        getSnapshotFunc) // The function used to acquire new config
    ```
    
    ## Running a Monitor
    
    Once created, you simply run the monitor, providing a stop channel.
    
    ```golang
    stop := make(chan struct{})
    ...
    monitor.Start(stop)
    ```
    
    The `Start` method will kick off an asynchronous polling loop and will return immediately.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/RemoteConnection.java

     */
    
    package org.gradle.internal.remote.internal;
    
    import javax.annotation.Nullable;
    
    /**
     * <p>A messaging end-point with some remote, or otherwise unreliable, peer.</p>
     *
     * <p>This interface simply specializes the exceptions thrown by the methods of this connection.</p>
     */
    public interface RemoteConnection<T> extends Connection<T> {
        /**
         * {@inheritDoc}
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/op_or_arg_name_mapper.cc

        // If the location is none of the expected types, then simply use name
        // generated using the op type.
        return std::string(op->getName().getStringRef());
      }
      auto val = op_or_val.dyn_cast<mlir::Value>();
      auto name_from_loc = mlir::GetNameFromLoc(val.getLoc());
      if (!name_from_loc.empty()) return name_from_loc;
      // If the location is none of the expected types, then simply use name
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCompileTimeConstantProvider.kt

                // }
                // ```
                // `false` does not have a corresponding elements on the FIR side and hence the containing `FirWhenBranch` is returned. In this
                // case, we simply report null since FIR does not know about it.
                else -> null
            }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    To migrate a multi-module Maven build, simply follow these steps:
    
     1. Create a settings script that matches the `<modules>` block of the root POM.
    +
    For example, this `<modules>` block:
    +
    [source,xml]
    ----
    <modules>
        <module>simple-weather</module>
        <module>simple-webapp</module>
    </modules>
    ----
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  10. src/runtime/metrics/example_test.go

    	const myMetric = "/memory/classes/heap/free:bytes"
    
    	// Create a sample for the metric.
    	sample := make([]metrics.Sample, 1)
    	sample[0].Name = myMetric
    
    	// Sample the metric.
    	metrics.Read(sample)
    
    	// Check if the metric is actually supported.
    	// If it's not, the resulting value will always have
    	// kind KindBad.
    	if sample[0].Value.Kind() == metrics.KindBad {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 08 16:09:01 UTC 2021
    - 2.6K bytes
    - Viewed (0)
Back to top