Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,327 for EXISTS (1.54 sec)

  1. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/ForceScalaCompileIntegrationTest.groovy

        def getName(): String = name
    }
    """
            when:
            succeeds 'compileScala'
    
            then:
            !file('build/tmp/scala/compilerAnalysis/compileScala.analysis').exists()
            file('build/tmp/scala/compilerAnalysis/compileScala.mapping').exists()
        }
    
        @Issue("gradle/gradle#13224")
        def 'changing one file only produces valid compilation output'() {
            given:
            buildFile << """
    plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 23:46:06 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoPluginMultiVersionIntegrationTest.groovy

            file(REPORTING_BASE).listFiles().collect { it.name } as Set == ["jacoco", "tests"] as Set
            file(REPORT_HTML_DEFAULT_PATH).exists()
            file("${REPORTING_BASE}/jacoco/test").listFiles().collect { it.name } == ["html"]
            file("${REPORTING_BASE}/jacoco/test/html/org.gradle/Class1.java.html").exists()
            htmlReport().totalCoverage() == 100
        }
    
        def "can configure reports in jacoco test report"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/RoleBasedConfigurationContainerInternal.java

        /**
         * If a configuration with the given name already exists, return it.
         * Otherwise, creates a new resolvable configuration with the given name.
         *
         * If a configuration with this name already exists this method will <strong>overwrite</strong> its current usage to match what
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/DataBaseSchemaUtil.java

            ResultSet columns = null;
            boolean exists;
    
            try {
                columns = connection.getMetaData().getColumns(null, null, table, column);
                exists = columns.next();
            } finally {
                if (columns != null) {
                    columns.close();
                }
            }
            return exists;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/egressselector/config.go

    			fldPath.Child("tlsConfig"),
    			"TLSConfig must be present when using HTTPS"))
    		return allErrs
    	}
    	if tlsConfig.CABundle != "" {
    		if exists, err := path.Exists(path.CheckFollowSymlink, tlsConfig.CABundle); !exists || err != nil {
    			allErrs = append(allErrs, field.Invalid(
    				fldPath.Child("tlsConfig", "caBundle"),
    				tlsConfig.CABundle,
    				"TLS config ca bundle does not exist"))
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/templates/defaultrevisionvalidatingadmissionpolicy.yaml

            !(
              variables.isTelemetry && (
                (has(object.spec.tracing) ? object.spec.tracing : {}).exists(t, has(t.useRequestIdForTraceSampling)) ||
                (has(object.spec.metrics) ? object.spec.metrics : {}).exists(m, has(m.reportingInterval)) ||
                (has(object.spec.accessLogging) ? object.spec.accessLogging : {}).exists(l, has(l.filter))
              )
            )
    ---
    apiVersion: admissionregistration.k8s.io/v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 19:46:57 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/clean_cache_n.txt

    go build main.go
    
    # Check that cache contains directories before running
    exists $GOCACHE/00
    
    # Run go clean -cache -n and ensure that directories weren't deleted
    go clean -cache -n
    exists $GOCACHE/00
    
    # Re-run go clean cache without the -n flag go ensure that directories were properly removed
    go clean -cache
    ! exists $GOCACHE/00
    
    ! go clean -cache .
    stderr 'go: clean -cache cannot be used with package arguments'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 17:22:49 UTC 2022
    - 637 bytes
    - Viewed (0)
  8. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/tasks/JacocoCoverageVerification.java

                getJacocoClasspath(),
                projectName,
                getAllClassDirs().filter(File::exists),
                getAllSourceDirs().filter(File::exists),
                getSourceEncoding().getOrNull(),
                getExecutionData().filter(File::exists),
                getViolationRules()
            );
    
            if (!checkResult.isSuccess()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_verify.txt

    stderr 'checksum mismatch'
    ! exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.1.0.zip
    
    # With good go.sum, sync works.
    rm go.sum
    cp go.sum.good go.sum
    go mod tidy
    exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.1.0.zip
    exists $GOPATH/pkg/mod/rsc.io/quote@v1.1.0/quote.go
    
    # go.sum should have the new checksum for go.mod
    grep '^rsc.io/quote v1.1.0/go.mod ' go.sum
    
    # verify should work
    go mod verify
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  10. cmd/object-api-input-checks.go

    }
    
    // Checks for PutObjectPart arguments validity, also validates if bucket exists.
    func checkPutObjectPartArgs(ctx context.Context, bucket, object, uploadID string) error {
    	return checkMultipartObjectArgs(ctx, bucket, object, uploadID)
    }
    
    // Checks for ListParts arguments validity, also validates if bucket exists.
    func checkListPartsArgs(ctx context.Context, bucket, object, uploadID string) error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top