Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 328 for produced (0.34 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/ExecutionEngine.java

            Try<T> getResult();
    
            /**
             * The origin metadata of the result.
             *
             * If a previously produced output was reused in some way, the reused output's origin metadata is returned.
             * If the output was produced in this request, then the current execution's origin metadata is returned.
             */
            Optional<OriginMetadata> getOriginMetadata();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:17 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/output/types.go

    // BootstrapToken represents information for the bootstrap token output produced by kubeadm
    type BootstrapToken struct {
    	metav1.TypeMeta
    
    	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
    
    	Images []string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:01:20 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/execution/ExecuteDeferredWorkProgressDetails.java

        /**
         * The ID of the build that produced the outputs being reused.
         *
         * @since 8.7
         */
        String getOriginBuildInvocationId();
    
        /**
         * The build cache key of the work in the origin build invocation.
         *
         * @since 8.7
         */
        byte[] getOriginBuildCacheKeyBytes();
    
        /**
         * The execution time of the work in the build that produced the outputs being reused.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 16:13:07 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/declaring_dependencies_between_subprojects.adoc

    // limitations under the License.
    
    [[declaring_dependencies_between_subprojects]]
    = Declaring Dependencies between Subprojects
    
    What if one subproject depends on another subproject?
    What if one project needs the artifact produced by another project?
    
    image::structuring-builds-2.png[]
    
    This is a common use case for multi-project builds.
    Gradle offers <<declaring_dependencies.adoc#sub:project_dependencies,project dependencies>> for this.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 21:54:47 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/analysis.go

    // represent the subject of the predicate such as "function F" or "package P".
    //
    // Facts may be produced in one analysis pass and consumed by another
    // analysis pass even if these are in different address spaces.
    // If package P imports Q, all facts about Q produced during
    // analysis of that package will be available during later analysis of P.
    // Facts are analogous to type export data in a build system:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top