Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 109 for growing (0.51 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_communication.cc

        for (func::FuncOp& func : funcs_to_visit) {
          auto uses = func.getSymbolUses(module);
          if (!uses) continue;
          for (auto& use : *uses) {
            // Only `mlir::func::CallOp` is supported as this requires knowing how
            // to rewrite arguments and results to a function.
            if (!isa<mlir::func::CallOp>(use.getUser())) continue;
            auto caller_parent_func =
                use.getUser()->getParentOfType<func::FuncOp>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  2. src/crypto/internal/mlkem768/mlkem768.go

    // decryptionKey is the parsed and expanded form of a PKE decryption key.
    type decryptionKey struct {
    	s [k]nttElement // ByteDecode₁₂(dk[:decryptionKeySize])
    }
    
    // GenerateKey generates a new decapsulation key, drawing random bytes from
    // crypto/rand. The decapsulation key must be kept secret.
    func GenerateKey() (*DecapsulationKey, error) {
    	// The actual logic is in a separate function to outline this allocation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  3. go.mod

    	github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 // indirect
    	github.com/tmc/grpc-websocket-proxy v0.0.0-20220101234140-673ab2c3ae75 // indirect
    	github.com/x448/float16 v0.8.4 // indirect
    	github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 // indirect
    	github.com/xlab/treeprint v1.2.0 // indirect
    	go.etcd.io/bbolt v1.3.9 // indirect
    	go.etcd.io/etcd/client/v2 v2.305.13 // indirect
    	go.etcd.io/etcd/pkg/v3 v3.5.13 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/operations/trace/BuildOperationTrace.java

     * <li>«path-base»-tree.json: a JSON tree of the event structure</li>
     * <li>«path-base»-tree.txt: A simplified tree representation showing basic information</li>
     * </ul>
     * <p>
     * Generally, the simplified tree view is best for browsing.
     * The JSON tree view can be used for more detailed analysis — open in a JSON tree viewer, like Chrome.
     * <p>
     * The «path-base» param is optional.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/convert_tensor.cc

        // We don't know which element type this protocol buffer is storing, and the
        // metaprogramming facilities for TensorProto are too limited to check their
        // number without knowing this, so we need to manually dispatch to each
        // possible member of TensorProto, depening on its dtype.
    #define MATCH(DTYPE, FIELD) \
      case DTYPE:               \
        return tensor.FIELD##_val().size()
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/status/server_test.go

    		},
    		// A valid input with empty probing path, which happens when HTTPGetAction.Path is not specified.
    		{
    			probe: `{"/app-health/hello-world/readyz": {"httpGet": {"path": "/hello/sunnyvale", "port": 8080}},
    "/app-health/business/livez": {"httpGet": {"port": 9090}}}`,
    		},
    		// A valid input without any prober info.
    		{
    			probe: `{}`,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  7. src/path/filepath/path.go

    // On success, the returned path will always be relative to basepath,
    // even if basepath and targpath share no elements.
    // An error is returned if targpath can't be made relative to basepath or if
    // knowing the current working directory would be necessary to compute it.
    // Rel calls [Clean] on the result.
    func Rel(basepath, targpath string) (string, error) {
    	baseVol := VolumeName(basepath)
    	targVol := VolumeName(targpath)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  8. src/regexp/syntax/parse_test.go

    			continue
    		}
    		d := dump(re)
    		if d != tt.Dump {
    			t.Errorf("Parse(%#q).Dump() = %#q want %#q", tt.Regexp, d, tt.Dump)
    		}
    	}
    }
    
    // dump prints a string representation of the regexp showing
    // the structure explicitly.
    func dump(re *Regexp) string {
    	var b strings.Builder
    	dumpRegexp(&b, re)
    	return b.String()
    }
    
    var opNames = []string{
    	OpNoMatch:        "no",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  9. src/internal/trace/traceviewer/emitter.go

    			// required events.
    			cw.size = 0
    			enc := json.NewEncoder(&cw)
    			enc.Encode(data)
    			requiredSize := cw.size
    
    			// Then calculate size of each individual event and
    			// their stack frames, grouping them into ranges. We
    			// only include stack frames relevant to the events in
    			// the range to reduce overhead.
    
    			var (
    				start = 0
    
    				eventsSize = 0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:58 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

     *     scopes.TEST.plus += [ configurations.performanceTestCompile ]
     *
     *     //if 'content root' (as IDEA calls it) of the module is different
     *     contentRoot = file('my-module-content-root')
     *
     *     //if you love browsing Javadoc
     *     downloadJavadoc = true
     *
     *     //and hate reading sources :)
     *     downloadSources = false
     *   }
     * }
     * </pre>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
Back to top