Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,659 for Osage (0.04 sec)

  1. pkg/volume/util/fs/fs.go

    	capacity := int64(statfs.Blocks) * int64(statfs.Bsize)
    
    	// Usage is block being used * fragment size (aka block size).
    	usage := (int64(statfs.Blocks) - int64(statfs.Bfree)) * int64(statfs.Bsize)
    
    	inodes := int64(statfs.Files)
    	inodesFree := int64(statfs.Ffree)
    	inodesUsed := inodes - inodesFree
    
    	return available, capacity, usage, inodes, inodesFree, inodesUsed, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 20 02:56:02 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/ops/gen/generate_cpp_main.cc

        // Parse known flags
        string usage = tensorflow::Flags::Usage(
            absl::StrCat(*argv[0], " Op1 [Op2 ...]"), flags);
        QCHECK(tensorflow::Flags::Parse(argc, *argv, flags)) << usage;  // Crash OK
    
        // Initialize any TensorFlow support, parsing boilerplate flags (e.g. logs)
        tensorflow::port::InitMain(usage.c_str(), argc, argv);
    
        // Validate flags
        if (help_) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 21 18:51:25 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionEvent.java

        private final MemoryUsage usage;
        private final long count;
    
        public GarbageCollectionEvent(long timestamp, MemoryUsage usage, long count) {
            this.timestamp = timestamp;
            this.usage = usage;
            this.count = count;
        }
    
        public long getTimestamp() {
            return timestamp;
        }
    
        public MemoryUsage getUsage() {
            return usage;
        }
    
        public long getCount() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. pkg/quota/v1/evaluator/core/persistent_volume_claims_test.go

    	evaluator := NewPersistentVolumeClaimEvaluator(nil)
    	testCases := map[string]struct {
    		pvc                        *core.PersistentVolumeClaim
    		usage                      corev1.ResourceList
    		enableRecoverFromExpansion bool
    	}{
    		"pvc-usage": {
    			pvc: validClaim,
    			usage: corev1.ResourceList{
    				corev1.ResourceRequestsStorage:        resource.MustParse("10Gi"),
    				corev1.ResourcePersistentVolumeClaims: resource.MustParse("1"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. pkg/volume/csi/csi_metrics_test.go

    		}
    		expectedMetrics := getRawVolumeInfo()
    		for _, usage := range expectedMetrics.Usage {
    			if usage.Unit == csipbv1.VolumeUsage_BYTES {
    				availableBytes := resource.NewQuantity(usage.Available, resource.BinarySI)
    				totalBytes := resource.NewQuantity(usage.Total, resource.BinarySI)
    				usedBytes := resource.NewQuantity(usage.Used, resource.BinarySI)
    				if metrics.Available.Cmp(*availableBytes) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenGradleModuleMetadataPublishIntegrationTest.groovy

                        name: 'api',
                        usage: objects.named(Usage, 'api'),
                        dependencies: configurations.implementation.allDependencies,
                        attributes: testAttributes))
    
                comp.usages.add(new TestUsage(
                        name: 'impl',
                        usage: objects.named(Usage, 'api'),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/LazyAttributesIntegrationTest.groovy

                            attributeProvider(Usage.USAGE_ATTRIBUTE, testProvider)
                        }
                    }
                }
                """.stripIndent()
    
            expect:
            fails "outgoingVariants"
            failure.assertHasCause("Unexpected type for attribute 'org.gradle.usage' provided. Expected a value of type org.gradle.api.attributes.Usage but found a value of type java.lang.Integer.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/language/cpp/internal/DefaultCppBinary.java

            Configuration ipc = configurations.resolvableDependencyScopeUnlocked(names.withPrefix("cppCompile"));
            includePathConfiguration = ipc;
            includePathConfiguration.getAttributes().attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage.class, Usage.C_PLUS_PLUS_API));
            includePathConfiguration.getAttributes().attribute(DEBUGGABLE_ATTRIBUTE, identity.isDebuggable());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryPublishedTargetJvmEnvironmentIntegrationTest.groovy

                    extendsFrom(configurations.implementation)
                    attributes {
                        // This is what AGP 7 will most likely do:
                        attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage, Usage.JAVA_API))
                        attribute(TargetJvmEnvironment.TARGET_JVM_ENVIRONMENT_ATTRIBUTE, objects.named(TargetJvmEnvironment, TargetJvmEnvironment.ANDROID))
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/RoleBasedConfigurationCreationRequest.java

         *
         * Does <strong>NOT</strong> check anything to do with deprecated usage.
         *
         * @param conf the existing configuration
         * @return the existing configuration, with its usage now matching the requested usage
         * @throws UnmodifiableUsageException if the usage doesn't match this request and cannot be mutated
         */
        Configuration verifyExistingConfigurationUsage(Configuration conf);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 13:42:17 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top