Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 162 for sensible (0.16 sec)

  1. android/guava/src/com/google/common/collect/ForwardingSortedSet.java

        return delegate().subSet(fromElement, toElement);
      }
    
      @Override
      public SortedSet<E> tailSet(@ParametricNullness E fromElement) {
        return delegate().tailSet(fromElement);
      }
    
      /**
       * A sensible definition of {@link #contains} in terms of the {@code first()} method of {@link
       * #tailSet}. If you override {@link #tailSet}, you may wish to override {@link #contains} to
       * forward to this implementation.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ArtifactTypeTest.groovy

     */
    
    package org.gradle.api.internal.artifacts.ivyservice
    
    import org.gradle.api.internal.component.ArtifactType
    import spock.lang.Specification
    
    class ArtifactTypeTest extends Specification {
        def "have sensible toString values"() {
            expect:
            ArtifactType.SOURCES.toString() == "'sources' artifacts"
            ArtifactType.JAVADOC.toString() == "'javadoc' artifacts"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/AbstractSerializer.java

     * limitations under the License.
     */
    
    package org.gradle.internal.serialize;
    
    import com.google.common.base.Objects;
    
    /**
     * This abstract class provide a sensible default implementation for {@code Serializer} equality. This equality
     * implementation is required to enable cache instance reuse within the same Gradle runtime. Serializers are used
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ear.EarPluginConvention.xml

                    <td><literal>'lib'</literal></td>
                </tr>
                <tr>
                    <td>deploymentDescriptor</td>
                    <td>A deployment descriptor initialized with sensible defaults</td>
                </tr>
                <tr>
                    <td>generateDeploymentDescriptor</td>
                    <td><literal>true</literal></td>
                </tr>
            </table>
        </section>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/SwiftToolChainDiscoveryIntegrationTest.groovy

                        ${toolChain.buildScriptConfig}
                    }
                }
            """
        }
    
        def "toolchain is not available when the discovered swift executable does not return sensible output"() {
            def scriptDir = testDirectory.createDir("scriptDir")
            def script = scriptDir.createFile("swiftc")
            script << """
                #!/bin/sh
                echo "foo"
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/sysvshm_unix.go

    	var info SysvShmDesc
    
    	_, err := SysvShmCtl(id, IPC_STAT, &info)
    	if err != nil {
    		// release the shared memory if we can't find the size
    
    		// ignoring error from shmdt as there's nothing sensible to return here
    		shmdt(addr)
    		return nil, err
    	}
    
    	// Use unsafe to convert addr into a []byte.
    	b := unsafe.Slice((*byte)(unsafe.Pointer(addr)), int(info.Segsz))
    	return b, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/test_util.h

          : library(OpRegistry::Global(), FunctionDefLibrary()) {
        session_options.env = Env::Default();
      }
    
      // Create GraphOptimizationPassOptions with a graph passed in constructor and
      // sensible options.
      GraphOptimizationPassOptions CreateGraphOptimizationPassOptions(
          std::unique_ptr<Graph>* graph) {
        GraphOptimizationPassOptions options;
        options.session_options = &session_options;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 16 18:03:15 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskExecutionIntegrationTest.groovy

                executer.withTasks("b", "a").withArguments("-x", ":a").run().assertTasksExecuted(":b", ":sub:a")
            }
        }
    
        def "sensible error message for circular task dependency"() {
            buildFile << """
                task a(dependsOn: 'b')
                task b(dependsOn: 'a')
            """
            expect:
            2.times {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  9. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinPlatformComponent.kt

     */
    public interface KotlinPlatformComponent
    
    /**
     * An optional [KotlinPlatformComponent]. The Analysis API engine does not require an optional platform component to be implemented and
     * will use sensible fallbacks or disable/avoid certain behaviors instead.
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/EarPluginConvention.java

         *
         * @since 6.0
         */
        public abstract Property<Boolean> getGenerateDeploymentDescriptor();
    
        /**
         * A custom deployment descriptor configuration.
         * Default is an "application.xml" with sensible defaults.
         */
        public abstract DeploymentDescriptor getDeploymentDescriptor();
    
        public abstract void setDeploymentDescriptor(DeploymentDescriptor deploymentDescriptor);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top