Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 193 for EG (0.03 sec)

  1. tensorflow/compiler/jit/device_compiler.h

    // Compiles/lowers a given Tensorflow graph/function/cluster into a compiled XLA
    // compilation (HLO) using the XlaCompiler and compiles the resulting
    // XlaCompilationResult into an `ExecutableType` (eg. xla::LocalExecutable) by
    // calling `ClientType` (eg. xla::LocalClient).
    //
    // Caches the compiled XlaCompilationResult and Executable using a
    // DeviceCompilationCache. Compilation is done only when there's a cache miss.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.h

      // (e.g., control_outputs) to be changed, they should be updated accordingly
      // and remain valid for the graph.
      // `name` is a unique identifier for this subgraph, so the implementation can
      // use it for eg. debugging or caching compilation results.
      virtual absl::StatusOr<const Graph*> GetSubGraph(
          absl::string_view name, GraphImportConfig& specs) = 0;
    
     private:
      const MetaGraphDef* meta_graph_def_ = nullptr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. docs/bucket/notifications/README.md

    events when the AMQP broker goes offline and replays it when the broker comes back online. The event store can be configured by setting the directory path in `queue_dir` field and the maximum limit of events in the queue_dir in `queue_limit` field. For eg, the `queue_dir` can be `/home/events` and `queue_limit` can be `1000`. By default, the `queue_limit` is set to 100000.
    
    To update the configuration, use `mc admin config get notify_amqp` command to get the current configuration for `notify_amqp`....
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. cmd/preferredimports/preferredimports.go

    					}
    				}
    			}
    		}
    	}
    }
    
    func renameImportUsages(f *ast.File, old, new string) {
    	// use this to avoid renaming the package declaration, eg:
    	//   given: package foo; import foo "bar"; foo.Baz, rename foo->qux
    	//   yield: package foo; import qux "bar"; qux.Baz
    	var pkg *ast.Ident
    
    	// Rename top-level old to new, both unresolved names
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. tools/bug-report/pkg/bugreport/flags.go

    		ss := &config2.SelectionSpec{}
    		if err := ss.UnmarshalJSON([]byte(s)); err != nil {
    			return nil, err
    		}
    		gConfig.Include = append(gConfig.Include, ss)
    	}
    	// Exclude default system namespaces eg: bugReportDefaultExclude
    	dss := &config2.SelectionSpec{}
    	if err := dss.UnmarshalJSON([]byte(bugReportDefaultExclude[0])); err != nil {
    		return nil, err
    	}
    	gConfig.Exclude = append(gConfig.Exclude, dss)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 12:07:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  6. src/crypto/tls/testdata/Server-TLSv10-RSA-3DES

    00000020  83 9c ce 83 60 7a 89 33  90 b7 f9 31 e9 37 04 3d  |....`z.3...1.7.=|
    00000030  d6 01 44 17 03 01 00 18  0a 1c 6c 75 23 bc b2 e7  |..D.......lu#...|
    00000040  30 2d 61 57 d3 a6 a2 72  6a 7a 2d 8a 7b fd 45 67  |0-aW...rjz-.{.Eg|
    00000050  17 03 01 00 28 23 8b 77  dd a3 f2 b6 0e 59 40 3b  |....(#.w.....Y@;|
    00000060  4e 3a 1b 0c 11 2f 99 00  b9 e1 2c 11 89 53 fb 23  |N:.../....,..S.#|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. docs/config/README.md

    bitrotscan     (on|off)    perform bitrot scan on drives when checking objects during scanner
    max_sleep      (duration)  maximum sleep duration between objects to slow down heal operation. eg. 2s
    max_io         (int)       maximum IO requests allowed between objects to slow down heal operation. eg. 3
    drive_workers  (int)       the number of workers per drive to heal a new disk replacement.
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 11 21:48:54 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  8. src/cmd/go/internal/web/api.go

    import (
    	"bytes"
    	"fmt"
    	"io"
    	"io/fs"
    	"net/url"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    )
    
    // SecurityMode specifies whether a function should make network
    // calls using insecure transports (eg, plain text HTTP).
    // The zero value is "secure".
    type SecurityMode int
    
    const (
    	SecureOnly      SecurityMode = iota // Reject plain HTTP; validate HTTPS.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/catalog/parser/TomlCatalogFileParser.java

                            .details("When using a string to declare library module coordinates, you must use a valid module notation")
                            .solution("Make sure that the module consist of 2 parts separated by colons, eg: my.group:artifact"));
                }
            }
            String versionRef = null;
            String require = null;
            String strictly = null;
            String prefer = null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/IvyDependencyDescriptor.java

                    findMatches(targetComponent, fromConfigName, fromConfigName, targetPattern, targets, resolutionFailureHandler);
                }
            }
    
            // TODO - this is not quite right, eg given *,!A->A;*,!B->B the result should be B->A and A->B but will in fact be B-> and A->
            Set<String> wildcardPatterns = confs.get("*");
            if (!wildcardPatterns.isEmpty()) {
                boolean excludeWildcards = false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top