Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 205 for composite_ (0.5 sec)

  1. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildPluginDevelopmentIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.integtests.composite
    
    
    import org.gradle.integtests.fixtures.build.BuildTestFile
    import org.gradle.integtests.fixtures.executer.GradleContextualExecuter
    import org.gradle.integtests.fixtures.timeout.IntegrationTestTimeout
    import spock.lang.Issue
    
    /**
     * Tests for plugin development scenarios within a composite build.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyArtifactsIntegrationTest.groovy

     */
    
    package org.gradle.integtests.composite
    
    import org.gradle.integtests.fixtures.build.BuildTestFile
    import org.gradle.integtests.fixtures.resolve.ResolveTestFixture
    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.test.fixtures.server.http.BlockingHttpServer
    import org.junit.Rule
    
    /**
     * Tests for resolving dependency artifacts with substitution within a composite build.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 06 13:06:28 UTC 2020
    - 21.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/index.go

    			check.errorf(x, code, invalidArg+"%s %s overflows int", what, x)
    			return false
    		}
    	}
    
    	return true
    }
    
    // indexedElts checks the elements (elts) of an array or slice composite literal
    // against the literal's element type (typ), and the element indices against
    // the literal length if known (length >= 0). It returns the length of the
    // literal (maximum index value + 1).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 16:16:58 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/initialization/Settings.java

        Gradle getGradle();
    
        /**
         * Includes a build at the specified path to the composite build.
         * @param rootProject The path to the root project directory for the build.
         *
         * @since 3.1
         */
        void includeBuild(Object rootProject);
    
        /**
         * Includes a build at the specified path to the composite build, with the supplied configuration.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    }
    
    // A component is an assembly-addressable component of a composite type,
    // or a composite type itself.
    type component struct {
    	size   int
    	offset int
    	kind   asmKind
    	typ    string
    	suffix string // Such as _base for string base, _0_lo for lo half of first element of [1]uint64 on 32 bit machine.
    	outer  string // The suffix for immediately containing composite type.
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  6. tensorflow/cc/tools/freeze_saved_model_test.cc

      TestFreezeGraphWithAndWithoutDependentVariables(true);
    }
    
    TEST_F(FreezeTest, InputsAndOutputsCompositeTensorSignatureDef) {
      // Test that inputs and outputs get correctly populated for a
      // SignatureDef containing composite tensor inputs and outputs.
      SavedModelBundle saved_model_bundle;
      SignatureDef signature_def;
    
      TensorInfo& in = (*signature_def.mutable_inputs())["input_arg"];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 07 13:30:31 UTC 2022
    - 21.7K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/DefaultTaskProperties.java

            OutputUnpacker outputUnpacker = new OutputUnpacker(
                beanName,
                fileCollectionFactory,
                true,
                true,
                OutputUnpacker.UnpackedOutputConsumer.composite(outputFilesCollector, validationVisitor)
            );
            GetLocalStateVisitor localStateVisitor = new GetLocalStateVisitor(beanName, fileCollectionFactory);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:29:29 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/common/ir/UniformSupport.h

      // Whether the conversion is legal.
      explicit operator bool() const { return (bool)expressed_type; }
    
      // The input type that is being converted from.
      // This may be an elemental or composite type.
      const Type input_type;
    
      // Supported, elemental expressed type (i.e. f32).
      // Will be nullptr if conversion is not supported.
      const Type expressed_type;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/ConcurrentTestUtil.groovy

         */
        WaitForAsyncAction waitsForAsyncActionToComplete() {
            return new WaitForAsyncAction(this)
        }
    
        /**
         * Returns a composite participant, which you can use to perform atomic operations on.
         *
         * @return A handle to the composite participant.
         */
        TestParticipant all(TestParticipant... participants) {
            return new CompositeTestParticipant(this, lock, participants as List)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultIncludedBuildTaskGraph.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.composite.internal;
    
    import com.google.common.annotations.VisibleForTesting;
    import org.gradle.api.Task;
    import org.gradle.api.internal.TaskInternal;
    import org.gradle.api.specs.Spec;
    import org.gradle.execution.EntryTaskSelector;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:04:24 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top