Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 70 for involved (0.25 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue.go

    	PluginName     string
    	QueueingHintFn framework.QueueingHintFn
    }
    
    // clusterEvent has the event and involved objects.
    type clusterEvent struct {
    	event framework.ClusterEvent
    	// oldObj is the object that involved this event.
    	oldObj interface{}
    	// newObj is the object that involved this event.
    	newObj interface{}
    }
    
    type priorityQueueOptions struct {
    	clock                             clock.Clock
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  2. src/runtime/pprof/pprof_test.go

    					// Spin for longer and longer as the test goes on. This
    					// goroutine will do O(N^2) work with the number of
    					// goroutines it launches. This should be slow relative to
    					// the work involved in collecting a goroutine profile,
    					// which is O(N) with the high-water mark of the number of
    					// goroutines in this process (in the allgs slice).
    					runtime.Gosched()
    				}
    				if i == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

                }
    
                if (module.hasPackageName()) {
                    // check package this class is defined in. The usage of ConstructedClassWithPackage here
                    // means, that the module package will not be involved when the
                    // compiler tries to find an inner class.
                    ConstructedClassWithPackage tmp = new ConstructedClassWithPackage(module.getPackageName(), name);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    				}[:seps.nClients],
    				concurrencyLimit:            seps.conc,
    				evalDuration:                time.Second * 24, // multiple of every period involved, so that margin can be 0 below
    				expectedFair:                []bool{true},
    				expectedFairnessMargin:      []float64{0},
    				expectAllRequests:           true,
    				evalInqueueMetrics:          true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    _Checks control dependencies_
    
    This pass analyzes control dependencies between islands and warns about
    dependencies that are not explainable by side effects of the involved ops.
    More precisely, for every minimal unexplainable control dependency path
    we emit op warnings for all involved ops. The pass does not report
    intermediate dummy ops for grouping control dependencies (Identity, NoOp),
    unless they are part of an unexplainable path between other ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  6. src/time/time.go

    // while November 6, 2011 1:15am occurred twice. In such cases, the
    // choice of time zone, and therefore the time, is not well-defined.
    // Date returns a time that is correct in one of the two zones involved
    // in the transition, but it does not guarantee which.
    //
    // Date panics if loc is nil.
    func Date(year int, month Month, day, hour, min, sec, nsec int, loc *Location) Time {
    	if loc == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    [[sec:setting_file_permissions]]
    == Setting file permissions
    
    Setting file permissions in Gradle involves specifying the permissions for files or directories created or modified during the build process.
    
    === Using `CopySpec.filePermissions{}`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  8. pkg/kubelet/pod_workers.go

    // pods should be provided via UpdatePod before SyncKnownPods is invoked).
    // Generally other sync loops are expected to separate "setup" and
    // "teardown" responsibilities and the information methods here assist in
    // each by centralizing that state. A simple visualization of the time
    // intervals involved might look like:
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Sets.java

        }
    
        /**
         * Copies the current contents of this set view into an existing set. This method has equivalent
         * behavior to {@code set.addAll(this)}, assuming that all the sets involved are based on the
         * same notion of equivalence.
         *
         * @return a reference to {@code set}, for convenience
         */
        // Note: S should logically extend Set<? super E> but can't due to either
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  10. src/regexp/syntax/parse.go

    					r[n-i] = lo
    				}
    				if hi > rhi {
    					r[n-i+1] = hi
    				}
    				return r
    			}
    		}
    	}
    
    	return append(r, lo, hi)
    }
    
    const (
    	// minimum and maximum runes involved in folding.
    	// checked during test.
    	minFold = 0x0041
    	maxFold = 0x1e943
    )
    
    // appendFoldedRange returns the result of appending the range lo-hi
    // and its case folding-equivalent runes to the class r.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top