Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 172 for ants (0.17 sec)

  1. src/cmd/compile/internal/ssagen/nowb.go

    	// write barriers to the call that inhibits them. Functions
    	// that are directly marked go:nowritebarrierrec are in this
    	// map with a zero-valued nowritebarrierrecCall. This also
    	// acts as the set of marks for the BFS of the call graph.
    	funcs := make(map[*ir.Func]nowritebarrierrecCall)
    	// q is the queue of ODCLFUNC Nodes to visit in BFS order.
    	var q ir.NameQueue
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 17:29:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. src/net/tcpsock.go

    		if preKeepAliveHook != nil {
    			preKeepAliveHook(fd)
    		}
    		c.SetKeepAliveConfig(keepAliveCfg)
    		if keepAliveHook != nil {
    			keepAliveHook(keepAliveCfg)
    		}
    	}
    	return c
    }
    
    // DialTCP acts like [Dial] for TCP networks.
    //
    // The network must be a TCP network name; see func Dial for details.
    //
    // If laddr is nil, a local address is automatically chosen.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/events/v1/generated.proto

      // regarding contains the object this Event is about. In most cases it's an Object reporting controller
      // implements, e.g. ReplicaSetController implements ReplicaSets and this event is emitted because
      // it acts on some changes in a ReplicaSet object.
      // +optional
      optional k8s.io.api.core.v1.ObjectReference regarding = 8;
    
      // related is the optional secondary object for more complex actions. E.g. when regarding object triggers
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/events/v1/generated.proto

      // regarding contains the object this Event is about. In most cases it's an Object reporting controller
      // implements, e.g. ReplicaSetController implements ReplicaSets and this event is emitted because
      // it acts on some changes in a ReplicaSet object.
      // +optional
      optional .k8s.io.api.core.v1.ObjectReference regarding = 8;
    
      // related is the optional secondary object for more complex actions. E.g. when regarding object triggers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/file_system_watching.adoc

    If your project files include symlinks, symlinked files do not benefit from file system-watching optimizations.
    --
    
    == Unsupported File Systems
    
    When enabled by default, file system watching acts conservatively when it encounters content on unsupported file systems.
    This can happen if you mount a project directory or subdirectory from a network drive.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 26 16:37:56 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_executor.cc

    }  // namespace
    
    RuntimeFallbackExecutor::RuntimeFallbackExecutor(int64_t num_threads)
        : intra_op_(std::make_unique<IntraOpThreadPool>(num_threads)) {
      // Create a HostContext for running TFRT functions. Concurrent work queue acts
      // similar to the Tensorflow `inter-op` thread pool, so we'll match the size.
      host_context_ = num_threads ? CreateMultiThreadedHostContext(num_threads)
                                  : CreateSingleThreadedHostContext();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/preemption/preemption_test.go

    			},
    			expected: sets.New[string](),
    		},
    		{
    			name: "ErrReasonAntiAffinityRulesNotMatch should be tried as it indicates that the pod is unschedulable due to inter-pod anti-affinity",
    			nodesStatuses: framework.NodeToStatusMap{
    				"node1": framework.NewStatus(framework.Unschedulable, interpodaffinity.ErrReasonAntiAffinityRulesNotMatch),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/ExecutionList.java

      /** Logger to log exceptions caught when running runnables. */
      private static final LazyLogger log = new LazyLogger(ExecutionList.class);
    
      /**
       * The runnable, executor pairs to execute. This acts as a stack threaded through the {@link
       * RunnableExecutorPair#next} field.
       */
      @GuardedBy("this")
      @CheckForNull
      private RunnableExecutorPair runnables;
    
      @GuardedBy("this")
      private boolean executed;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 21:17:24 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/single_versions.adoc

    ** The symbol `]` can be used instead of `(` for an exclusive lower bound, and `[` instead of `)` for exclusive upper bound. e.g `]1.0, 2.0[`
    ** An upper bound exclude acts as a prefix exclude.
    This means that `[1.0, 2.0[` will also exclude all versions starting with `2.0` that are smaller than `2.0`.
    For example versions like `2.0-dev1` or `2.0-SNAPSHOT` are no longer included in the range.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:46:26 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/events/v1/types.go

    	// regarding contains the object this Event is about. In most cases it's an Object reporting controller
    	// implements, e.g. ReplicaSetController implements ReplicaSets and this event is emitted because
    	// it acts on some changes in a ReplicaSet object.
    	// +optional
    	Regarding corev1.ObjectReference `json:"regarding,omitempty" protobuf:"bytes,8,opt,name=regarding"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top