Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 240 for splay_ (0.12 sec)

  1. src/go/doc/testdata/examples/values.golden

    -- A.Play --
    package main
    
    import ()
    
    func f() (int, int) {
    	return 1, 2
    }
    
    var a, b = f()
    
    func main() {
    	_ = a
    }
    -- B.Play --
    package main
    
    import ()
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 23:13:45 UTC 2022
    - 169 bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/play-example/app/controllers/Application.scala

    package controllers
    
    import javax.inject._
    import play.api._
    import play.api.mvc._
    
    import org.apache.commons.lang.StringUtils
    
    @Singleton
    class Application @Inject() extends InjectedController {
    
      def index = Action {
        Ok(views.html.index(StringUtils.trim("   Your new application is ready.   ")))
      }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 310 bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/resources/org/gradle/play/integtest/fixtures/external/basicplayapp/app/controllers/Application.scala.old

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package controllers
    
    import play.api._
    import play.api.mvc._
    
    object Application extends Controller {
    
      def index = Action {
        Ok(views.html.index("Your new application is ready."))
      }
    
      def shutdown = Action {
        System.exit(0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 876 bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/groovy/org/gradle/play/integtest/fixtures/external/RunningPlayApp.groovy

        }
    
    
        static int regexParseHttpPortStandalone(output, int occurrence) {
            return parseHttpPort(output, /(?:play|Server) - Listening for HTTP on .*:([0-9]+)/, occurrence)
        }
    
    
        static int regexParseHttpPortFromGradle(output, int occurrence) {
            return parseHttpPort(output, /Running Play App \(:.*\) at http:\/\/.*:([0-9]+)\//, occurrence)
        }
    
        static int parseHttpPort(output, regex, int occurrence) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. src/go/doc/testdata/examples/import_groups_named.golden

    -- .Play --
    package main
    
    import (
    	"fmt"
    )
    
    func main() {
    	fmt.Println("Hello, world!")
    }
    -- .Output --
    Hello, world!
    -- Limiter.Play --
    package main
    
    import (
    	"fmt"
    	tm "time"
    
    	r "golang.org/x/time/rate"
    )
    
    func main() {
    	// Uses fmt, time and rate.
    	l := r.NewLimiter(r.Every(tm.Second), 1)
    	fmt.Println(l)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 16:17:51 UTC 2022
    - 314 bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/unfold_large_splat_constant.cc

    // The threshold of constant bits to be unfolded (1Mb). If there is a splat
    // constant with size equal or greater to this threshold, then it will be
    // unfolded back to a regular `tfl.fill` operation.
    constexpr int64_t kConstantSizeThresholdInBits = 1e+6;
    
    // Pass which will replace large splat constant tensors to `tfl.Fill` op to
    // reduce the size of the generated flatbuffer model size.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. test-site/app/Global.java

    import components.*;
    import controllers.*;
    import org.codelibs.elasticsearch.runner.ElasticsearchClusterRunner;
    import org.codelibs.fess.suggest.Suggester;
    import play.Application;
    import play.GlobalSettings;
    import play.Logger;
    
    import static org.codelibs.elasticsearch.runner.ElasticsearchClusterRunner.newConfigs;
    
    public class Global extends GlobalSettings {
        @Override
        public void onStart(Application var1) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Sat Feb 23 14:02:03 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  8. test-site/app/controllers/Suggest.java

    import models.*;
    import org.codelibs.fess.suggest.request.suggest.SuggestResponse;
    import org.elasticsearch.common.xcontent.XContentBuilder;
    import org.elasticsearch.common.xcontent.json.JsonXContent;
    import play.Logger;
    import play.mvc.Controller;
    import play.mvc.Result;
    
    import java.util.Map;
    
    public class Suggest extends Controller {
        public static Result get() {
            Map<String, String[]> params = request().queryString();
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Fri Nov 06 08:48:32 UTC 2015
    - 2.2K bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/resources/org/gradle/play/integtest/fixtures/external/shared/conf/logback.xml

    <configuration>
        
      <conversionRule conversionWord="coloredLevel" converterClass="play.api.Logger$ColoredLevel" />
    
      <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
        <encoder>
          <pattern>%coloredLevel - %logger - %message%n%xException</pattern>
        </encoder>
      </appender>
    
      <!--
        The logger name is typically the Java/Scala package name.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 637 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/dsl/org.gradle.play.PlayApplicationBinarySpec.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top