Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 196 for light (0.05 sec)

  1. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        queueDispatcher.enqueueResponse(MockResponse(body = "call1 response"))
    
        // We use a re-entrant dispatcher to initiate one HTTPS connection while the other is in flight.
        server.dispatcher =
          object : Dispatcher() {
            var requestCount = 0
    
            override fun dispatch(request: RecordedRequest): MockResponse {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	for idx, podSandboxID := range podSandboxIDs {
    		resp, err := m.runtimeService.PodSandboxStatus(ctx, podSandboxID, false)
    		// Between List (getSandboxIDByPodUID) and check (PodSandboxStatus) another thread might remove a container, and that is normal.
    		// The previous call (getSandboxIDByPodUID) never fails due to a pod sandbox not existing.
    		// Therefore, this method should not either, but instead act as if the previous call failed,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      EXPECT_EQ(clusters["test/z"], "");
    }
    
    // Note, this relies on other implementation details to test the
    // specific heuristic we care about here, so other changes might be at fault if
    // this CL breaks. What we care about is that if a ShapeConsumingOp can be
    // connected with a producer or consumer and cannot be clustered with both, it
    // should be clustered with the producer.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/runtime/framework.go

    	// as running, while filters like pod affinity are more likely to fail when
    	// the nominated pods are treated as not running. We can't just assume the
    	// nominated pods are running because they are not running right now and in fact,
    	// they may end up getting scheduled to a different node.
    	logger := klog.FromContext(ctx)
    	logger = klog.LoggerWithName(logger, "FilterWithNominatedPods")
    	ctx = klog.NewContext(ctx, logger)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  5. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrParseExpectedRightParenBuiltinFunctionCall: {
    		Code:           "ParseExpectedRightParenBuiltinFunctionCall",
    		Description:    "Did not find the expected right parenthesis character in the SQL expression.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrParseExpectedTypeName: {
    		Code:           "ParseExpectedTypeName",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  6. gradle/verification-metadata.xml

       You should then edit the origin to be "Verified". Note that editing those entries means you
       verified that the checksum matches.
    
       If the generation above did not resolve your issue, a task might be missing that exercise the
       dependency but is not covered by the current resolveAllDependencies. Edit the task definition to
       add the required task dependency.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        assertThat(data2.streamId).isEqualTo(3)
        assertArrayEquals("fghi".toByteArray(), data2.data)
      }
    
      /**
       * Confirm that we account for discarded data frames. It's possible that data frames are in-flight
       * just prior to us canceling a stream.
       */
      @Test fun discardedDataFramesAreCounted() {
        // Write the mocking script.
        peer.sendFrame().settings(Settings())
        peer.acceptFrame() // ACK
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  8. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    	reconciliationLoopFunc(ctx)
    	// The first detach will be triggered after at least 50ms (maxWaitForUnmountDuration in test).
    	time.Sleep(100 * time.Millisecond)
    	reconciliationLoopFunc(ctx)
    	// Right before detach operation is performed, the volume will be first removed from being reported
    	// as attached on node status (RemoveVolumeFromReportAsAttached). After UpdateNodeStatus operation which is expected to fail,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    const maxNameGenerationCreateAttempts = 8
    
    // Create inserts a new item according to the unique key from the object.
    // Note that registries may mutate the input object (e.g. in the strategy
    // hooks).  Tests which call this might want to call DeepCopy if they expect to
    // be able to examine the input and output objects for differences.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    		logger, ctx := ktesting.NewTestContext(t)
    		ctx, cancel := context.WithCancel(ctx)
    		defer cancel()
    
    		// Setup: the driver has the feature enabled, but the scheduler might not.
    		testEnv := newTestBinder(t, ctx)
    		testEnv.addCSIDriver(makeCSIDriver(provisioner, optIn))
    		testEnv.addCSIStorageCapacities(scenario.capacities)
    
    		// a. Init pvc cache
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top