Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 623 for isSelect (0.3 sec)

  1. pkg/queue/delay.go

    	task := &delayTask{do: t, runAt: time.Now().Add(delay)}
    	d.pushInternal(task)
    }
    
    // pushInternal will enqueue the delayTask with retries.
    func (d *delayQueue) pushInternal(task *delayTask) {
    	select {
    	case d.enqueue <- task:
    	// buffer has room to enqueue
    	default:
    		// TODO warn and resize buffer
    		// if the buffer is full, we take the more expensive route of locking and pushing directly to the heap
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 06:27:31 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  2. .github/ISSUE_TEMPLATE/bug_report.yaml

          description: What actually happened?
        validations:
          required: true
    
      - type: dropdown
        attributes:
          label: Packages
          description: If this issue is package-specific, then please select the relevant packages.
          multiple: true
          options:
            - com.google.common.annotations
            - com.google.common.base
            - com.google.common.cache
            - com.google.common.collect
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 27 19:53:41 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. releasenotes/notes/gateway-api118.yaml

        You can check if you are using this feature with the following command:
    
        {{< text bash >}}
        $ kubectl get gateways.gateway.networking.k8s.io -ojson | jq -r '.items[] | select(.spec.gatewayClassName == "istio") | select((.spec.addresses | length) == 0) | "Found managed gateway: " + .metadata.namespace + "/" + .metadata.name'
        Found managed gateway: default/gateway
        {{< /text >}}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 05 08:37:21 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/DefaultVisitedArtifactSet.java

            this.artifactSetResolver = artifactSetResolver;
            this.artifactVariantSelector = artifactVariantSelector;
        }
    
        @Override
        public SelectedArtifactSet select(ArtifactSelectionSpec spec) {
            SelectedArtifactResults artifacts = artifactsResults.select(artifactVariantSelector, spec, false);
            return new DefaultSelectedArtifactSet(artifactSetResolver, graphResults, artifacts.getArtifacts(), resolutionHost);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 03:03:36 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/plugins/posix/BUILD

        hdrs = ["posix_filesystem_helper.h"],
        deps = [":copy_file"],
    )
    
    # On Linux, we can copy files faster using `sendfile`. But not elsewhere.
    # Hence, this private library to select which implementation to use.
    cc_library(
        name = "copy_file",
        srcs = select({
            "//tensorflow:linux_x86_64": ["copy_file_linux.cc"],
            "//conditions:default": ["copy_file_portable.cc"],
        }),
        hdrs = ["copy_file.h"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Mar 24 20:08:23 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/NoBuildDependenciesArtifactSet.java

        public NoBuildDependenciesArtifactSet(ArtifactSet set) {
            this.set = set;
        }
    
        @Override
        public ResolvedArtifactSet select(ArtifactVariantSelector variantSelector, ArtifactSelectionSpec spec) {
            final ResolvedArtifactSet selectedArtifacts = set.select(variantSelector, spec);
            if (selectedArtifacts == ResolvedArtifactSet.EMPTY) {
                return selectedArtifacts;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/collector/ProjectsSelector.java

    import org.apache.maven.project.MavenProject;
    import org.apache.maven.project.ProjectBuildingException;
    
    /**
     * Facade to select projects for a given set of pom.xml files.
     */
    public interface ProjectsSelector {
        /**
         * Select Maven projects from a list of POM files.
         * @param files List of POM files.
         * @param request The {@link MavenExecutionRequest}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testcarchive/testdata/libgo2/libgo2.go

    //
    //export RunGoroutines
    func RunGoroutines() {
    	for i := 0; i < 4; i++ {
    		go func() {
    			runtime.LockOSThread()
    			select {}
    		}()
    	}
    }
    
    // Block blocks the current thread while running Go code.
    //
    //export Block
    func Block() {
    	select {}
    }
    
    var P *byte
    
    // TestSEGV makes sure that an invalid address turns into a run-time Go panic.
    //
    //export TestSEGV
    func TestSEGV() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.css

      box-shadow: 0 1px 5px rgba(0,0,0,.3);
      font-size: 100%;
      text-transform: none;
      white-space: nowrap;
    }
    .menu-item, .submenu {
      user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      -webkit-user-select: none;
    }
    .submenu hr {
      border: 0;
      border-top: 2px solid #eee;
    }
    .submenu a {
      display: block;
      padding: .5em 1em;
      text-decoration: none;
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  10. pkg/collateral/predicate.go

    type SelectMetricFn func(monitoring.MetricDefinition) bool
    
    // DefaultSelectEnvFn is used to select all environment variables.
    func DefaultSelectEnvFn(_ env.Var) bool {
    	return true
    }
    
    // DefaultSelectMetricFn is used to select all metrics.
    func DefaultSelectMetricFn(_ monitoring.MetricDefinition) bool {
    	return true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top