Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 315 for unlabel (0.3 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSpiAuthenticationIntegrationTest.groovy

                    .assertHasCause("No matching toolchain could be found in the locally installed toolchains or the configured toolchain download repositories. " +
                        "Some toolchain resolvers had provisioning failures: custom (Unable to download toolchain matching the requirements " +
                        "({languageVersion=99, vendor=matching('exotic'), implementation=vendor-specific}) from '$archiveUri', " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 06:41:25 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/maven/MavenProjectsCreatorSpec.groovy

            ex.message == "Unable to create Maven project model using POM $pom."
        }
    
        def "fails with decent exception if pom does not exist"() {
            def pom = temp.file("pom.xml")
    
            when:
            creator.create(settings.buildSettings(), pom) as List
    
            then:
            def ex = thrown(MavenConversionException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. security/pkg/pki/ra/common.go

    	if forCA {
    		return requestedLifetime, raerror.NewError(raerror.CSRError,
    			fmt.Errorf("unable to generate CA certifificates"))
    	}
    	if !ValidateCSR(csrPEM, subjectIDs) {
    		return requestedLifetime, raerror.NewError(raerror.CSRError, fmt.Errorf(
    			"unable to validate SAN Identities in CSR"))
    	}
    	// If the requested requestedLifetime is non-positive, apply the default TTL.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 19:57:30 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/SimpleGeneratedJavaClassCompilerTest.groovy

            when:
            compile(source('A', 'public class Broken'))
    
            then:
            GeneratedClassCompilationException ex = thrown()
            normaliseLineSeparators(ex.message) == """Unable to compile generated sources:
      - File A.java, line: 2, reached end of file while parsing"""
        }
    
        def "compiler is isolated from the Gradle API"() {
            when:
            compile(source("A", """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/java/fixtures/tests/dependencyInsight.out

    > Task :dependencyInsight
    com.google.code.gson:gson:2.8.5 FAILED
       Failures:
          - Could not resolve com.google.code.gson:gson:2.8.5.
              - Unable to find a variant of com.google.code.gson:gson:2.8.5 providing the requested capability com.google.code.gson:gson-test-fixtures:
                   - Variant compile provides com.google.code.gson:gson:2.8.5
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 20:55:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/reset_test.go

    	tmpDir, err := os.MkdirTemp("", "kubeadm-reset-test")
    	if err != nil {
    		t.Errorf("Unable to create temporary directory: %v", err)
    	}
    	defer os.RemoveAll(tmpDir)
    
    	// create config file
    	configFilePath := filepath.Join(tmpDir, "test-config-file")
    	cfgFile, err := os.Create(configFilePath)
    	if err != nil {
    		t.Errorf("Unable to create file %q: %v", configFilePath, err)
    	}
    	defer cfgFile.Close()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 13:42:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. internal/config/identity/ldap/ldap.go

    				return nil, nil
    			}
    			return nil, fmt.Errorf("Unable to find user DN: %w", err)
    		}
    		return bindDN, nil
    	}
    
    	// Since the username parses as a valid DN, check that it exists and is
    	// under a configured base DN in the LDAP directory.
    	validDN, isUnderBaseDN, err := l.GetValidatedUserDN(conn, username)
    	if err == nil && !isUnderBaseDN {
    		return nil, fmt.Errorf("Unable to find user DN: %w", err)
    	}
    	return validDN, err
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 25 13:43:06 UTC 2024
    - 10.3K bytes
    - Viewed (1)
  8. hack/update-import-aliases.sh

    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    
    cd "${KUBE_ROOT}"
    
    ret=0
    go run cmd/preferredimports/preferredimports.go --confirm "$@" || ret=$?
    if [[ $ret -ne 0 ]]; then
      echo "!!! Unable to fix imports programmatically. Please see errors above." >&2
      exit 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:56 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/compression/URIBuilder.java

        public URI build() {
            assert GUtil.isTrue(schemePrefix);
            try {
                return new URI(schemePrefix + ":" + uri.toString());
            } catch (Exception e) {
                throw new RuntimeException("Unable to build URI based on supplied URI: " + uri, e);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:06 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/m9/DaemonErrorFeedbackCrossVersionSpec.groovy

                        .run()
            }
    
            then:
            GradleConnectionException ex = thrown()
            ex.cause.message.contains "-Xasdf"
            ex.cause.message.contains "Unable to start the daemon"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top