Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 566 for Size (0.07 sec)

  1. pkg/kubelet/images/image_gc_manager.go

    			klog.V(5).InfoS("Setting Image ID lastUsed", "imageID", imageKey, "lastUsed", now)
    			im.imageRecords[imageKey].lastUsed = now
    		}
    
    		klog.V(5).InfoS("Image ID has size", "imageID", imageKey, "size", image.Size)
    		im.imageRecords[imageKey].size = image.Size
    
    		klog.V(5).InfoS("Image ID is pinned", "imageID", imageKey, "pinned", image.Pinned)
    		im.imageRecords[imageKey].pinned = image.Pinned
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. schema/relationship.go

    		}
    		relation.Polymorphic.PolymorphicID.GORMDataType = primaryKeyField.GORMDataType
    		if relation.Polymorphic.PolymorphicID.Size == 0 {
    			relation.Polymorphic.PolymorphicID.Size = primaryKeyField.Size
    		}
    
    		relation.References = append(relation.References, &Reference{
    			PrimaryKey:    primaryKeyField,
    			ForeignKey:    relation.Polymorphic.PolymorphicID,
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  3. src/time/zoneinfo_read.go

    			if !ok {
    				return nil, errBadData
    			}
    			if uint32(int(nn)) != nn {
    				return nil, errBadData
    			}
    			n[i] = int(nn)
    		}
    	}
    
    	size := 4
    	if is64 {
    		size = 8
    	}
    
    	// Transition times.
    	txtimes := dataIO{d.read(n[NTime] * size), false}
    
    	// Time zone indices for transition times.
    	txzones := d.read(n[NTime])
    
    	// Zone info structures
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. manifests/addons/dashboards/pilot-dashboard.gen.json

             },
             "description": "Size of each xDS push.\n",
             "gridPos": {
                "h": 10,
                "w": 8,
                "x": 16,
                "y": 14
             },
             "id": 14,
             "interval": "1m",
             "options": {
                "calculation": {
                   "xBuckets": {
                      "mode": "size",
                      "value": "1min"
                   }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.cc

            }
          } else {
            assert(input_sharding_type == xla::OpSharding::OTHER);
            if (partitioned_input.getInputs().size() != num_cores_per_replica)
              return tiled_sharding_mismatched(
                  partitioned_input.getInputs().size());
    
            for (int i = 0; i < sharding.tile_assignment_devices_size(); ++i) {
              const int assigned_logical_device =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/FunctionCallResolver.kt

        }
    
        private
        fun preFilterSignatures(
            matchingMembers: List<SchemaFunction>,
            args: List<FunctionArgument>,
        ) = matchingMembers.filter { it.parameters.size >= args.filterIsInstance<FunctionArgument.ValueArgument>().size }
    
        private
        fun TypeRefContext.findMemberFunction(
            receiver: ObjectOrigin,
            functionCall: FunctionCall,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TaskProgressCrossVersionSpec.groovy

            ex.message.startsWith("Could not execute build using")
            ex.causes == [failure]
    
            and: "expected events received"
            resultsOfFirstListener.size() == 1
            resultsOfLastListener.size() == 1
    
            and: "build execution is successful"
            assertHasBuildSuccessfulLogging()
        }
    
        def "receive task progress events for successful tasks"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. cmd/object-api-errors.go

    }
    
    // ObjectTooLarge error returned when the size of the object > max object size allowed (5G) per request.
    type ObjectTooLarge GenericError
    
    func (e ObjectTooLarge) Error() string {
    	return "size of the object greater than what is allowed(5G)"
    }
    
    // ObjectTooSmall error returned when the size of the object < what is expected.
    type ObjectTooSmall GenericError
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 22:19:00 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  9. cmd/erasure-server-pool-decom.go

    	}
    
    	return nil
    }
    
    func (p *poolMeta) CountItem(idx int, size int64, failed bool) {
    	pd := p.Pools[idx].Decommission
    	if pd == nil {
    		return
    	}
    	if failed {
    		pd.ItemsDecommissionFailed++
    		pd.BytesFailed += size
    	} else {
    		pd.ItemsDecommissioned++
    		pd.BytesDone += size
    	}
    	p.Pools[idx].Decommission = pd
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 14:30:43 UTC 2024
    - 41.5K bytes
    - Viewed (1)
  10. platforms/ide/problems-api/src/integTest/groovy/org/gradle/api/problems/ProblemsServiceIntegrationTest.groovy

            then:
            verifyAll(receivedProblem) {
                definition.id.fqid == 'problems-api:missing-id'
                definition.id.displayName == 'Problem id must be specified'
                locations.size() == 1
                with(oneLocation(LineInFileLocation)) {
                    length == -1
                    column == -1
                    line == 11
                    path == "build file '$buildFile.absolutePath'"
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top