Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for conjunction (0.23 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. releasenotes/notes/helm_chart_pilot_extraargsvolumes

    docs: []
    
    releaseNotes:
    - |
      **Added** values to the Istio Pilot Helm charts for configuring additional container arguments, volumeMounts, and volumes. Can be used in conjunction with cert-manager istio-csr.
    
    upgradeNotes: []
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 23 15:25:03 UTC 2023
    - 430 bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/KotlinGrammar.kt

        }
    
        val equality by debug {
            comparison * zeroOrMore(equalityOperator * comparison)
        }
    
        val conjunction by debug {
            equality * zeroOrMore(token(ANDAND) * equality)
        }
    
        val disjunction =
            conjunction * zeroOrMore(token(OROR) * conjunction)
    
    
        val definitelyNonNullableType =
            (userType + parenthesizedUserType) * token(MUL) * (userType + parenthesizedUserType)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top