Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of about 10,000 for nfreed (0.25 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/Swift3Test.groovy

     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *      http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. src/runtime/mstats.go

    	// During program execution we only count number of frees and amount of freed memory.
    	// Current number of alive objects in the heap and amount of alive heap memory
    	// are calculated by scanning all spans.
    	// Total number of mallocs is calculated as number of frees plus number of alive objects.
    	// Similarly, total amount of allocated memory is calculated as amount of freed memory
    	// plus amount of alive heap memory.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/Swift3.groovy

     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *      http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/pjrt_tensor_buffer_util.cc

      return result;
    }
    
    // If existing_tensor does not use PjRtTensorBuffer and the opaque device memory
    // is the same, the tensor should be reused so that the same device memory will
    // not be double-freed.
    static bool ShouldReuseTensor(void* opaque_device_memory,
                                  const size_t expected_size,
                                  const Tensor* existing_tensor) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 14 18:14:47 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. internal/disk/stat_bsd.go

    		FSType: getFSType(s.Fstypename[:]),
    	}
    	if info.Free > info.Total {
    		return info, fmt.Errorf("detected free space (%d) > total drive space (%d), fs corruption at (%s). please run 'fsck'", info.Free, info.Total, path)
    	}
    	info.Used = info.Total - info.Free
    	return info, nil
    }
    
    // GetDriveStats returns IO stats of the drive by its major:minor
    func GetDriveStats(major, minor uint32) (iostats IOStats, err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 26 19:34:50 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/api/v1/cluster_tf.h

    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 14:08:41 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/DefaultMemoryManager.java

                    // If we've freed memory, invalidate the current OS memory snapshot
                    if (freedPhysical || freedVirtual) {
                        currentOsMemoryStatus = null;
                    }
                } else {
                    LOGGER.debug("There is no current snapshot of OS memory available - memory cannot be freed until a new memory status update occurs");
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. internal/disk/stat_linux_32bit.go

    		FSType: getFSType(s.Type),
    	}
    	// Check for overflows.
    	// https://github.com/minio/minio/issues/8035
    	// XFS can show wrong values at times error out
    	// in such scenarios.
    	if info.Free > info.Total {
    		return info, fmt.Errorf("detected free space (%d) > total drive space (%d), fs corruption at (%s). please run 'fsck'", info.Free, info.Total, path)
    	}
    	info.Used = info.Total - info.Free
    	return info, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 26 19:34:50 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go

    }
    
    type Statfs_t [0]byte
    
    type Statvfs_t struct {
    	Flag        uint32
    	Bsize       uint32
    	Frsize      uint32
    	Iosize      uint32
    	Blocks      uint64
    	Bfree       uint64
    	Bavail      uint64
    	Bresvd      uint64
    	Files       uint64
    	Ffree       uint64
    	Favail      uint64
    	Fresvd      uint64
    	Syncreads   uint64
    	Syncwrites  uint64
    	Asyncreads  uint64
    	Asyncwrites uint64
    	Fsidx       Fsid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/core/revived_types/revived_objects.h

    // to the revived object of the corresponding type.
    struct RevivedObjects {
      // Order of declaration is important here: we want the RestoredResources to be
      // freed after TFConcreteFunctions, for example.
      gtl::FlatMap<int, std::unique_ptr<Variable>> variables;
      gtl::FlatMap<int, std::unique_ptr<Asset>> assets;
      gtl::FlatMap<int, std::unique_ptr<Constant>> constants;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 05 23:10:04 UTC 2020
    - 4K bytes
    - Viewed (0)
Back to top