Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,133 for allocm (0.13 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/allow-full.yaml

            length: 32
          - address: WqgKAA==
            length: 24
    - rules:
      - matches:
        - destinationPorts:
          - 91
          - 92
          notDestinationPorts:
          - 9001
          - 9002
    name: allow
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/MyMem.h

      #define CU_DUMP_MEMORY_USAGE(x) CU_dump_memory_usage((x))
    #else   /* MEMTRACE */
      /** Standard calloc() if MEMTRACE not defined. */
      #define CU_CALLOC(x, y)         calloc((x), (y))
      /** Standard malloc() if MEMTRACE not defined. */
      #define CU_MALLOC(x)            malloc((x))
      /** Standard free() if MEMTRACE not defined. */
      #define CU_FREE(x)              free((x))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. src/log/slog/value_test.go

    type panickingLogValue struct{}
    
    func (panickingLogValue) LogValue() Value { panic("bad") }
    
    // A Value with "unsafe" strings is significantly faster:
    // safe:  1785 ns/op, 0 allocs
    // unsafe: 690 ns/op, 0 allocs
    
    // Run this with and without -tags unsafe_kvs to compare.
    func BenchmarkUnsafeStrings(b *testing.B) {
    	b.ReportAllocs()
    	dst := make([]Value, 100)
    	src := make([]Value, len(dst))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer.h

                                   // tensors to model memory consumed in addition
                                   // to input and output tensors. This vector is
                                   // kept sorted + unique.
    
        SizeT alloc = 0;    // The number of bytes that need to be allocated before
                            // this operation.
        SizeT dealloc = 0;  // The number of bytes that can be deallocated after
                            // this operation.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 12K bytes
    - Viewed (0)
  5. src/sort/search_test.go

    func TestSearchWrappersDontAlloc(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping malloc count in short mode")
    	}
    	if runtime.GOMAXPROCS(0) > 1 {
    		t.Skip("skipping; GOMAXPROCS>1")
    	}
    	allocs := testing.AllocsPerRun(100, runSearchWrappers)
    	if allocs != 0 {
    		t.Errorf("expected no allocs for runSearchWrappers, got %v", allocs)
    	}
    }
    
    func BenchmarkSearchWrappers(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 07 14:42:13 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/validation.go

    	// AllowNestedAdditionalProperties allows additionalProperties to be specified in
    	// nested contexts (allOf, anyOf, oneOf, not).
    	AllowNestedAdditionalProperties bool
    
    	// AllowNestedXValidations allows x-kubernetes-validations to be specified in
    	// nested contexts (allOf, anyOf, oneOf, not).
    	AllowNestedXValidations bool
    
    	// AllowValidationPropertiesWithAdditionalProperties allows
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. src/runtime/mem_windows.go

    	// VirtualAlloc calls, and Windows will only let each VirtualFree handle pages from
    	// a single VirtualAlloc. It is okay to specify a subset of the pages from a single alloc,
    	// just not pages from multiple allocs. This is a rare case, arising only when we're
    	// trying to give memory back to the operating system, which happens on a time
    	// scale of minutes. It doesn't have to be terribly fast. Instead of extra bookkeeping
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. releasenotes/notes/gw-allow-labels.yaml

    Xiaopeng Han <******@****.***> 1678121866 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 06 16:57:46 UTC 2023
    - 204 bytes
    - Viewed (0)
  9. src/runtime/pprof/protomem_test.go

    	buf [128]byte
    }
    
    type opCall struct {
    }
    
    var sink []byte
    
    func storeAlloc() {
    	sink = make([]byte, 16)
    }
    
    func nonRecursiveGenericAllocFunction[CurrentOp any, OtherOp any](alloc bool) {
    	if alloc {
    		storeAlloc()
    	} else {
    		nonRecursiveGenericAllocFunction[OtherOp, CurrentOp](true)
    	}
    }
    
    func TestGenericsInlineLocations(t *testing.T) {
    	if testenv.OptimizationOff() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/allow-full-in.yaml

    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: allow
    spec:
      action: ALLOW
      rules:
      - from:
        - source:
            principals: [ "principal", "principal-prefix-*", "*-suffix-principal", "*" ]
            notPrincipals: [ "not-principal", "not-principal-prefix-*", "*-suffix-not-principal", "*" ]
      - from:
        - source:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top