Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 83 for conjunction (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. android/guava/src/com/google/common/collect/UnmodifiableIterator.java

    import java.util.Iterator;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * An iterator that does not support {@link #remove}.
     *
     * <p>{@code UnmodifiableIterator} is used primarily in conjunction with implementations of {@link
     * ImmutableCollection}, such as {@link ImmutableList}. You can, however, convert an existing
     * iterator to an {@code UnmodifiableIterator} using {@link Iterators#unmodifiableIterator}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jul 09 17:31:04 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  6. test/codegen/fuse.go

    //   unknown values that cannot be optimized away
    // - these examples use for loops to force branches
    //   backward (predicted taken)
    
    // ---------------------------------- //
    // signed integer range (conjunction) //
    // ---------------------------------- //
    
    func si1c(c <-chan int64) {
    	// amd64:"CMPQ\t.+, [$]256"
    	// s390x:"CLGIJ\t[$]12, R[0-9]+, [$]255"
    	for x := <-c; x >= 0 && x < 256; x = <-c {
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 03 14:30:26 UTC 2020
    - 4.8K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/common/help.jsp

    		<pre>Fess sort:content_length.desc</pre>
    		The available sort field are "created", "content_length" and
    		"last_modified", and they are customizable.
    	</dd>
    	<dt>AND</dt>
    	<dd>
    		AND operator is the default conjunction operator. You can omit it from
    		a query. AND operator matches documents where both terms exist
    		anywhere in the text of a single document.
    		<pre>Fess AND CodeLibs</pre>
    	</dd>
    	</dd>
    	<dt>OR</dt>
    	<dd>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Feb 26 14:01:31 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  8. 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)
  9. releasenotes/notes/remote-ip.yaml

        content: |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 23 17:46:08 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  10. docs/throttle/README.md

    ```
    
    > NOTE: A zero value of `requests_max` means MinIO will automatically calculate requests based on available RAM size and that is the default behavior.
    
    ### Configuring connection (wait) deadline
    
    This value works in conjunction with max connection setting, setting this value allows for long waiting requests to quickly time out when there is no slot available to perform the request.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 2.4K bytes
    - Viewed (0)
Back to top