Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 241 for consuming (0.71 sec)

  1. hack/make-rules/test-integration.sh

      kube::log::status "Running integration test cases"
    
      # shellcheck disable=SC2034
      # KUBE_RACE and MAKEFLAGS are used in the downstream make, and we set them to
      # empty here to ensure that we aren't unintentionally consuming them from the
      # previous make invocation.
      KUBE_TEST_ARGS="${SHORT:--short=true} --vmodule=${KUBE_TEST_VMODULE} ${KUBE_TEST_ARGS}" \
          WHAT="${WHAT:-$(kube::test::find_integration_test_dirs | paste -sd' ' -)}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:57 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MixedMavenAndIvyModulesIntegrationTest.groovy

                            module('org.test:m2:1.0')
                        }
                    }
                }
            }
        }
    
        def "selects default configuration of ivy module when dependency from consuming maven module is substituted"() {
            def m1 = ivyRepo.module("org.test", "m1", "1.0")
                .configuration("compile")
                .publish()
            def m2 = ivyRepo.module("org.test", "m2", "1.0").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/NamespaceId.java

    import java.io.DataOutputStream;
    import java.io.IOException;
    import java.io.Serializable;
    import java.util.Base64;
    
    /**
     * Represents an identifier containing a tuple of namespace and name for use when
     * consuming/producing namespaced elements in descriptors.
     */
    public class NamespaceId implements Serializable {
        private String namespace;
        private String name;
    
        public static NamespaceId decode(String encoding) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

                    )
                }
            """
    
            when:
            run "myTask"
    
            then:
            outputContains("CONSUMING build/producerOutput")
    
            when:
            run "myTask"
    
            then:
            outputContains("CONSUMING build/producerOutput")
    
            where:
            methodName                         | useCase
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/KotlinPrecompiledScriptPluginsSmokeTest.groovy

                // Writing build operation traces is broken with Gradle 6.
                buildRunner.withoutBuildOperationTracing()
            }
    
            buildRunner.build()
    
            and: 'a build consuming it'
            settingsFile << """
                pluginManagement {
                    repositories {
                        maven { url = uri('${pluginRepo.uri}') }
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. platforms/software/resources-s3/src/main/java/org/gradle/internal/resource/transport/aws/s3/S3ResourceConnector.java

                }
            } catch (IOException e) {
                // Don't complain loudly to the user about the error there because we were discarding the response anyway.
                LOGGER.debug("Exception while consuming empty object content from metadata request", e);
            } finally {
                // This also closes objectContent, no need to close it explicitly.
                IoActions.closeQuietly(s3Object);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. pkg/scheduler/util/pod_resources.go

    // pods will not all be scheduled to the node with the smallest in-use request,
    // and that when scheduling regular pods, such pods will not see zero-request pods as
    // consuming no resources whatsoever. We chose these values to be similar to the
    // resources that we give to cluster addon pods (#10653). But they are pretty arbitrary.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 01 06:25:30 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_fuzz_fuzztime.txt

    [!fuzz] skip
    [short] skip
    env GOCACHE=$WORK/cache
    
    # There are no seed values, so 'go test' should finish quickly.
    go test
    
    # For the fuzzing phase, we reduce GOMAXPROCS to avoid consuming too many
    # resources during the test. Ideally this would just free up resources to run
    # other parallel tests more quickly, but unfortunately it is actually necessary
    # in some 32-bit environments to prevent the fuzzing engine from running out of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 20:09:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/PreferJavaRuntimeVariant.java

     * of the published library.
     * The following disambiguation rule encodes this assumption for the case where a java library is published
     * with variants using Gradle module metadata. This will allow us to migrate to consuming the new module
     * metadata format by default without breaking a bunch of consumers that depend on this assumption,
     * declaring no preference for a particular variant.
     */
    @ServiceScope(Scope.Global.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/internal/deprecation/DeprecatableConfiguration.java

         */
        List<String> getDeclarationAlternatives();
    
        /**
         * Return the names of configurations that should be used to consume a component instead of consuming this configuration.
         *
         * <p>This property is only relevant if this configuration deprecated for resolution.</p>
         */
        List<String> getResolutionAlternatives();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 07 03:39:06 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top