Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,135 for produced (0.24 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/Packaging.java

        /**
         * The language of this packaging.
         */
        @Nonnull
        default Language language() {
            return type().getLanguage();
        }
    
        /**
         * The type of main artifact produced by this packaging.
         */
        @Nonnull
        Type type();
    
        /**
         * Returns the binding to use specifically for this packaging keyed by lifecycle id.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/codec_check.go

    		if err != nil {
    			return fmt.Errorf("external type %s not interpretable: %v", et, err)
    		}
    		if reflect.TypeOf(obj) != reflect.TypeOf(internalType) {
    			return fmt.Errorf("decode of external type %s produced: %#v", et, obj)
    		}
    		if err = DecodeInto(c, exBytes, internalType); err != nil {
    			return fmt.Errorf("external type %s not convertible to internal type: %v", et, err)
    		}
    	}
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 27 07:07:03 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  3. platforms/software/version-control/src/test/groovy/org/gradle/vcs/internal/DefaultVersionControlRepositoryTest.groovy

            when:
            repository.asMappingAction().execute(mapping)
    
            then:
            0 * mapping._
        }
    
        def "attaches git repo when requested module matches one of those produced by the repo"() {
            def selector = DefaultModuleComponentSelector.newSelector(DefaultModuleIdentifier.newId("test", "test2"), "1.2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/metadata/SwiftcMetadataProvider.java

                        return new DefaultSwiftcMetadata(line, version);
                    }
                }
                throw new BrokenResultException(String.format("Could not determine %s metadata: %s produced unexpected output.", getCompilerType().getDescription(), swiftc.getName()));
            } catch (IOException e) {
                // Should not happen when reading from a StringReader
                throw new UncheckedIOException(e);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/IncrementalCompileOptions.java

         * @since 6.6
         */
        @LocalState
        public RegularFileProperty getClassfileBackupDir() {
            return classfileBackupDir;
        }
    
        /**
         * Returns the directory or archive path by which the code produced by this task
         * is published to other {@code ScalaCompile} tasks.
         */
        // only an input for other task instances
        @Internal
        public RegularFileProperty getPublishedCode() {
            return publishedCode;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/exported_model.proto

    option cc_enable_arenas = true;
    
    // Represents an exported TensorFlow model. It consists of a GraphDef and extra
    // metadata required for building a SavedModel. This message is primarily used
    // to "export" the model produced from various quantization passes in c++ to
    // Python layer.
    // Next ID: 11
    message ExportedModel {
      reserved 3, 4, 7, 9;
      reserved 'variable_shared_names';
      reserved 'restore_node_name';
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 06:12:59 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/operations/configuration/IsolatedProjectsSettingsBuildOperationsIntegrationTest.groovy

            then:
            isolatedProjectsEvents().enabled == [enabled]
            configurationCacheEvents().enabled == [GradleContextualExecuter.configCache || enabled]
    
            // Ensure events are produced on CC hit as well
            when:
            succeeds("help", "-Dorg.gradle.unsafe.isolated-projects=$enabled")
            then:
            isolatedProjectsEvents().enabled == [enabled]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/group_by_dialect.cc

          // the sense that they're values produced inside this op.
          for (Region& region : op->getRegions()) {
            for (Block& block : region.getBlocks()) {
              for (BlockArgument& arg : block.getArguments()) {
                all_internal_results.insert(arg);
              }
            }
          }
        });
      }
    
      // All operand values in our set not produced as result by some op in our set.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/SmokeTestGradleRunner.groovy

        }
    
        /**
         * Expect a deprecation warning to appear when {@link #build()} or {@link #buildAndFail()} is called if the given condition is true.
         *
         * @param condition only expect the warning to be produced when this condition is {@code true}.
         * @param warning the text of the warning to match.
         * @param followup how are we planning to resolve the deprecation before it turns into a breakage;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/NativePlatform.java

     *         }
     *     }
     * </pre>
     */
    @HasInternalProtocol
    public interface NativePlatform extends Platform, Describable {
        /**
         * The cpu architecture being targeted. Defaults to the default architecture produced by the tool chain.
         */
        @Nested
        Architecture getArchitecture();
    
        /**
         * Sets the cpu architecture being targeted.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top