Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 2,209 for CUSTOM (0.3 sec)

  1. guava/src/com/google/common/base/Verify.java

        if (!expression) {
          throw new VerifyException();
        }
      }
    
      /**
       * Ensures that {@code expression} is {@code true}, throwing a {@code VerifyException} with a
       * custom message otherwise.
       *
       * @param expression a boolean expression
       * @param errorMessageTemplate a template for the exception message should the check fail. The
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon May 17 14:07:47 UTC 2021
    - 18.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/VariantAttributesRulesIntegrationTest.groovy

                    variant 'customVariant', [format: 'custom']
                    dependsOn('org.test:moduleB:1.0')
                }
            }
    
            buildFile << """
                def testAttribute = Attribute.of("TEST_ATTRIBUTE", String)
                def formatAttribute = Attribute.of('format', String)
    
                configurations { $variantToTest { attributes { attribute(formatAttribute, 'custom') } } }
    
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/plugins/ProjectReportsPluginIntegrationSpec.groovy

            succeeds("projectReport")
    
            then:
            file("build/reports/custom/dependencies.txt").assertExists()
            file("build/reports/custom/properties.txt").assertExists()
            file("build/reports/custom/tasks.txt").assertExists()
            file("build/reports/custom/dependencies").assertIsDir()
        }
    
        def "prints link to default #task"(String task) {
            when:
            succeeds(task)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. manifests/addons/dashboards/lib/output.json

                      "properties": [
                         {
                            "id": "custom.fillOpacity",
                            "value": 0
                         },
                         {
                            "id": "custom.lineWidth",
                            "value": 2
                         },
                         {
                            "id": "custom.lineStyle",
                            "value": {
                               "dash": [
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. samples/custom-bootstrap/README.md

    # Custom Envoy Bootstrap Configuration
    
    This sample creates a simple helloworld service that bootstraps the Envoy proxy with a custom configuration file.
    
    ## Starting the service
    
    First, we need to create a `ConfigMap` resource with our bootstrap configuration.
    
    ```bash
    kubectl apply -f custom-bootstrap.yaml
    ```
    
    Next, we can create a service that uses this bootstrap configuration.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 22:34:00 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/java/toolchain-task/kotlin/build.gradle.kts

            println(launcher.get().metadata.installationPath)
        }
    
        @get:Inject
        protected abstract val javaToolchainService: JavaToolchainService
    }
    // end::custom-toolchain-task-with-java[]
    
    // tag::custom-toolchain-task-with-java-usage[]
    plugins {
        java
    }
    
    java {
        toolchain { // <1>
            languageVersion = JavaLanguageVersion.of(8)
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. platforms/jvm/scala/src/test/groovy/org/gradle/api/plugins/scala/ScalaBasePluginTest.groovy

            sourceSet.scala.srcDirs == [project.file("src/custom/scala")] as Set
        }
    
        def addsCompileTaskForNewSourceSet() {
            when:
            project.sourceSets.create('custom')
            SourceSet customSourceSet = project.sourceSets.custom
            def task = project.tasks['compileCustomScala']
    
            then:
            task instanceof ScalaCompile
            task.description == 'Compiles the custom Scala source.'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/CustomVersionListerWithSupplierIntegrationTest.groovy

            [
                [version: '3', attributes: ['org.gradle.status': 'release', 'custom': 'foo']],
                [version: '2', attributes: ['org.gradle.status': 'integration', 'custom': 'bar']],
                [version: '1', attributes: ['org.gradle.status': 'release', 'custom': 'bar']]
            ]
        )
        private final static String TEST_B_METADATA = new JsonBuilder(
            [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  9. pilot/pkg/security/model/authentication_test.go

    							},
    						},
    					},
    				},
    			},
    		},
    		{
    			name: "ISTIO_MUTUAL with custom cert paths from proxy node metadata",
    			node: &model.Proxy{
    				Metadata: &model.NodeMetadata{
    					TLSServerCertChain: "/custom/path/to/cert-chain.pem",
    					TLSServerKey:       "/custom-key.pem",
    					TLSServerRootCert:  "/custom/path/to/root.pem",
    				},
    			},
    			validateClient: true,
    			expected: &auth.CommonTlsContext{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 20 22:39:21 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/plugins/consuming/kotlin/settings.gradle.kts

    // tag::custom-plugin-repositories[]
    pluginManagement {
        repositories {
            maven(url = "./maven-repo")
            gradlePluginPortal()
            ivy(url = "./ivy-repo")
        }
    }
    // end::custom-plugin-repositories[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 259 bytes
    - Viewed (0)
Back to top