Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,633 for zout (0.05 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/flavors/groovy/src/hello/cpp/hello.cpp

    #include <iostream>
    #include "hello.h"
    
    void LIB_FUNC hello () {
      #ifdef FRENCH
      std::cout << "Bonjour monde!" << std::endl;
      #else
      std::cout << "Hello world!" << std::endl;
      #endif
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 190 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/variants/groovy/src/hello/cpp/hello.cpp

    #include <iostream>
    #include "hello.h"
    
    void LIB_FUNC hello () {
      #ifdef FRENCH
      std::cout << "Bonjour monde!" << std::endl;
      #else
      std::cout << "Hello world!" << std::endl;
      #endif
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 190 bytes
    - Viewed (0)
  3. hack/verify-vendor.sh

      # Test for diffs
      if ! _out="$(diff -Naupr --ignore-matching-lines='^\s*\"GoVersion\":' go.mod "${_kubetmp}/go.mod")"; then
        echo "Your go.mod file is different:" >&2
        echo "${_out}" >&2
        echo "Vendor Verify failed." >&2
        echo "If you're seeing this locally, run the below command to fix your go.mod:" >&2
        echo "hack/update-vendor.sh" >&2
        ret=1
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:45 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. security/tools/jwt/samples/gen-jwt.py

        pem_data_encode = pem_data.encode("utf-8")
        key = jwk.JWK.from_pem(pem_data_encode)
    
        if args.jwks:
            with open(args.jwks, "w+") as fout:
                fout.write("{ \"keys\":[ ")
                fout.write(key.export(private_key=False))
                fout.write("]}")
            fout.close
    
        now = int(time.time())
        payload = {
            # expire in one hour.
            "exp": now + args.expire,
            "iat": now,
        }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 16:38:57 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CppHelloWorldApp.groovy

                }
                #endif
    
                void DLL_FUNC Greeter::sayHello() {
                    #ifdef FRENCH
                    std::cout << greeting() << std::endl;
                    #else
                    std::cout << "${HELLO_WORLD}" << std::endl;
                    #endif
                }
            """),
            new SourceFile("cpp", "sum.cpp", """
                #include "common.h"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/insert_weight_param.mlir

      %cst = "tf.Const"() {value = dense<3.000000e-01> : tensor<2x3x3x2xf32>} : () -> tensor<2x3x3x2xf32>
      %0 = "tf.XlaCallModule"(%arg0, %cst) {
        Sout = [#tf_type.shape<1x2x2x2>], _entry_function = @composite_conv_fn,
        _original_entry_function = "composite_conv_fn",
        _stablehlo_module_attrs = {}, _quantization_method = "weight_only_ptq { }",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 05:56:10 UTC 2024
    - 22K bytes
    - Viewed (0)
  7. tensorflow/cc/framework/gradients.cc

      std::unordered_map<Node*, int> requested_grads;
      for (const Output& nout : inputs_) {
        if (pending_[nout.node()->id()] > 0) {
          DCHECK_GT(nout.node()->num_outputs(), 1);
          int idx = input_nodes_[nout];
          DCHECK(((*grad_outputs_)[idx].node() == nullptr));
          TF_RETURN_IF_ERROR(SumGradients(nout, &(*grad_outputs_)[idx]));
          ++requested_grads[nout.node()];
        }
      }
      for (const auto& p : requested_grads) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
  8. src/encoding/ascii85/ascii85.go

    		if e.nbuf < 4 {
    			return
    		}
    		nout := Encode(e.out[0:], e.buf[0:])
    		if _, e.err = e.w.Write(e.out[0:nout]); e.err != nil {
    			return n, e.err
    		}
    		e.nbuf = 0
    	}
    
    	// Large interior chunks.
    	for len(p) >= 4 {
    		nn := len(e.out) / 5 * 4
    		if nn > len(p) {
    			nn = len(p)
    		}
    		nn -= nn % 4
    		if nn > 0 {
    			nout := Encode(e.out[0:], p[0:nn])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/ExeWithDiamondDependencyHelloWorldApp.groovy

                    #else
                    return "${HELLO_WORLD}";
                    #endif
                }
    
                int main () {
                    std::cout << getExeHello() << " ";
                    std::cout << getHello() << " ";
                    sayHello();
                    return 0;
                }
            """)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/ObjectiveCppHelloWorldApp.groovy

                const char* greeting() {
                    return "${HELLO_WORLD_FRENCH}";
                }
                #endif
    
                void DLL_FUNC sayHello() {
                    #ifdef FRENCH
                    std::cout << greeting() << std::endl;
                    #else
                    NSString *helloWorld = @"${HELLO_WORLD}\\n";
                    NSFileHandle *stdout = [NSFileHandle fileHandleWithStandardOutput];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top