Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,040 for populator (0.2 sec)

  1. pkg/registry/rbac/rolebinding/policybased/storage.go

    	if rbacregistry.EscalationAllowed(ctx) {
    		return s.StandardStorage.Create(ctx, obj, createValidation, options)
    	}
    
    	// Get the namespace from the context (populated from the URL).
    	// The namespace in the object can be empty until StandardStorage.Create()->BeforeCreate() populates it from the context.
    	namespace, ok := genericapirequest.NamespaceFrom(ctx)
    	if !ok {
    		return nil, errors.NewBadRequest("namespace is required")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 10:11:16 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/projects/fully-populated-child.xml

    Jason van Zyl <******@****.***> 1172702970 +0000
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 22:49:30 UTC 2007
    - 4.7K bytes
    - Viewed (0)
  3. internal/bpool/bpool.go

    	}
    	return &BytePoolCap{
    		c:    make(chan []byte, maxSize),
    		w:    width,
    		wcap: capwidth,
    	}
    }
    
    // Populate - populates and pre-warms the byte pool, this function is non-blocking.
    func (bp *BytePoolCap) Populate() {
    	for _, buf := range reedsolomon.AllocAligned(cap(bp.c), bp.wcap) {
    		bp.Put(buf[:bp.w])
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 19 16:44:59 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/config.cc

            ->Add(preset_datasets.begin(), preset_datasets.end());
      }
    
      // Create a new `QuantizationSpecs` to replace the existing one. The
      // expansion from `StaticRangePtqPreset` gets populated first and then
      // user-provided explicit `QuantizationSpec`s will be appended.
      QuantizationSpecs new_specs{};
      *new_specs.add_specs() =
          GetDefaultStaticRangePtqSpec(/*preset=*/config.static_range_ptq_preset());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_metadata_utils.cc

    // Creates a missing attribute error message.
    std::string CreateMissingAttributeMsg(llvm::StringRef attribute) {
      return llvm::formatv("requires attribute '{0}'", attribute).str();
    }
    
    // Populates a TPUCompileMetadataProto with StepMarkerLocation from a
    // `tf_device::ClusterFuncOp`.
    LogicalResult SetMetadataProtoStepMarkerLocation(
        tf_device::ClusterFuncOp op,
        tensorflow::tpu::TPUCompileMetadataProto* metadata) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. platforms/software/version-control/src/main/java/org/gradle/vcs/internal/VersionControlSystem.java

         */
        Set<VersionRef> getAvailableVersions(VersionControlSpec spec);
    
        /**
         * Populates a working directory with the given version from the version control repository from the {@code spec}.
         *
         * This should reset any changes in the working directory, if it exists.
         */
        void populate(File workingDir, VersionRef ref, VersionControlSpec spec);
    
        /**
         * Returns the default revision for this VCS.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/build/BuildWorkGraphController.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.util.Collection;
    
    /**
     * Allows the work graph for a particular build in the build tree to be populated and executed.
     */
    @ServiceScope(Scope.Build.class)
    public interface BuildWorkGraphController {
        /**
         * Locates a future task node in this build's work graph, for use from some other build's work graph.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. src/runtime/metrics.go

    // as a set of these aggregates that it has populated. The aggregates
    // are populated lazily by its ensure method.
    type statAggregate struct {
    	ensured   statDepSet
    	heapStats heapStatsAggregate
    	sysStats  sysStatsAggregate
    	cpuStats  cpuStatsAggregate
    	gcStats   gcStatsAggregate
    }
    
    // ensure populates statistics aggregates determined by deps if they
    // haven't yet been populated.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
  9. src/runtime/metrics/sample.go

    	// returned by All.
    	Name string
    
    	// Value is the value of the metric sample.
    	Value Value
    }
    
    // Implemented in the runtime.
    func runtime_readMetrics(unsafe.Pointer, int, int)
    
    // Read populates each [Value] field in the given slice of metric samples.
    //
    // Desired metrics should be present in the slice with the appropriate name.
    // The user of this API is encouraged to re-use the same slice between calls for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:59:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/rest/meta.go

    	meta.SetSelfLink("")
    }
    
    // FillObjectMetaSystemFields populates fields that are managed by the system on ObjectMeta.
    func FillObjectMetaSystemFields(meta metav1.Object) {
    	meta.SetCreationTimestamp(metav1.Now())
    	meta.SetUID(uuid.NewUUID())
    }
    
    // EnsureObjectNamespaceMatchesRequestNamespace returns an error if obj.Namespace and requestNamespace
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 19 01:47:23 UTC 2022
    - 2.7K bytes
    - Viewed (0)
Back to top