Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for cheese (0.11 sec)

  1. src/cmd/link/internal/ld/data.go

    	// pointing to the addresses of these special symbols.
    	// Typically these symbols have no size and are not laid
    	// out with their matching section.
    	//
    	// However on darwin, dyld will find the special symbol
    	// in the first loaded module, even though it is local.
    	//
    	// (An hypothesis, formed without looking in the dyld sources:
    	// these special symbols have no size, so their address
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      if (auto map_dataset_op = dyn_cast<MapDatasetOp>(op)) {
        // TODO(jpienaar): The output type of these ops need to be refined.
        return InferShapeForMapDataset(map_dataset_op, max_iterations);
      }
    
      if (auto takewhile_dataset_op = dyn_cast<TakeWhileDatasetOp>(op)) {
        // TODO(jpienaar): The output type of these ops need to be refined.
        return InferShapeForTakeWhileDataset(takewhile_dataset_op, max_iterations);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    		}
    
    		// TODO(rsc): Convince compiler team not to add more magic environment variables,
    		// or perhaps restrict the environment variables passed to subprocesses.
    		// Because these are clumsy, undocumented special-case hacks
    		// for debugging the compiler, they are not settable using 'go env -w',
    		// and so here we use os.Getenv, not cfg.Getenv.
    		magic := []string{
    			"GOCLOBBERDEADHASH",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

    // Returns true if the module holds all the invariants expected by the
    // Translator class.
    // TODO(hinsu): Now that translation is done by making a single pass over the
    // MLIR module, consider inlining these validation checks at the place where
    // these invariants are assumed instead of checking upfront.
    static bool IsValidTFLiteMlirModule(ModuleOp module) {
      MLIRContext* context = module.getContext();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_test.go

    )
    
    func init() {
    }
    
    const (
    	testKubeletHostname = "127.0.0.1"
    	testKubeletHostIP   = "127.0.0.1"
    	testKubeletHostIPv6 = "::1"
    
    	// TODO(harry) any global place for these two?
    	// Reasonable size range of all container images. 90%ile of images on dockerhub drops into this range.
    	minImgSize int64 = 23 * 1024 * 1024
    	maxImgSize int64 = 1000 * 1024 * 1024
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    //
    // Note: Build adheres to certain conventions such as those described
    // by 'go help gopath'. Not all projects can follow these conventions,
    // however. Installations that have their own conventions or that use
    // a separate software build system may choose to use lower-level
    // invocations such as 'go tool compile' and 'go tool link' to avoid
    // some of the overheads and design decisions of the build tool.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top