Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 131 for Sizes (0.22 sec)

  1. pkg/ctrlz/assets/static/manifest.json

    {
        "name": "Istio Controlz",
        "short_name": "Controlz",
        "icons": [
            {
                "src": "favicons/pwa-192x192.png",
                "sizes": "192x192",
                "type": "image/png"
            },
    
            {
                "src": "favicons/pwa-512x512.png",
                "sizes": "512x512",
                "type": "image/png"
            }
        ],
        "theme_color": "#466BB0",
        "background_color": "#ffffff",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 442 bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/shift/shift.go

    		}
    	default:
    		structuralTypes = append(structuralTypes, t)
    	}
    	sizes := make(map[int64]struct{})
    	for _, t := range structuralTypes {
    		size := 8 * pass.TypesSizes.Sizeof(t)
    		sizes[size] = struct{}{}
    	}
    	minSize := int64(math.MaxInt64)
    	for size := range sizes {
    		if size < minSize {
    			minSize = size
    		}
    	}
    	if amt >= minSize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. test/heapsampling.go

    // the testcase allows for a 10% margin of error, but only fails if it
    // consistently fails across three experiments, avoiding flakes.
    func testSmallAllocations() error {
    	const iters = 50000
    	// Sizes of the allocations performed by each experiment.
    	sizes := []int64{1024, 512, 256}
    	frames := []string{"main.allocSmall1", "main.allocSmall2", "main.allocSmall3"}
    
    	// Pass if at least one of three experiments has no errors. Use a separate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 27 21:36:06 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  4. src/runtime/mksizeclasses.go

    // size might have a 26.6% (1.266x) overhead.
    // In practice, only one of the wastes comes into play for a
    // given size (sizes < 512 waste mainly on the round-up,
    // sizes > 512 waste mainly on the page chopping).
    // For really small sizes, alignment constraints force the
    // overhead higher.
    
    package main
    
    import (
    	"bytes"
    	"flag"
    	"fmt"
    	"go/format"
    	"io"
    	"log"
    	"math"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/gcsizes.go

    		// Type parameters lead to variable sizes/alignments;
    		// StdSizes.Sizeof won't be called for them.
    		assert(!isTypeParam(T))
    		return s.WordSize * 2
    	case *TypeParam, *Union:
    		panic("unreachable")
    	}
    	return s.WordSize // catch-all
    }
    
    // gcSizesFor returns the Sizes used by gc for an architecture.
    // The result is a nil *gcSizes pointer (which is not a valid types.Sizes)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. src/go/types/gcsizes.go

    		// Type parameters lead to variable sizes/alignments;
    		// StdSizes.Sizeof won't be called for them.
    		assert(!isTypeParam(T))
    		return s.WordSize * 2
    	case *TypeParam, *Union:
    		panic("unreachable")
    	}
    	return s.WordSize // catch-all
    }
    
    // gcSizesFor returns the Sizes used by gc for an architecture.
    // The result is a nil *gcSizes pointer (which is not a valid types.Sizes)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow_to_stablehlo/README.md

      MLIR input.
    * `--input-arg-shapes`: A string representation of input argument shapes for
      'main' entry-point, separating tensors with ':', dimension with ',', and
      using '?' for unknown sizes. For example, `input-arg-shapes=1,2::1,?`
      expresses argument shapes `[1,2]`, `[]` and `[1,?]`.
    * `--e`: Elide large elements attrs while dumping the output StableHLO.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/test/testdata/gen/copyGen.go

    // copy the data they are supposed to and clobber no adjacent values.
    
    // run as `go run copyGen.go`.  A file called copy.go
    // will be written into the parent directory containing the tests.
    
    var sizes = [...]int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 16, 17, 23, 24, 25, 31, 32, 33, 63, 64, 65, 1023, 1024, 1025, 1024 + 7, 1024 + 8, 1024 + 9, 1024 + 15, 1024 + 16, 1024 + 17}
    
    var usizes = [...]int{2, 3, 4, 5, 6, 7}
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  9. cmd/kube-apiserver/app/options/completion.go

    	if completed.Etcd != nil && completed.Etcd.EnableWatchCache {
    		sizes := kubeapiserver.DefaultWatchCacheSizes()
    		// Ensure that overrides parse correctly.
    		userSpecified, err := apiserveroptions.ParseWatchCacheSizes(completed.Etcd.WatchCacheSizes)
    		if err != nil {
    			return CompletedOptions{}, err
    		}
    		for resource, size := range userSpecified {
    			sizes[resource] = size
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 26 19:50:38 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow_to_stablehlo/python/pywrap_tensorflow_to_stablehlo_lib.h

    //    SavedModel.
    //   input_arg_shapes_str: A string representation of input argument
    //    shapes for 'main' entry-point, separating tensors with ':', dimension
    //    with ',', and using '?' for unknown sizes. For example,
    //    'input-arg-shapes=1,2::1,?' expresses argument shapes [1,2], [] and [1,?].
    //
    // Returns:
    //   An absl::StatusOr containing the serialized bytecode of the StableHLO
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top