Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 542 for free1 (0.09 sec)

  1. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/OsMemoryStatusSnapshot.java

         * Create a new snapshot with limited virtual memory.
         *
         * @param totalPhysicalMemory total physical memory in bytes
         * @param freePhysicalMemory free physical memory in bytes
         * @param totalVirtualMemory total virtual memory in bytes
         * @param freeVirtualMemory free virtual memory in bytes
         */
        public OsMemoryStatusSnapshot(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. tensorflow/c/tf_buffer.cc

        port::Free(buf);
        return errors::InvalidArgument(
            "Unable to serialize ", in.GetTypeName(),
            " protocol buffer, perhaps the serialized size (", proto_size,
            " bytes) is too large?");
      }
      out->data = buf;
      out->length = proto_size;
      out->data_deallocator = [](void* data, size_t length) { port::Free(data); };
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 21:57:32 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/pac/kerberos/KerberosCredentials.java

    /*
     * 
     * This library is free software; you can redistribute it and/or
     * modify it under the terms of the GNU Lesser General Public
     * License as published by the Free Software Foundation; either
     * version 2.1 of the License, or (at your option) any later version.
     * 
     * This library is distributed in the hope that it will be useful,
     * but WITHOUT ANY WARRANTY; without even the implied warranty of
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Oct 02 12:02:06 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/pac/kerberos/KerberosRelevantAuthData.java

    /*
     * 
     * This library is free software; you can redistribute it and/or
     * modify it under the terms of the GNU Lesser General Public
     * License as published by the Free Software Foundation; either
     * version 2.1 of the License, or (at your option) any later version.
     * 
     * This library is distributed in the hope that it will be useful,
     * but WITHOUT ANY WARRANTY; without even the implied warranty of
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Oct 02 12:02:06 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. src/internal/msan/msan.go

    //go:linkname Write runtime.msanwrite
    func Write(addr unsafe.Pointer, sz uintptr)
    
    //go:linkname Malloc runtime.msanmalloc
    func Malloc(addr unsafe.Pointer, sz uintptr)
    
    //go:linkname Free runtime.msanfree
    func Free(addr unsafe.Pointer, sz uintptr)
    
    //go:linkname Move runtime.msanmove
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 20:50:21 UTC 2024
    - 647 bytes
    - Viewed (0)
  6. cmd/os-rename_nolinux.go

    //go:build !linux
    // +build !linux
    
    // Copyright (c) 2015-2023 MinIO, Inc.
    //
    // This file is part of MinIO Object Storage stack
    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 15 01:09:38 UTC 2024
    - 985 bytes
    - Viewed (0)
  7. cmd/update_nofips.go

    //go:build !fips
    // +build !fips
    
    // Copyright (c) 2015-2021 MinIO, Inc.
    //
    // This file is part of MinIO Object Storage stack
    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 09 03:07:08 UTC 2024
    - 931 bytes
    - Viewed (0)
  8. src/cmd/compile/internal/base/base.go

    	const (
    		goal   = "/gc/heap/goal:bytes"
    		count  = "/gc/cycles/total:gc-cycles"
    		allocs = "/gc/heap/allocs:bytes"
    		frees  = "/gc/heap/frees:bytes"
    	)
    
    	sample := []metrics.Sample{{Name: goal}, {Name: count}, {Name: allocs}, {Name: frees}}
    	const (
    		GOAL   = 0
    		COUNT  = 1
    		ALLOCS = 2
    		FREES  = 3
    	)
    
    	// Assumptions and observations of Go's garbage collector, as of Go 1.17-1.20:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. cmd/rebalance-admin.go

    // Copyright (c) 2022 MinIO, Inc.
    //
    // This file is part of MinIO Object Storage stack
    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Dec 22 00:56:43 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. src/log/slog/internal/buffer/buffer_test.go

    // license that can be found in the LICENSE file.
    
    package buffer
    
    import (
    	"internal/race"
    	"internal/testenv"
    	"testing"
    )
    
    func Test(t *testing.T) {
    	b := New()
    	defer b.Free()
    	b.WriteString("hello")
    	b.WriteByte(',')
    	b.Write([]byte(" world"))
    
    	got := b.String()
    	want := "hello, world"
    	if got != want {
    		t.Errorf("got %q, want %q", got, want)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 16:48:35 UTC 2023
    - 776 bytes
    - Viewed (0)
Back to top