Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 213 for example2 (0.14 sec)

  1. tensorflow/c/experimental/filesystem/filesystem_interface.h

    /// TensorFlow but can be used by each filesystem plugin to represent internal
    /// data.
    ///
    /// We prefer to have these structures instead of passing `void*` into
    /// method signatures to have some type of type safety: for example, operations
    /// that are only valid on random access files have a `TF_RandomAccessFile`
    /// argument.
    ///
    /// Lifetime: The wrapper data structures are owned by core TensorFlow. The data
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  2. pkg/registry/core/pod/strategy_test.go

    							Image:                    "image",
    							ImagePullPolicy:          "IfNotPresent",
    							TerminationMessagePolicy: "File",
    						},
    					},
    					NodeName: "example.com",
    				},
    			},
    			newPod: &api.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:            "test-pod",
    					Namespace:       "test-ns",
    					ResourceVersion: "1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

    // invocation. By default, we are testing all schemes available but this can be
    // restricted by using `--schemes` to specify a set of schemes to test.
    //
    // Example invocation:
    //  bazel test //tensorflow/c/experimental/filesystem:modular_filesystem_test \\
    //  --test_arg=--dso=/path/to/one.so --test_arg=--dso=/path/to/another.so \\
    //  --test_arg=--scheme= --test_arg=--scheme=file
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  4. pkg/proxy/iptables/proxier.go

    		proxier.natChains.Write(utiliptables.MakeChainLine(chainName))
    	}
    
    	// Install the kubernetes-specific postrouting rules. We use a whole chain for
    	// this so that it is easier to flush and change, for example if the mark
    	// value should ever change.
    
    	proxier.natRules.Write(
    		"-A", string(kubePostroutingChain),
    		"-m", "mark", "!", "--mark", fmt.Sprintf("%s/%s", proxier.masqueradeMark, proxier.masqueradeMark),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbSessionImpl.java

                             * actually shutdown the connection before other threads
                             * have committed themselves (e.g. InterruptTest example).
                             */
                            try {
                                trans.disconnect(true);
                            }
                            catch ( Exception e ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/load.go

    // ("all" in Go 1.16+ and "go mod vendor" in Go 1.11+).
    //
    // Note that it is possible for a loaded package NOT to be in "all" even when we
    // are loading the "all" pattern. For example, packages that are transitive
    // dependencies of other roots named on the command line must be loaded, but are
    // not in "all". (The mod_notall test illustrates this behavior.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. tensorflow/BUILD

    # addition to this core set of ops, user libraries which are loaded (via
    # TF_LoadLibrary/tf.load_op_library) register their ops and kernels with this
    # shared object directly.
    #
    # For example, from Python tf.load_op_library loads a custom op library (via
    # dlopen() on Linux), the library finds libtensorflow_framework.so (no
    # filesystem search takes place, since libtensorflow_framework.so has already
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/riscv/obj.go

    	return val << (64 - bit) >> (64 - bit)
    }
    
    // Split32BitImmediate splits a signed 32-bit immediate into a signed 20-bit
    // upper immediate and a signed 12-bit lower immediate to be added to the upper
    // result. For example, high may be used in LUI and low in a following ADDI to
    // generate a full 32-bit constant.
    func Split32BitImmediate(imm int64) (low, high int64, err error) {
    	if err := immIFits(imm, 32); err != nil {
    		return 0, 0, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  9. src/runtime/mgcpacer.go

    	// 1 in this case we only have fractional GC workers which aren't scheduled
    	// strictly enough to ensure GC progress. As a result, idle-priority mark
    	// workers are vital to GC progress in these situations.
    	//
    	// For example, consider a situation in which goroutines block on the GC
    	// (such as via runtime.GOMAXPROCS) and only fractional mark workers are
    	// scheduled (e.g. GOMAXPROCS=1). Without idle-priority mark workers, the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. src/net/http/transport.go

    	// with a non-empty protocol name and TLSNextProto contains a
    	// map entry for that key (such as "h2"), then the func is
    	// called with the request's authority (such as "example.com"
    	// or "example.com:1234") and the TLS connection. The function
    	// must return a RoundTripper that then handles the request.
    	// If TLSNextProto is not nil, HTTP/2 support is not enabled
    	// automatically.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top