Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 962 for Handles (0.31 sec)

  1. src/encoding/xml/marshal.go

    )
    
    // Marshal returns the XML encoding of v.
    //
    // Marshal handles an array or slice by marshaling each of the elements.
    // Marshal handles a pointer by marshaling the value it points at or, if the
    // pointer is nil, by writing nothing. Marshal handles an interface value by
    // marshaling the value it contains or, if the interface value is nil, by
    // writing nothing. Marshal handles all other data by writing one or more XML
    // elements containing the data.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/GradleBuildTaskIntegrationTest.groovy

    class GradleBuildTaskIntegrationTest extends AbstractIntegrationSpec {
    
        def buildOperations = new BuildOperationsFixture(executer, testDirectoryProvider)
    
        def "handles properties which are not String when calling GradleBuild"() {
            given:
            settingsFile << "rootProject.name = 'parent'"
            buildFile << """
                task buildInBuild(type:GradleBuild) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. plugin/pkg/admission/extendedresourcetoleration/admission_test.go

    	tests := map[admission.Operation]bool{
    		admission.Create:  true,
    		admission.Update:  true,
    		admission.Delete:  false,
    		admission.Connect: false,
    	}
    	for op, expected := range tests {
    		result := plugin.Handles(op)
    		if result != expected {
    			t.Errorf("Unexpected result for operation %s: %v\n", op, result)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 20 15:11:00 UTC 2019
    - 10.3K bytes
    - Viewed (0)
  4. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/daemon/DaemonGroovyCompiler.java

            gradleFilterSpec.disallowPackage("org.gradle.api.internal.tasks.compile");
    
            /*
             * This shouldn't be necessary, but currently is because the worker API handles return types differently
             * depending on whether you use process isolation or classpath isolation. In the former case, the return
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/resolver/KotlinBuildScriptDependenciesResolver.kt

        override val imports: Iterable<String>,
        override val javaHome: String? = null,
        val classPathBlocksHash: ByteArray?
    ) : KotlinScriptExternalDependencies
    
    
    /**
     * Handles all incoming [KotlinBuildScriptModelRequest]s via a single [EventLoop] to avoid spawning
     * multiple competing Gradle daemons.
     */
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/aot/BUILD

            "@local_xla//xla:debug_options_flags",
            "@local_xla//xla/service:compiler",
        ],
    )
    
    # NOTE: Most end-to-end tests are in the "tests" subdirectory, to ensure that
    # tfcompile.bzl correctly handles usage from outside of the package that it is
    # defined in.
    
    # A simple test of tf_library from a text protobuf, to enable benchmark_test.
    # This test uses an incompleted graph with a node that is not defined. The
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 16:13:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParserTest.groovy

                'a(  ,',
                '(',
                '( A',
                '( A ##',
                '( A ## b',
                '() ()',
                '(a) (b)',
                '~ ?'
            ]
        }
    
        def "handles various separators in an object-like macro directive"() {
            when:
            sourceFile << """
      #   define     SOME_STRING         "abc"      // some extra
      /*
    
      */  \\
      #/*
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/operations/trace/BuildOperationTrace.java

            } else {
                return object;
            }
        }
    
        @NonNullApi
        private static class JsonClassConverter implements JsonGenerator.Converter {
            @Override
            public boolean handles(Class<?> type) {
                return Class.class.equals(type);
            }
    
            @Override
            public Object convert(Object value, String key) {
                Class<?> clazz = (Class<?>) value;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonReuseIntegrationTest.groovy

            build3.waitForFinish()
    
            and:
            daemons.daemons.size() == 3
    
            and:
            !build3.standardOutput.contains(DaemonMessages.WAITING_ON_CANCELED)
        }
    
        def "handles two clients that attempt to connect to an idle daemon simultaneously"() {
            given:
            succeeds("help")
            buildFile << """
                task block {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/common/ir/UniformSupport.h

    #include "mlir/Support/LLVM.h"  // from @llvm-project
    
    namespace mlir::quantfork {
    
    // Performs type conversion from an arbitrary input type to a type
    // that is expressed by a QuantizedType.
    //
    // This handles cases where the inputType is a supported primitive type
    // (i.e. f32, bf16, etc) or a vector/tensor type based on a supported
    // elemental type.
    //
    // Since conversion often involves introspecting some attributes of the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top