Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,471 for otherfile (0.17 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ReuseArchiveIntegrationTest.groovy

            then:
            file("build/extract/hello.txt").text == "hello"
            cachedFile.assertExists()
            otherFile.assertDoesNotExist()
    
            when:
            // write into the directory used by the extracted zip file
            cachedFile.text = "some incorrect pre-existing pre-expanded content"
            otherFile.touch()
    
            and:
            succeeds "extract"
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/internal/problems/DefaultProblemLocationAnalyzerTest.groovy

        def element = new StackTraceElement("class", "method", "filename", 7)
        def callerElement = new StackTraceElement("class", "method", "filename", 11)
        def otherElement = new StackTraceElement("class", "method", "otherfile", 11)
        def elementWithNoSourceFile = new StackTraceElement("class", "method", null, 11)
        def elementWithNoLineNumber = new StackTraceElement("class", "method", "filename", -1)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/analysis.go

    	if slicesContains(pass.OtherFiles, filename) ||
    		slicesContains(pass.IgnoredFiles, filename) {
    		return nil
    	}
    	for _, f := range pass.Files {
    		// TODO(adonovan): use go1.20 f.FileStart
    		if pass.Fset.File(f.Pos()).Name() == filename {
    			return nil
    		}
    	}
    	return fmt.Errorf("Pass.ReadFile: %s is not among OtherFiles, IgnoredFiles, or names of Files", filename)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaselineVersion.groovy

        }
    
        private static boolean differenceIsSignificant(DataSeries<Duration> myTime, DataSeries<Duration> otherTime, double minConfidence) {
            return (myTime.median - otherTime.median).abs() > MINIMUM_DIFFERENCE_WE_CAN_MEASURE &&
                (relativeDifferenceInMedianIsVeryHigh(myTime, otherTime) || DataSeries.confidenceInDifference(myTime, otherTime) > minConfidence)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. pkg/kubelet/metrics/collectors/resource_metrics_test.go

    			expectedMetrics: `
    				# HELP scrape_error [ALPHA] 1 if there was an error while getting container metrics, 0 otherwise
    				# TYPE scrape_error gauge
    				scrape_error 1
    				# HELP resource_scrape_error [STABLE] 1 if there was an error while getting container metrics, 0 otherwise
    				# TYPE resource_scrape_error gauge
    				resource_scrape_error 1
    			`,
    		},
    		{
    			name: "arbitrary node metrics",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 15.3K bytes
    - Viewed (1)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    								"format": "byte",
    							},
    							"otherField": map[string]interface{}{
    								"type": "string",
    							},
    						},
    					}},
    				applyPatchOperation{
    					"add unrelated otherField, ratchet invalid old field format",
    					myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    						"field":      "doesnt abide any format",
    						"otherField": "value",
    					}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  7. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

         * otherwise.
         */
        public void setProjectRequired(boolean requiresProject) {
            this.projectRequired = requiresProject;
        }
    
        /**
         * @return <code>true</code> if the Mojo needs a Maven project to be executed, <code>false</code> otherwise.
         */
        public boolean isProjectRequired() {
            return projectRequired;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/functional/src/main/java/org/gradle/internal/Try.java

        /**
         * Returns the failure for a failed result, or {@link Optional#empty()} otherwise.
         */
        public abstract Optional<Throwable> getFailure();
    
        /**
         * If the represented operation was successful, returns the result of applying the given
         * {@code Try}-bearing mapping function to the value, otherwise returns
         * the {@code Try} representing the original failure.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. cmd/object-handlers-common.go

    		if objInfo.ETag != "" {
    			w.Header()[xhttp.ETag] = []string{"\"" + objInfo.ETag + "\""}
    		}
    	}
    	// x-amz-copy-source-if-modified-since: Return the object only if it has been modified
    	// since the specified time otherwise return 412 (precondition failed).
    	ifModifiedSinceHeader := r.Header.Get(xhttp.AmzCopySourceIfModifiedSince)
    	if ifModifiedSinceHeader != "" {
    		if givenTime, err := amztime.ParseHeader(ifModifiedSinceHeader); err == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.h

    // Refines all the shapes in a module, skipping the inference for all ops
    // whose type is in ops_to_skip.
    // Returns a failure() on error, otherwise returns true to indicate that it
    // reached convergence, false otherwise.
    // If input shapes are provided, first refines the `main` function using
    // InferShapeForFunction.
    FailureOr<bool> InferModuleShape(ModuleOp module, int64_t max_iterations = 10,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top