Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,209 for CUSTOM (0.11 sec)

  1. pkg/scheduler/metrics/resources/resources_test.go

    									"cpu":                    resource.MustParse("0"),
    									"custom":                 resource.MustParse("0"),
    									"test.com/custom-metric": resource.MustParse("0"),
    								},
    								Limits: v1.ResourceList{
    									"cpu":                    resource.MustParse("0"),
    									"custom":                 resource.MustParse("0"),
    									"test.com/custom-metric": resource.MustParse("0"),
    								},
    							}},
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/RuleSourceApplicationTest.groovy

            then:
            !project.pluginManager.hasPlugin("custom-plugin")
            !project.pluginManager.hasPlugin("custom-rule-source")
    
            when:
            project.apply plugin: "custom-plugin"
            project.apply plugin: "custom-rule-source"
    
            then:
            project.pluginManager.hasPlugin("custom-plugin")
            project.pluginManager.hasPlugin("custom-rule-source")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiRemoteIntegrationTest.groovy

        }
    
        @Issue('https://github.com/gradle/gradle-private/issues/1537')
        def "receives distribution download progress events"() {
            given:
            server.expect(server.get("/custom-dist.zip").sendFile(distribution.binDistribution))
    
            and:
            def distUri = URI.create("http://localhost:${server.port}/custom-dist.zip")
            toolingApi.withConnector {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocIntegrationTest.groovy

            javadoc.text =~ /(?ms)This is the Person class.*Author.*author value.*Deprecated.*deprecated value.*Custom Tag.*custom tag value/
            // we can't currently control the order between tags and taglets (limitation on our side)
            javadoc.text =~ /(?ms)Custom Taglet.*custom taglet value/
        }
    
        @Issue(["GRADLE-2520", "https://github.com/gradle/gradle/issues/4993"])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseProjectIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        void "allows custom matcher resource filter"() {
            given:
            buildScript """
    apply plugin: 'java'
    apply plugin: 'eclipse'
    
    eclipse {
      project {
        resourceFilter {
          appliesTo = 'FILES_AND_FOLDERS'
          type = 'EXCLUDE_ALL'
          matcher {
            id = 'org.eclipse.some.custom.matcher'
            arguments = 'foobar'
          }
        }
      }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  6. pilot/pkg/security/authz/builder/builder_test.go

    		},
    		{
    			name:       "custom-http-provider",
    			meshConfig: meshConfigHTTP,
    			input:      "custom-simple-http-in.yaml",
    			want:       []string{"custom-http-provider-out1.yaml", "custom-http-provider-out2.yaml"},
    		},
    		{
    			name:       "custom-bad-multiple-providers",
    			meshConfig: meshConfigHTTP,
    			input:      "custom-bad-multiple-providers-in.yaml",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. pdm_build.py

        )
        # Get custom optional dependencies name to always include in this (non-slim) package
        include_optional_dependencies: List[str] = config.get(
            "include-optional-dependencies", []
        )
        # Override main [project] configs with custom configs for this package
        for key, value in project_config.items():
            metadata[key] = value
        # Get custom build config for the current package
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 30 06:38:13 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/base/distribution/groovy/build.gradle

            contents {
                from 'src/readme'
            }
        }
    }
    // end::configure-distribution[]
    
    // tag::custom-distribution[]
    distributions {
        custom {
            // configure custom distribution
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 526 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/plugins/dependenciesBlock/common/buildSrc/src/main/java/com/example/ExampleDependencies.java

    // tag::custom-dependencies-type[]
    /**
     * Custom dependencies block for the example plugin.
     */
    public interface ExampleDependencies extends Dependencies {
    // end::custom-dependencies-type[]
    
    // tag::custom-dependencies-scopes[]
        /**
         * Dependency scope called "implementation"
         */
        DependencyCollector getImplementation();
    // end::custom-dependencies-scopes[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 20:29:08 UTC 2024
    - 507 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/custom-check/groovy/build.gradle

    // tag::custom-check[]
    plugins {
        id "cpp"
    }
    // You don't need to apply the plugin below if you're already using CUnit or GoogleTest support
    apply plugin: TestingModelBasePlugin
    
    tasks.register('myCustomCheck') {
        doLast {
            println 'Executing my custom check'
        }
    }
    
    model {
        components {
            hello(NativeLibrarySpec) {
                binaries.all {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 556 bytes
    - Viewed (0)
Back to top