Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,400 for zout (0.04 sec)

  1. 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)
  2. 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)
  3. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/force_shared_name_for_resource_ops.pbtxt

        value {
          s: ""
        }
      }
    }
    node {
      name: "Call"
      op: "PartitionedCall"
      attr {
        key: "Tin"
        value {
          list {
          }
        }
      }
      attr {
        key: "Tout"
        value {
          list {
            type: DT_RESOURCE
          }
        }
      }
      attr {
        key: "f"
        value {
          func {
            name: "create_resource"
          }
        }
      }
    }
    node: {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 31 02:37:48 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/tasks/CppUnexportMainSymbolIntegrationTest.groovy

            makeSingleProject()
            file("src/main/cpp/main.cpp") << """
                #include <iostream>
    
                int wmain(int argc, wchar_t *argv[], wchar_t *envp[] ) {
                    std::cout << "hello world!" << std::endl;
                    return 0;
                }
            """
    
            when:
            succeeds("unexport")
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CppGreeterWithOptionalFeature.groovy

    #include <iostream>
    #include "greeter.h"
    
    void Greeter::sayHello() {
    #ifdef WITH_FEATURE
    #pragma message("compiling with feature enabled")
        std::cout << "${HelloWorldApp.HELLO_WORLD_FRENCH}" << std::endl;
    #else
        std::cout << "${HelloWorldApp.HELLO_WORLD}" << std::endl;
    #endif
    }
    """))
    
        final SourceElement publicHeaders = header
        final SourceElement sources = source
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/function-order.mlir

        // CHECK-NEXT: op: "PartitionedCall"
        // CHECK:   func {
        // CHECK:     name: "foo"
        // CHECK:   }
        // CHECK: }
        %0 = tf_executor.island wraps "tf.PartitionedCall"() {Tin = [], Tout = [], config = "", config_proto = "", device = "", executor_type = "", f = @foo, name = "Call_foo"} : () -> ()
        tf_executor.fetch
      }
      func.return
    }
    
    // CHECK:      library {
    // CHECK:        function {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 17 18:52:47 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/end2end/disallow_stateful_partitioned_call.pbtxt

      input: "input0"
      input: "args_0"
      attr {
        key: "Tin"
        value {
          list {
            type: DT_FLOAT
            type: DT_RESOURCE
          }
        }
      }
      attr {
        key: "Tout"
        value {
          list {
            type: DT_FLOAT
            type: DT_RESOURCE
          }
        }
      }
      attr {
        key: "config"
        value {
          s: ""
        }
      }
      attr {
        key: "config_proto"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 24 20:05:09 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top