Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for conjunction (0.15 sec)

  1. platforms/core-runtime/functional/src/main/java/org/gradle/internal/RenderingUtils.java

    public abstract class RenderingUtils {
        public static String oxfordListOf(Collection<String> values, String conjunction) {
            return values.stream()
                .sorted()
                .map(s -> "'" + s + "'")
                .collect(oxfordJoin(conjunction));
        }
    
        public static Collector<? super String, ?, String> oxfordJoin(String conjunction) {
            return Collectors.collectingAndThen(Collectors.toList(), stringList -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 14:11:31 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. cmd/xl-storage_windows_test.go

    		{`/p/q/r/s/t`, true},
    	}
    	dir := t.TempDir()
    
    	// Instantiate posix object to manage a disk
    	fs, err := newLocalXLStorage(dir)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Create volume to use in conjunction with other StorageAPI's file API(s)
    	err = fs.MakeVol(context.Background(), "voldir")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	for i, test := range testCases {
    		t.Run(fmt.Sprint(i), func(t *testing.T) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Nov 29 06:35:16 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/resolver/IdeDependencyVisitor.java

    import org.gradle.api.artifacts.result.ResolvedArtifactResult;
    import org.gradle.api.artifacts.result.UnresolvedDependencyResult;
    
    import java.io.File;
    import java.util.Set;
    
    /**
     * Used in conjunction with {@link IdeDependencySet} to adapt Gradle's dependency resolution API to the
     * specific needs of the IDE plugins.
     */
    public interface IdeDependencyVisitor {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/build-organization/composite-builds/plugin-dev/README.adoc

    == Composite build to develop a Gradle plugin
    
    This sample demonstrates a composite build used to develop a Gradle plugin in conjunction with a consuming build.
    
    The plugin could be in the same repository (only used by this build) or it could be in a different repository (used by many other builds).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/tasks/GenerateWorkspaceSettingsFileTask.java

    import org.gradle.work.DisableCachingByDefault;
    
    /**
     * Task for generating a Xcode workspace settings file (e.g. {@code Foo.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings}).
     *
     * <p>This task is used in conjunction with {@link org.gradle.ide.xcode.tasks.GenerateXcodeWorkspaceFileTask}.</p>
     *
     * @see org.gradle.ide.xcode.XcodeWorkspace
     * @since 4.2
     */
    @Incubating
    @DisableCachingByDefault(because = "Not made cacheable, yet")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/cluster_scoping_pass.cc

    // instead of overriding the old value.  In other words, appending scope B to
    // scope A creates the conjunction of the scopes A and B (i.e, A & B) and,
    // in effect, the node gets both the old and new scopes.  As a unique scope
    // disallows a node being merged with nodes in other scopes, the scope
    // conjunction preserves the semantic of the old scope (i.e., the node still
    // cannot be merged with the previously incompatible nodes.)
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/configuration/internal/ListenerBuildOperationDecorator.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Decorates listener functions/objects to fire {@link ExecuteListenerBuildOperationType} build operations when later executed.
     * <p>
     * Works in conjunction with {@link UserCodeApplicationContext} to attach the current user code application ID
     * to the listener, in order to convey it as part of the operation details.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:19 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/tasks/GenerateSchemeFileTask.java

     *
     * <p>This task is used in conjunction with {@link org.gradle.ide.xcode.tasks.GenerateXcodeProjectFileTask}.</p>
     *
     * @see org.gradle.ide.xcode.XcodeProject
     * @since 4.2
     */
    @Incubating
    @DisableCachingByDefault(because = "Not made cacheable, yet")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/opensearch/extension/kuromoji/index/analysis/KuromojiTokenizerFactory.java

            if (settings.get(USER_DICT_PATH_OPTION) != null && settings.get(USER_DICT_RULES_OPTION) != null) {
                throw new IllegalArgumentException(
                        "It is not allowed to use [" + USER_DICT_PATH_OPTION + "] in conjunction" + " with [" + USER_DICT_RULES_OPTION + "]");
            }
            try {
                Set<String> dup = new HashSet<>();
                List<String> ruleList =
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/platform/Platform.kt

      /**
       * Returns an object that holds a stack trace created at the moment this method is executed. This
       * should be used specifically for [java.io.Closeable] objects and in conjunction with
       * [logCloseableLeak].
       */
      open fun getStackTraceForCloseable(closer: String): Any? {
        return when {
          logger.isLoggable(Level.FINE) -> Throwable(closer) // These are expensive to allocate.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top