Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 71 for queuesa (0.43 sec)

  1. guava/src/com/google/common/cache/CacheBuilder.java

       * once after loading completes). Much internal cache management is performed at the segment
       * granularity. For example, access queues and write queues are kept per segment when they are
       * required by the selected eviction algorithm. As such, when writing unit tests it is not
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    }
    
    type SockaddrXDP struct {
    	Flags        uint16
    	Ifindex      uint32
    	QueueID      uint32
    	SharedUmemFD uint32
    	raw          RawSockaddrXDP
    }
    
    func (sa *SockaddrXDP) sockaddr() (unsafe.Pointer, _Socklen, error) {
    	sa.raw.Family = AF_XDP
    	sa.raw.Flags = sa.Flags
    	sa.raw.Ifindex = sa.Ifindex
    	sa.raw.Queue_id = sa.QueueID
    	sa.raw.Shared_umem_fd = sa.SharedUmemFD
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/deadness_analysis.cc

      // order guarantees that the exits in the ready queue are visited before
      // nodes that will become ready in the future.
      std::deque<Node*> ready;
      ready.push_back(src_node);
      // ready_enters_per_frame and ready_exits serve as a staging area to buffer
      // the ready enters/exits before they are moved to the `ready` queue for
      // controlling the start and end of a processing frame.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  4. src/syscall/zerrors_darwin_arm64.go

    	100: "protocol error",
    	101: "STREAM ioctl timeout",
    	102: "operation not supported on socket",
    	103: "policy not found",
    	104: "state not recoverable",
    	105: "previous owner died",
    	106: "interface output queue is full",
    }
    
    // Signal table
    var signals = [...]string{
    	1:  "hangup",
    	2:  "interrupt",
    	3:  "quit",
    	4:  "illegal instruction",
    	5:  "trace/BPT trap",
    	6:  "abort trap",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.8K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/runtime/framework.go

    		if err := f.expandMultiPointPlugins(logger, profile); err != nil {
    			return nil, err
    		}
    	}
    
    	if len(f.queueSortPlugins) != 1 {
    		return nil, fmt.Errorf("only one queue sort plugin required for profile with scheduler name %q, but got %d", profile.SchedulerName, len(f.queueSortPlugins))
    	}
    	if len(f.bindPlugins) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

                    // queuing the transforms for execution
                    // The problem can potentially also be triggered by including many direct dependencies so that the queued transforms start to execute before the main thread sees the second transform
                    componentFilter { it instanceof ModuleComponentIdentifier && it.module != 'test' }
                }.artifacts
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  7. src/runtime/mgcmark.go

    		//
    		// If this is because we were preempted, reschedule
    		// and try some more.
    		if gp.preempt {
    			Gosched()
    			goto retry
    		}
    
    		// Add this G to an assist queue and park. When the GC
    		// has more background credit, it will satisfy queued
    		// assists before flushing to the global credit pool.
    		//
    		// Note that this does *not* get woken up when more
    		// work is added to the work list. The theory is that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.31.md

    - Add apiserver.latency.k8s.io/apf-queue-wait annotation to the audit log to record the time spent waiting in apf queue ([#123919](https://github.com/kubernetes/kubernetes/pull/123919), [@hakuna-matatah](https://github.com/hakuna-matatah)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  9. pkg/controller/volume/persistentvolume/pv_controller.go

    	// Any write to API server would fail with version conflict - these objects
    	// have been already written.
    	volumes persistentVolumeOrderedIndex
    	claims  cache.Store
    
    	// Work queues of claims and volumes to process. Every queue should have
    	// exactly one worker thread, especially syncClaim() is not reentrant.
    	// Two syncClaims could bind two different claims to the same volume or one
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Sets.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Static utility methods pertaining to {@link Set} instances. Also see this class's counterparts
     * {@link Lists}, {@link Maps} and {@link Queues}.
     *
     * <p>See the Guava User Guide article on <a href=
     * "https://github.com/google/guava/wiki/CollectionUtilitiesExplained#sets">{@code Sets}</a>.
     *
     * @author Kevin Bourrillion
     * @author Jared Levy
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
Back to top