Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for someConf (0.62 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/dependencies/DefaultDependencyConstraintHandlerTest.groovy

        }
    
        void "dynamic method fails for no args"() {
            when:
            dependencyConstraintHandler.someConf()
    
            then:
            def e = thrown(MissingMethodException)
            e.message.startsWith('Could not find method someConf() for arguments [] on ')
        }
    
        void "cannot add dependency constraint to unknown configuration"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 22:19:06 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/DefaultArtifactHandlerTest.groovy

        }
    
        void failsWhenNoParameters() {
            when:
            artifactHandler.someConf()
    
            then:
            def e = thrown(MissingMethodException)
            e.message == "Could not find method someConf() for arguments [] on object of type $DefaultArtifactHandler.name."
        }
    
        void failsWhenAddingToUnknownConfiguration() {
            when:
            artifactHandler.unknown("someNotation")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/dependencies/DefaultExcludeRuleConverterTest.groovy

            exclude.getModuleId().getName() == module
            exclude.getArtifact() == null
            exclude.getMatcher() == null
    
            where:
            configurationName | configurations
            'someConf'        | Collections.singleton('someConf')
            null              | Collections.emptySet()
            ''                | Collections.emptySet()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/notations/ProjectDependencyFactory.java

            }
    
            @Override
            public void describe(DiagnosticsVisitor visitor) {
                visitor.candidate("Map with mandatory 'path' and optional 'configuration' key").example("[path: ':someProj', configuration: 'someConf']");
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactVariantReselectionIntegrationTest.groovy

     */
    
    package org.gradle.integtests.resolve
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    /**
     * Tests variant reselection. i.e. anything of the form:
     * <pre>
     *     someConf.incoming.artifactView {
     *         withVariantReselection()
     *     }
     * </pre>
     */
    class ArtifactVariantReselectionIntegrationTest extends AbstractIntegrationSpec {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 18 19:46:19 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/DefaultRootComponentMetadataBuilderTest.groovy

            configurationsProvider.findByName('conf-2') >> resolvable()
    
            def root = builder.toRootComponent('conf')
    
            when:
            def sameConf = builder.toRootComponent('conf')
    
            then:
            sameConf.rootComponent.is(root.rootComponent)
            sameConf.rootComponent.metadata.is(root.rootComponent.metadata)
    
            when:
            def differentConf = builder.toRootComponent('conf-2')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. .github/DISCUSSION_TEMPLATE/questions.yml

          description: |
            Please add a self-contained, [minimal, reproducible, example](https://stackoverflow.com/help/minimal-reproducible-example) with your use case.
    
            If I (or someone) can copy it, run it, and see it right away, there's a much higher chance I (or someone) will be able to help you.
    
          placeholder: |
            from fastapi import FastAPI
    
            app = FastAPI()
    
    
            @app.get("/")
            def read_root():
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Aug 03 15:59:41 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. pilot/pkg/xds/util.go

    package xds
    
    import (
    	"fmt"
    	"strings"
    )
    
    func atMostNJoin(data []string, limit int) string {
    	if limit == 0 || limit == 1 {
    		// Assume limit >1, but make sure we dpn't crash if someone does pass those
    		return strings.Join(data, ", ")
    	}
    	if len(data) == 0 {
    		return ""
    	}
    	if len(data) < limit {
    		return strings.Join(data, ", ")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 1021 bytes
    - Viewed (0)
  9. prow/config/calico.md

    ```shell
    sed -ie "s?docker.io?gcr.io/istio-testing?g" calico.yaml
    ```
    
    In order to upgrade versions of calico we'll need to update the version below and then have someone with the ability to push run the following:
    
    ```shell
    export VERSION=v3.27.0
    
    crane cp {docker.io,gcr.io/istio-testing}/calico/cni:"${VERSION}"
    crane cp {docker.io,gcr.io/istio-testing}/calico/node:"${VERSION}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 16:19:34 UTC 2024
    - 793 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/cgo_suspect_flag_force_external.txt

    ! stderr preferlinkext
    env CGO_CFLAGS=-fdebug-prefix-map=/Users/someone/.cache/bazel/_bazel_someone/3fa7e4650c43657ead684537951f49e2/sandbox/linux-sandbox/10/execroot/rules_go_static=.
    go build -x -n -o dummy.exe ./usesInternalCgo
    ! stderr preferlinkext
    # The -ffile-prefix-map=path is permitted for internal linking too.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 25 18:16:01 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top