Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 170 for addLink (0.12 sec)

  1. platforms/documentation/docs/src/snippets/testing/test-suite-version-catalogs/tests/checkTaskOutput.out

    A web-based, searchable dependency report is available by adding the --scan option.
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 19:28:13 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. src/os/tempfile.go

    }
    
    // CreateTemp creates a new temporary file in the directory dir,
    // opens the file for reading and writing, and returns the resulting file.
    // The filename is generated by taking pattern and adding a random string to the end.
    // If pattern includes a "*", the random string replaces the last "*".
    // The file is created with mode 0o600 (before umask).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 18:04:39 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/collections/IterationOrderRetainingSetElementSourceTest.groovy

            when:
            provider1.value = ["buzz", "fizz", "foo"]
    
            then:
            source.iterator().collect() == ["foo", "buzz", "fizz"]
        }
    
        def "adding is not ignored when a realized provider currently has the same value"() {
            def provider1 = setProvider("foo")
    
            when:
            source.addPendingCollection(provider1)
            source.realizePending()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 06:43:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. pkg/volume/util/resize_util_test.go

    			pvc:             pvc.DeepCopy(),
    			newConditions:   []v1.PersistentVolumeClaimCondition{},
    			finalConditions: []v1.PersistentVolumeClaimCondition{},
    		},
    		{
    			description: "adding new condition",
    			pvc:         pvc.DeepCopy(),
    			newConditions: []v1.PersistentVolumeClaimCondition{
    				{
    					Type:   v1.PersistentVolumeClaimFileSystemResizePending,
    					Status: v1.ConditionTrue,
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-declaringCapabilities/tests/dependencyReportReplaced.out

    org.slf4j:slf4j-log4j12:1.6.1
    \--- org.apache.zookeeper:zookeeper:3.4.9
         \--- compileClasspath
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-declaringCapabilities/tests/dependencyReport.out

    org.slf4j:slf4j-log4j12:1.6.1
    \--- org.apache.zookeeper:zookeeper:3.4.9
         \--- compileClasspath
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/dynamic_serving_content.go

    	}
    	defer w.Close()
    
    	if err := w.Add(c.certFile); err != nil {
    		return fmt.Errorf("error adding watch for file %s: %v", c.certFile, err)
    	}
    	if err := w.Add(c.keyFile); err != nil {
    		return fmt.Errorf("error adding watch for file %s: %v", c.keyFile, err)
    	}
    	// Trigger a check in case the file is updated before the watch starts.
    	c.queue.Add(workItemKey)
    
    	for {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/tooling/provider/model/ToolingModelBuilderRegistry.java

     */
    
    package org.gradle.tooling.provider.model;
    
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * A registry of tooling model builders. Adding a builder to this registry makes a model (or models) available via the tooling API.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/ResolutionTracerTest.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.declarativedsl.analysis
    
    import org.gradle.declarative.dsl.model.annotations.Adding
    import org.gradle.declarative.dsl.model.annotations.Restricted
    import org.gradle.internal.declarativedsl.demo.resolve
    import org.gradle.internal.declarativedsl.language.Assignment
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildActionRunner.java

             */
            @Nullable
            public Throwable getClientFailure() {
                return clientFailure;
            }
    
            /**
             * Returns a copy of this result adding the given failures.
             */
            public Result addFailures(List<Throwable> failures) {
                if (failures.isEmpty()) {
                    return this;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top