Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 885 for JSpecify (0.14 sec)

  1. hack/verify-publishing-bot.py

            if branch["source"]["branch"] != "master":
                raise Exception("cannot find master source branch for destination %s" % rule["destination"])
    
            # we specify the go version for all master branches through `default-go-version`
            # so ensure we don't specify explicit go version for master branch in rules
            if "go" in branch:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 16:07:40 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/files/fileTrees/groovy/build.gradle

    FileTree zip = zipTree('someFile.zip')
    
    // Create a TAR file tree using path
    FileTree tar = tarTree('someFile.tar')
    
    //tar tree attempts to guess the compression based on the file extension
    //however if you must specify the compression explicitly you can:
    FileTree someTar = tarTree(resources.gzip('someTar.ext'))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. release/downloadIstioCtl.sh

    with_arch() {
      printf "\nDownloading %s from %s ...\n" "${NAME}" "$ARCH_URL"
      if ! curl -o /dev/null -sIf "$ARCH_URL"; then
        printf "\n%s is not found, please specify a valid ISTIO_VERSION and TARGET_ARCH\n" "$ARCH_URL"
        exit 1
      fi
      filename="istioctl-${ISTIO_VERSION}-${OSEXT}-${ISTIO_ARCH}.tar.gz"
      curl -fsL -o "${tmp}/${filename}" "$ARCH_URL"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 14:11:30 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/upgrade/common_test.go

    		},
    		{
    			name: "Bogus preflight check specify all with individual check",
    			flags: applyPlanFlags{
    				ignorePreflightErrors: []string{"bogusvalue", "all"},
    				kubeConfigPath:        fullPath,
    			},
    			expectedErr: "don't specify individual checks if 'all' is used",
    		},
    		{
    			name: "Fail to create client",
    			flags: applyPlanFlags{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. pkg/kubeapiserver/options/authorization_test.go

    			modes:                []string{modes.ModeAlwaysAllow, modes.ModeAlwaysDeny},
    			policyFile:           examplePolicyFile,
    			webhookConfigFile:    "",
    			expectErr:            true,
    			expectErrorSubString: "cannot specify --authorization-policy-file without mode ABAC",
    		},
    		{
    			name:              "ModeABAC should not error if a valid policy path is provided",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 06:28:47 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. mockwebserver/README.md

    MockWebServer
    =============
    
    A scriptable web server for testing HTTP clients
    
    
    ### Motivation
    
    This library makes it easy to test that your app Does The Right Thing when it
    makes HTTP and HTTPS calls. It lets you specify which responses to return and
    then verify that requests were made as expected.
    
    Because it exercises your full HTTP stack, you can be confident that you're
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 17 15:34:10 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/DefaultModelResolverTest.java

                    () -> newModelResolver().resolveModel(parent, new AtomicReference<>()),
                    "Expected 'UnresolvableModelException' not thrown.");
            assertEquals("The requested parent version range '[1.0,)' does not specify an upper bound", e.getMessage());
        }
    
        @Test
        void testResolveParentSuccessfullyResolvesExistingParentWithoutRange() throws Exception {
            final Parent parent = Parent.newBuilder()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DefaultDependencyResolveDetailsSpec.groovy

    import static org.gradle.api.internal.artifacts.ivyservice.resolveengine.result.ComponentSelectionReasons.SELECTED_BY_RULE
    
    class DefaultDependencyResolveDetailsSpec extends Specification {
    
        def "can specify version to use"() {
            when:
            def details = newDependencyResolveDetails("org", "foo", "1.0")
    
            then:
            details.requested == newVersionSelector("org", "foo", "1.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            then:
            1 * fileResolver.resolve("src1") >> file1
            1 * fileResolver.resolve("src2") >> file2
            files as List == [file1, file2]
        }
    
        def "can use a closure to specify the contents of the collection"() {
            given:
            def file1 = new File("1")
            def file2 = new File("2")
    
            when:
            def paths = ["a"]
            collection.from({ paths })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  10. architecture/standards/0005-introduce-core-ui-architecture-module.md

    - The console and CLI, as a specific implementation of these services.
    
    The UI architecture module uses the core runtime architecture module. It provides APIs that are used by the other modules and platforms. 
    
    This ADR does not specify the owner of this new architecture module. However, as a separate module, it can be assigned ownership independently of the other core services.
    
    ## Status
    
    ACCEPTED
    
    ## Consequences
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 23:19:15 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top