Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for conjunction (0.17 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. android/guava/src/com/google/common/cache/CacheStats.java

       * This is usually incremented in conjunction with {@link #missCount}, though {@code missCount} is
       * also incremented when an exception is encountered during cache loading (see {@link
       * #loadExceptionCount}). Multiple concurrent misses for the same key will result in a single load
       * operation. This may be incremented not in conjunction with {@code missCount} if the load occurs
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Aug 07 02:38:22 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/CacheStats.java

       * This is usually incremented in conjunction with {@link #missCount}, though {@code missCount} is
       * also incremented when an exception is encountered during cache loading (see {@link
       * #loadExceptionCount}). Multiple concurrent misses for the same key will result in a single load
       * operation. This may be incremented not in conjunction with {@code missCount} if the load occurs
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Aug 07 02:38:22 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. pkg/controller/nodeipam/ipam/doc.go

    // We currently support several kinds of IPAM allocators (these are denoted by
    // the CIDRAllocatorType):
    //   - RangeAllocator is an allocator that assigns PodCIDRs to nodes and works
    //     in conjunction with the RouteController to configure the network to get
    //     connectivity.
    //   - CloudAllocator is an allocator that synchronizes PodCIDRs from IP
    //     ranges assignments from the underlying cloud platform.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top