Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 255 for ulong (0.04 sec)

  1. 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 (1)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    }
    
    var map_TableOptions = map[string]string{
    	"":              "TableOptions are used when a Table is requested by the caller.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/test/test.go

    	UsageLine:   testUsage,
    	Short:       "test packages",
    	Long: `
    'Go test' automates testing the packages named by the import paths.
    It prints a summary of the test results in the format:
    
    	ok   archive/tar   0.011s
    	FAIL archive/zip   0.022s
    	ok   compress/gzip 0.033s
    	...
    
    followed by detailed output for each failed package.
    
    'Go test' recompiles each package along with any files with names matching
    the file pattern "*_test.go".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top