Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 105 for loadsys (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/host_runtime/tfrt_ops.td

        DenseBoolArrayAttr: $truncate_in_cast
      );
    
    }
    
    
    def TF_IfrtLoadVariableOp : TF_Op<"IfrtLoadVariable", [Pure]> {
      let summary = "Loads a restored variable tensor as a tensor future";
    
      let description = [{
        This op loads a restored variable tensor as a tensor future. It is a
        replacement of `tf.ReadVariableOp`.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/build.gradle.kts

        testFixturesImplementation(project(":persistent-cache"))
        testFixturesImplementation(libs.slf4jApi)
    
        testRuntimeOnly(project(":distributions-core")) {
            because("ProjectBuilder test (JavaLanguagePluginTest) loads services from a Gradle distribution.")
        }
    
        integTestDistributionRuntimeOnly(project(":distributions-jvm"))
        crossVersionTestDistributionRuntimeOnly(project(":distributions-basics"))
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/ztunnel/configdump/configdump.go

    	Policies      json.RawMessage          `json:"policies"`
    	Certificates  json.RawMessage          `json:"certificates"`
    	WorkloadState map[string]WorkloadState `json:"workloadstate"`
    }
    
    // Prime loads the config dump into the writer ready for printing
    func (c *ConfigWriter) Prime(b []byte) error {
    	zDump := &ZtunnelDump{}
    	rawDump := &rawDump{}
    	// TODO(fisherxu): migrate this to jsonpb when issue fixed in golang
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. src/sync/map.go

    package sync
    
    import (
    	"sync/atomic"
    )
    
    // Map is like a Go map[any]any but is safe for concurrent use
    // by multiple goroutines without additional locking or coordination.
    // Loads, stores, and deletes run in amortized constant time.
    //
    // The Map type is specialized. Most code should use a plain Go map instead,
    // with separate locking or coordination, for better type safety and to make it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  5. fastapi/openapi/docs.py

                It defaults to [swagger_ui_default_parameters][fastapi.openapi.docs.swagger_ui_default_parameters].
                """
            ),
        ] = None,
    ) -> HTMLResponse:
        """
        Generate and return the HTML  that loads Swagger UI for the interactive
        API docs (normally served at `/docs`).
    
        You would only call this function yourself if you needed to override some parts,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. tools/docker.yaml

    # Unlike standard Dockerfiles, Istio builds artifacts outside of docker and then copies them to a temp folder;
    # This folder is then passed as the docker context. This avoids complex .dockerignore or large context loads.
    
    # Example image config
    example:
    - name: helloworld # Name of the image. Will end up pushed to <HUB>/helloworld:<TAG>
      dockerfile: helloworld/Dockerfile.proxyv2
      files:
      # Include a static file
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. src/mime/type.go

    	// extensions maps from MIME type to list of lowercase file
    	// extensions: "image/jpeg" => [".jpg", ".jpeg"]
    	extensionsMu sync.Mutex // Guards stores (but not loads) on extensions.
    	extensions   sync.Map   // map[string][]string; slice values are append-only.
    )
    
    // setMimeTypes is used by initMime's non-test path, and by tests.
    func setMimeTypes(lowerExt, mixExt map[string]string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. src/debug/buildinfo/buildinfo.go

    // machoExe is the Mach-O (Apple macOS/iOS) implementation of the exe interface.
    type machoExe struct {
    	f *macho.File
    }
    
    func (x *machoExe) ReadData(addr, size uint64) ([]byte, error) {
    	for _, load := range x.f.Loads {
    		seg, ok := load.(*macho.Segment)
    		if !ok {
    			continue
    		}
    		if seg.Addr <= addr && addr <= seg.Addr+seg.Filesz-1 {
    			if seg.Name == "__PAGEZERO" {
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleDistribution.java

        /**
         * Returns true if this version generates a build operation that wraps the execution phase
         */
        boolean isToolingApiHasExecutionPhaseBuildOperation();
    
        /**
         * Returns true if this version loads the work graph from the configuration cache in the same build that the entry is stored.
         */
        boolean isLoadsFromConfigurationCacheAfterStore();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.td

      }];
    }
    
    def IfrtLoadVariableOp: TensorflowMlrt_Op<"ifrt_load_variable", [Pure]> {
      let summary = "Loads a variable tensor as an IFRT array for mlrt";
    
      let description = [{
        This op loads a restored variable tensor as a tensor future. It is a
        replacement of `tf.ReadVariableOp`.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top