Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 240 for splay_ (0.13 sec)

  1. test-site/app/models/ContentsCreator.java

    import org.apache.http.client.methods.HttpGet;
    import org.apache.http.client.methods.HttpUriRequest;
    import org.apache.http.impl.client.HttpClientBuilder;
    import org.apache.http.util.EntityUtils;
    import play.Logger;
    
    import java.util.*;
    import java.util.concurrent.LinkedBlockingQueue;
    
    public class ContentsCreator {
    
        int max = 10;
    
        public void create() {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Fri Nov 06 08:48:32 UTC 2015
    - 3.7K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/common/admin/header.jsp

    				title="<la:message key="labels.tooltip_run_crawler" />"><a class="nav-link"
    									 href="${contextPath}/admin/scheduler/details/4/default_crawler"><em
    					class="fa fa-play-circle"></a></li>
    		</c:if>
    		<c:if test="${not empty forumLink}">
    			<li class="nav-item" data-toggle="tooltip" data-placement="left"
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 24 03:00:28 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  3. cmd/signature-v4-utils_test.go

    	signedHeaders = append(signedHeaders, "expect")
    	// expected header values.
    	expectedHost := "play.min.io:9000"
    	expectedContentSha256 := "1234abcd"
    	expectedTime := UTCNow().Format(iso8601Format)
    	expectedTransferEncoding := "gzip"
    	expectedExpect := "100-continue"
    
    	r, err := http.NewRequest(http.MethodGet, "http://play.min.io:9000", nil)
    	if err != nil {
    		t.Fatal("Unable to create http.Request :", err)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 05 21:26:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/dataflow_actions.adoc

    A preferred way of executing work in a Gradle build is using a task.
    However, some kinds of work do not fit tasks well, such as custom handling of the build failure.
    
    What if you want to play a cheerful sound when the build succeeds and a sad one when it fails?
    This work piece has to process the task execution result, so it cannot be a task itself.
    
    The Dataflow Actions API provides a way to schedule this type of work.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/wizard/admin_wizard_start.jsp

                                            name="startCrawling"
                                            value="<la:message key="labels.wizard_button_start_crawling"/>">
                                        <em class="fa fa-play-circle">
                                        <la:message key="labels.wizard_button_start_crawling"/>
                                    </button>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 4K bytes
    - Viewed (0)
  6. .github/workflows/release-branch-cherrypick.yml

            token: ${{ secrets.JENKINS_TOKEN }}
            base: ${{ github.event.inputs.release_branch }}
            branch: ${{ github.event.inputs.release_branch }}-${{ steps.cherrypick.outputs.SHORTSHA }}
            reviewers: learning-to-play
            body: |
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 14:49:29 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_patterns.td

               (SameValue $rem, $rem2),
               (FloatOrDefaultCompare $compare_type, $cst),
               (FloatOrDefaultCompare $compare_type1, $cst)]>;
    
    // Converts a dag of HLOs representing floor_div with a splat constant to
    // tf.FloorDiv. The pattern matched executes the following computation:
    // This particular pattern matches multiplication with the reciprocal of the
    // constant instead of dividing by the constant.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 03 08:58:22 UTC 2024
    - 34K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/utils/constant_utils.cc

          }
        }
      } else {
        return tensorflow::Status(absl::StatusCode::kInvalidArgument,
                                  "Unsupported type");
      }
    }
    
    // Returns a Constant op with a splat vector value.
    absl::StatusOr<arith::ConstantOp> CreateConstOpWithVectorValue(
        PatternRewriter* rewriter, Location loc, ShapedType shaped_type,
        int value) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/common/tfl_pass_config.h

      // By default we freeze all variables and disallow mutable variables. When
      // 'enable_tflite_variables' is true then we allow mutable variable only.
      bool disable_variable_freezing = false;
      // Whether to unfold large splat constant tensors and replace them with
      // fill operation.
      bool unfold_large_splat_constant = false;
      // Whether to run the `GuaranteeAllFuncsOneUsePass` to ensure each function
      // has a single use.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 19:05:30 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/SocksProxyTest.kt

      private lateinit var server: MockWebServer
      private val socksProxy = SocksProxy()
    
      @BeforeEach
      fun setUp(server: MockWebServer) {
        this.server = server
        socksProxy.play()
      }
    
      @AfterEach
      fun tearDown() {
        socksProxy.shutdown()
      }
    
      @Test
      fun proxy() {
        server.enqueue(MockResponse.Builder().body("abc").build())
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top