Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 277 for ulong (0.05 sec)

  1. pkg/controller/cronjob/cronjob_controllerv2_test.go

    			jobPresentInCJActiveStatus: true,
    		},
    
    		// Controller should fail to schedule these, as there are too many missed starting times
    		// and either no deadline or a too long deadline.
    		"prev ran but done, long overdue, not past deadline, A": {
    			concurrencyPolicy:          "Allow",
    			schedule:                   onTheHour,
    			deadline:                   longDead,
    			ranPreviously:              true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

      private static final class UnsafeAtomicHelper extends AtomicHelper {
        static final sun.misc.Unsafe UNSAFE;
        static final long LISTENERS_OFFSET;
        static final long WAITERS_OFFSET;
        static final long VALUE_OFFSET;
        static final long WAITER_THREAD_OFFSET;
        static final long WAITER_NEXT_OFFSET;
    
        static {
          sun.misc.Unsafe unsafe = null;
          try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/AbstractFuture.java

      private static final class UnsafeAtomicHelper extends AtomicHelper {
        static final sun.misc.Unsafe UNSAFE;
        static final long LISTENERS_OFFSET;
        static final long WAITERS_OFFSET;
        static final long VALUE_OFFSET;
        static final long WAITER_THREAD_OFFSET;
        static final long WAITER_NEXT_OFFSET;
    
        static {
          sun.misc.Unsafe unsafe = null;
          try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                final long startRecordNumber = data.getCurrentStartRecordNumber();
                final long endRecordNumber = data.getCurrentEndRecordNumber();
                final List<String> pageNumbers = data.getPageNumberList();
                final boolean partial = data.isPartialResults();
                final String searchQuery = data.getSearchQuery();
                final long requestedTime = data.getRequestedTime();
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

            final long startTime = systemHelper.getCurrentTimeAsLong();
    
            GetResponse response = null;
            final GetRequestBuilder requestBuilder = client.prepareGet(index, id);
            if (condition.build(requestBuilder)) {
                response = requestBuilder.execute().actionGet(ComponentUtil.getFessConfig().getIndexSearchTimeout());
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  6. tensorflow/cc/gradients/math_grad.cc

    // by SumGrad and MeanGrad.
    Output SumGradHelper(const Scope& scope, const Operation& op,
                         const std::vector<Output>& grad_inputs) {
      // The partial derivative for any input along a "reduced" dimension
      // is just 1, so we only need replicate the output gradient on such a
      // dimension to its "expanded" shape.
      // Running example:
      // input is
      // [[a, b, c],
      //  [d, e, f]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

    };
    
    // Lowers ResizeNearestNeighbor to an indices computations with a gather along
    // the combined spatial dimensions. Generating the indices along the
    // width/height index could be used to gather along each of W and H dimension
    // of the input image array. To reduce to a single gather, these indices are
    // combined, so a single gather can be performed along the combined spatial
    // dimensions.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        return success();
      }
    };
    
    // Converts `TensorListConcatV2` into Unpack and Concat. First we unpack
    // the input tensorlist along the first dimension, which results in N (where N
    // is the first dim's size) tensors (each with shape [element_shape]). Then
    // we concatenate all those tensors along the first dimension.
    // The pattern will be rejected if either `element_shape` is not constant, or
    // the first dimension of `input` is not known.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

        private List<DependencyState> cachedFilteredDependencyStates;
    
        // exclusions optimizations
        private ExcludeSpec cachedNodeExclusions;
        private int previousIncomingEdgeCount;
        private long previousIncomingHash;
        private long incomingHash;
        private ExcludeSpec cachedModuleResolutionFilter;
    
        private StrictVersionConstraints ancestorsStrictVersionConstraints;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

      /**
       * Minimum outbound web socket message size (in bytes) that will be compressed.
       * The default is 1024 bytes.
       */
      @get:JvmName("minWebSocketMessageToCompress")
      val minWebSocketMessageToCompress: Long = builder.minWebSocketMessageToCompress
    
      internal val routeDatabase: RouteDatabase = builder.routeDatabase ?: RouteDatabase()
      internal val taskRunner: TaskRunner = builder.taskRunner ?: TaskRunner.INSTANCE
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
Back to top