Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for fairy (0.08 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    // Each client needs to be demanding enough to use more than its fair share,
    // or overall care needs to be taken about timing so that scheduling details
    // do not cause any client to actually request a significantly smaller share
    // than it theoretically should.
    // expectFair indicate whether the QueueSet is expected to be
    // fair in the respective halves of a split scenario;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/collection/CollectionsUtil.java

         *            キューの容量
         * @param fair
         *            {@code true}の場合、挿入または削除時にブロックされたスレッドに対するキューアクセス
         * @return {@link ArrayBlockingQueue}の新しいインスタンス
         * @see ArrayBlockingQueue#ArrayBlockingQueue(int, boolean)
         */
        public static <E> ArrayBlockingQueue<E> newArrayBlockingQueue(final int capacity, final boolean fair) {
            return new ArrayBlockingQueue<>(capacity, fair);
        }
    
        /**
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

          }
        }.test();
      }
    
      @GwtIncompatible // fairly slow (~40s)
      public void testConcatSingletonAndSingletonYieldsDoubleton() {
        new DoubletonIteratorTester() {
          @Override
          protected Iterator<Integer> newTargetIterator() {
            return Iterators.concat(iterateOver(1), iterateOver(2));
          }
        }.test();
      }
    
      @GwtIncompatible // fairly slow (~40s)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 13:01:51 UTC 2024
    - 55.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/deadness_analysis.cc

    // map from TensorFlow nodes to predicates.
    //
    //
    // MAPPING NODES TO PREDICATES, MODULO CYCLES
    // ------------------------------------------
    //
    // If we ignore cycles for a moment, computing predicates is fairly
    // straightforward.  We traverse the graph in a topological order, mapping each
    // node to a predicate based on the predicates its inputs are mapped to.  For
    // instance a Merge(X, Y) node will be mapped to OR(PredicateFor(X),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_function_test.cc

                string(TF_Message(s_)));
    
      TF_DeleteFunction(grad_func1);
      TF_DeleteFunction(grad_func2);
    }
    
    TEST_F(CApiFunctionTest, ImportFunctionDef) {
      /*
       * Using a fairly complex function with output names
       *
       *                  |  |  |
       *                  v  v  /
       *                  add  /
       *                   |  |
       *            +------+  |
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  6. src/go/types/expr.go

    			// length the same here because it makes sense to "guess" the length for
    			// the latter if we have a composite literal; e.g. for [n]int{1, 2, 3}
    			// where n is invalid for some reason, it seems fair to assume it should
    			// be 3 (see also Checked.arrayLength and go.dev/issue/27346).
    			if utyp.len < 0 {
    				utyp.len = n
    				// e.Type is missing if we have a composite literal element
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    				klog.ErrorS(err, "killContainer for pod failed", "containerName", containerInfo.name, "containerID", containerID, "pod", klog.KObj(pod))
    				return
    			}
    		}
    	}
    
    	// Keep terminated init containers fairly aggressively controlled
    	// This is an optimization because container removals are typically handled
    	// by container garbage collector.
    	m.pruneInitContainersBeforeStart(ctx, pod, podStatus)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  8. src/internal/trace/order.go

    	// Find it, and set our current context to it.
    	if status == go122.ProcSyscallAbandoned && oldState == ProcRunning {
    		// N.B. This is slow but it should be fairly rare.
    		found := false
    		for mid, ms := range o.mStates {
    			if ms.p == pid {
    				curCtx.M = mid
    				curCtx.P = pid
    				curCtx.G = ms.g
    				found = true
    			}
    		}
    		if !found {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  9. src/time/time.go

    func runtimeNano() int64
    
    // Monotonic times are reported as offsets from startNano.
    // We initialize startNano to runtimeNano() - 1 so that on systems where
    // monotonic time resolution is fairly low (e.g. Windows 2008
    // which appears to have a default resolution of 15ms),
    // we avoid ever reporting a monotonic time of 0.
    // (Callers may want to use 0 as "time not set".)
    var startNano int64 = runtimeNano() - 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  10. pkg/controller/replicaset/replica_set_test.go

    			t.Errorf("Unexpected action %+v", a)
    			break
    		}
    	}
    	if gets != 1 || updates != 2 {
    		t.Errorf("Expected 1 get and 2 updates, got %d gets %d updates", gets, updates)
    	}
    }
    
    // TODO: This test is too hairy for a unittest. It should be moved to an E2E suite.
    func doTestControllerBurstReplicas(t *testing.T, burstReplicas, numReplicas int) {
    	logger, ctx := ktesting.NewTestContext(t)
    	labelMap := map[string]string{"foo": "bar"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
Back to top