Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 73 for Usages (0.17 sec)

  1. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

          if not method_prefix or name.startswith(method_prefix)
      ]
      # Sort the methods by the line number, to make sure the definitions are
      # processed before the usages.
      # TODO(fengliuai): Use type inference resolver to recursively process any
      # functions called.
      py_funcs = sorted(py_funcs, key=lambda x: x.__code__.co_firstlineno)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

    }
    
    static bool SetTmpDir(const std::string& tmp_dir_) {
      ModularFileSystemTest::SetTmpDir(tmp_dir_);
      return true;
    }
    
    }  // namespace
    }  // namespace tensorflow
    
    // Due to the usages of flags for this manual test, we need a special `main` to
    // ensure our flags are parsed properly as `testing::InitGoogleTest` silently
    // ignores other flags. Furthermore, we need this to ensure that the DSO is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    Avoid upgrading Gradle and migrating to Kotlin DSL at the same time in order to ease troubleshooting in case of potential issues.
     . Try running `gradle help --scan` and view the https://gradle.com/enterprise/releases/2018.4/#identify-usages-of-deprecated-gradle-functionality[deprecations view] of the generated build scan.
    If there are no warnings, the Deprecations tab will not appear.
    +
    image::deprecations.png[Deprecations View of a Gradle Build Scan]
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  4. src/runtime/mheap.go

    		scav = h.pages.allocRange(base, npages)
    	}
    
    	if base == 0 {
    		// Try to acquire a base address.
    		base, scav = h.pages.alloc(npages)
    		if base == 0 {
    			var ok bool
    			growth, ok = h.grow(npages)
    			if !ok {
    				unlock(&h.lock)
    				return nil
    			}
    			base, scav = h.pages.alloc(npages)
    			if base == 0 {
    				throw("grew heap, but no adequate free space found")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  5. src/runtime/mgcscavenge.go

    	}
    	sc.inUse += uint16(npages)
    	if sc.inUse == pallocChunkPages {
    		// There's nothing for the scavenger to take from here.
    		sc.setEmpty()
    	}
    }
    
    // free updates sc given that npages was freed in the corresponding chunk.
    func (sc *scavChunkData) free(npages uint, newGen uint32) {
    	if uint(sc.inUse) < npages {
    		print("runtime: inUse=", sc.inUse, " npages=", npages, "\n")
    		throw("allocated pages below zero?")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. docs/bucket/notifications/README.md

    ```
    # Create bucket named `images` in myminio
    mc mb myminio/images
    # Add notification configuration on the `images` bucket using the MySQL ARN. The --suffix argument filters events.
    mc event add myminio/images arn:minio:sqs::1:postgresql --suffix .jpg
    # Print out the notification configuration on the `images` bucket.
    mc event list myminio/images
    mc event list myminio/images
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.31.md

    ogle.com/artifacts/docker/k8s-artifacts-prod/southamerica-east1/images/conformance) | [amd64](https://console.cloud.google.com/artifacts/docker/k8s-artifacts-prod/southamerica-east1/images/conformance-amd64), [arm64](https://console.cloud.google.com/artifacts/docker/k8s-artifacts-prod/southamerica-east1/images/conformance-arm64), [ppc64le](https://console.cloud.google.com/artifacts/docker/k8s-artifacts-prod/southamerica-east1/images/conformance-ppc64le), [s390x](https://console.cloud.google.com/...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  8. pkg/kubelet/nodestatus/setters_test.go

    	}
    	return images
    }
    
    func makeExpectedImageList(imageList []kubecontainer.Image, maxImages, maxNames int32) []v1.ContainerImage {
    	// copy the imageList, we do not want to mutate it in-place and accidentally edit a test case
    	images := make([]kubecontainer.Image, len(imageList))
    	copy(images, imageList)
    	// sort images by size
    	sort.Sort(sliceutils.ByImageSize(images))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTaskIntegrationTest.groovy

                    attributes {
                        attribute(LibraryElements.LIBRARY_ELEMENTS_ATTRIBUTE, project.objects.named(LibraryElements, LibraryElements.JAR))
                        attribute(Usage.USAGE_ATTRIBUTE, project.objects.named(Usage, Usage.JAVA_RUNTIME))
                        attribute(Bundling.BUNDLING_ATTRIBUTE, project.objects.named(Bundling, Bundling.EXTERNAL))
                    }
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 50K bytes
    - Viewed (0)
  10. src/runtime/malloc.go

    //	   the mcentral.
    //
    //	3. If the mcentral's mspan list is empty, obtain a run
    //	   of pages from the mheap to use for the mspan.
    //
    //	4. If the mheap is empty or has no page runs large enough,
    //	   allocate a new group of pages (at least 1MB) from the
    //	   operating system. Allocating a large run of pages
    //	   amortizes the cost of talking to the operating system.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top