Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 217 for splay_ (0.33 sec)

  1. testing/smoke-test/src/smokeTest/resources/org/gradle/play/integtest/fixtures/external/shared/public/javascripts/hello.js

    if (window.console) {
        console.log("Welcome to your Play application's JavaScript!");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 90 bytes
    - Viewed (0)
  2. src/runtime/testdata/testprogcgo/callback.go

    		P = 10
    	}
    
    	if e := extraMInUse.Load(); e != 0 {
    		fmt.Printf("before testing extraMInUse got %d want 0\n", e)
    		os.Exit(1)
    	}
    
    	done := make(chan bool)
    	// allocate a bunch of stack frames and spray them with pointers
    	for i := 0; i < P; i++ {
    		go func() {
    			grow()
    			done <- true
    		}()
    	}
    	for i := 0; i < P; i++ {
    		<-done
    	}
    	// now give these stack frames to cgo callbacks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 14:05:01 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/dsl/org.gradle.play.distribution.PlayDistributionContainer.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 446 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/dsl/org.gradle.play.platform.PlayPlatform.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.3K bytes
    - Viewed (0)
  5. src/go/doc/testdata/examples/multiple.go

    	v := struct {
    		a string
    		b int
    	}{
    		a: "A",
    		b: 1,
    	}
    	fmt.Print(v)
    	// Output: a: "A", b: 1
    }
    
    func ExampleKeyValueImport() {
    	f := flag.Flag{
    		Name: "play",
    	}
    	fmt.Print(f)
    	// Output: Name: "play"
    }
    
    var keyValueTopDecl = struct {
    	a string
    	b int
    }{
    	a: "B",
    	b: 2,
    }
    
    func ExampleKeyValueTopDecl() {
    	fmt.Print(keyValueTopDecl)
    	// Output: a: "B", b: 2
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 16:17:51 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  6. src/go/doc/testdata/examples/whole_function.golden

    -- .Play --
    package main
    
    func Foo(x int) {
    }
    
    func main() {
    	fmt.Println("Hello, world!")
    }
    -- .Output --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 16:17:51 UTC 2022
    - 121 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/utils/const_tensor_utils.h

                                                   bool is_intermediate = false,
                                                   bool get_storage = false);
    
    // Gets a constant splat for the given value of type. Requires value to be of
    // type static shaped RankedTensorType. `unique_index` is used to get the unique
    // value for the attribute.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/BinaryNamingScheme.java

         */
        BinaryNamingScheme withComponentName(String componentName);
    
        /**
         * Creates a copy of this scheme, replacing the role. The 'role' refers to the role that the binary plays within its component.
         */
        BinaryNamingScheme withRole(String role, boolean isMain);
    
        /**
         * Creates a copy of this scheme, replacing the binary type.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tf_tfl_translate_cl.cc

            "Whether to unfold TF BatchMatMul to a set of TFL FullyConnected ops."),
        llvm::cl::init(false));
    
    // NOLINTNEXTLINE
    opt<bool> unfold_large_splat_constant(
        "unfold-large-splat-constant",
        llvm::cl::desc("Whether to unfold large splat constant tensors to reduce "
                       "the generated model size."),
        llvm::cl::init(false));
    
    // NOLINTNEXTLINE
    opt<bool> guarantee_all_funcs_one_use(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 20:53:17 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.td

    // Checks if the value is a float constant and its splat value is equal to `x`.
    class IsSplatValueEqual<string x> : Constraint<CPred<
      "IsSplatValueEqual<float>($0, "# x #")">>;
    
    // Checks if two values are float constants and their values are equal.
    def AreSplatValuesEqual : Constraint<CPred<
      "AreSplatValuesEqual<float>($0, $1)">>;
    
    // Checks if the value is an integer constant and its splat value is equal to x.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 08 04:55:44 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top