Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,102 for produced (0.12 sec)

  1. cmd/kubeadm/app/apis/output/v1alpha3/types.go

    // BootstrapToken represents information for the bootstrap token output produced by kubeadm
    type BootstrapToken struct {
    	metav1.TypeMeta `json:",inline"`
    
    	bootstraptokenv1.BootstrapToken
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // Images represents information for the output produced by 'kubeadm config images list'
    type Images struct {
    	metav1.TypeMeta `json:",inline"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/pjrt_device_compiler_client.h

          const XlaCompiler::Options& options,
          const XlaCompiler::CompilationResult& result) override;
    
      // Deserializes a serialized executable as produced by
      // PjRtExecutable::SerializeExecutable(). `serialized_executable` must have
      // been produced by a compiler of the same platform and version as this one.
      //
      // PjRt doesn't support AOT compilation yet. Loading a serialized executable
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/ztunnel/configdump/configdump_test.go

    			}
    			if tt.wantOutputSecret != "" {
    				err := cw.PrintSecretSummary()
    				if err == nil && tt.wantErr {
    					t.Errorf("PrintSecretSummary (%v) did not produce expected err", tt.name)
    				} else if err != nil && !tt.wantErr {
    					t.Errorf("PrintSecretSummary (%v) produced unexpected err: %v", tt.name, err)
    				}
    				util.CompareContent(t, gotOut.Bytes(), tt.wantOutputSecret)
    			}
    			if tt.wantOutputWorkload != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modindex/index_format.txt

    for each rawPackage:
    	error uint32 - string offset // error is produced by fsys.ReadDir or fmt.Errorf
    	dir uint32 - string offset (directory path relative to module root)
    	len(sourceFiles) uint32
    	sourceFiles [n]uint32 - offset to source file (relative to start of index file)
    	for each sourceFile:
    		error - string offset // error is either produced by fmt.Errorf,errors.New or is io.EOF
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 13 00:22:50 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/LocalComponentRegistry.java

    import org.gradle.internal.component.local.model.LocalComponentGraphResolveState;
    
    import javax.annotation.concurrent.ThreadSafe;
    
    /**
     * A registry of all dependency resolution state for locally produced components.
     * These components may be produced within the same project, another project in the same multi-project build,
     * or in another build within a composite.
     */
    @ThreadSafe
    public interface LocalComponentRegistry {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 17:59:41 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/common/uniform_quantized_types.h

    #include "mlir/Support/LLVM.h"  // from @llvm-project
    
    namespace mlir {
    namespace quant {
    
    // Creates a `UniformQuantizedType` with the given `scale` and `zero_point`
    // values. The produced type has f32 as its expressed type and i8 as its
    // storage type. The available values use the full range of the storage value,
    // i.e. [-128, 127]. Assumes asymmetric quantization, meaning the zero point
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/events/InternalOperationResult.java

         * Returns the time the build execution started.
         *
         * @return The start time of the build
         */
        long getStartTime();
    
        /**
         * Returns the time the result was produced.
         *
         * @return The time the result was produced.
         */
        long getEndTime();
    
        /**
         * Returns the failures that occurred while running the build, if any.
         *
         * @return The failures that occurred
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/library_vs_application.adoc

    [[sub:producer-variants]]
    == Producer variants
    
    A producer may want to generate different artifacts for different kinds of consumers: for the same source code, different _binaries_ are produced.
    Or, a project may produce artifacts which are for consumption by other projects (same repository) but not for external use.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/base/buildDashboard/tests/buildDashboard.out

    Reporting tasks
    ---------------
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 114 bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/exec/ChainingBuildActionRunnerTest.groovy

        def runner2 = Mock(BuildActionRunner)
        def runner3 = Mock(BuildActionRunner)
        def runner = new ChainingBuildActionRunner([runner1, runner2, runner3])
    
        def "invokes runners until a result is produced"() {
            def action = Stub(BuildAction)
            def controller = Mock(BuildTreeLifecycleController)
    
            when:
            runner.run(action, controller)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top