Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 516 for implying (0.42 sec)

  1. platforms/documentation/docs/src/snippets/java/javaGradlePlugin/readme.xml

    <sample>
        <para>
            This example demonstrates the use of the java gradle plugin development plugin.  By applying the plugin, the java plugin
            is automatically applied as well as the gradleApi() dependency.  Furthermore, validations are performed against the
            plugin metadata during jar execution.
        </para>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 340 bytes
    - Viewed (0)
  2. releasenotes/notes/dr-san-validation.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 40801
    releaseNotes:
    - |
      **Fixed** an issue with where a `DestinationRule` applying to multiple services could incorrectly apply an unexpected `subjectAltNames` field.
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 08 17:32:33 UTC 2022
    - 357 bytes
    - Viewed (0)
  3. tests/integration/helm/install_test.go

    				`with binding 'stable-channel-default-policy-binding.istio.io' denied request`
    			err := t.ConfigIstio().Eval("default", nil, sampleEnvoyFilter).Apply()
    			if err == nil {
    				t.Errorf("Did not receive an error while applying sample EnvoyFilter with stable admission policy")
    			} else {
    				msg := fmt.Sprintf(expectedErrorPrefix, "envoyfilters.networking.istio.io")
    				if !strings.Contains(err.Error(), msg) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/NonDeclarativePluginUseIntegrationSpec.groovy

            }
    
            and:
            buildScript """
                $USE
            """
    
            then:
            fails "tasks"
    
            and:
            failure.assertHasDescription("An exception occurred applying plugin request [id: 'org.myplugin', version: '1.0']")
            failure.assertHasCause("Could not create plugin of type 'OtherPlugin'.")
            failure.assertHasLineNumber(2)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/AtomicDouble.java

       */
      @CanIgnoreReturnValue
      public final double addAndGet(double delta) {
        return accumulateAndGet(delta, Double::sum);
      }
    
      /**
       * Atomically updates the current value with the results of applying the given function to the
       * current and given values.
       *
       * @param x the update value
       * @param accumulatorFunction the accumulator function
       * @return the previous value
       * @since 31.1
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/AtomicDoubleArray.java

      @CanIgnoreReturnValue
      public double addAndGet(int i, double delta) {
        return accumulateAndGet(i, delta, Double::sum);
      }
    
      /**
       * Atomically updates the element at index {@code i} with the results of applying the given
       * function to the current and given values.
       *
       * @param i the index to update
       * @param x the update value
       * @param accumulatorFunction the accumulator function
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/java/javaGradlePlugin/README.adoc

    - link:{zip-base-file-name}-groovy-dsl.zip[Download Groovy DSL ZIP]
    - link:{zip-base-file-name}-kotlin-dsl.zip[Download Kotlin DSL ZIP]
    endif::[]
    
    This example demonstrates the use of the java gradle plugin development plugin.
    By applying the plugin, the java plugin is automatically applied as well as the gradleApi() dependency.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 470 bytes
    - Viewed (0)
  8. samples/external/aptget.yaml

    # This ServiceEntry exposes the hosts needed for installing packages with apt-get.
    # After applying this file, Istio-enabled pods (configured apt-get) be able to execute
    # `apt-get upgrade` and `apt-get install`.  If this is not installed you may get
    # "404  Not Found"
    
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: make-aptget-work
    spec:
      hosts:
      - deb.debian.org
      - cdn-fastly.deb.debian.org
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 14 21:21:10 UTC 2019
    - 559 bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/HttpScriptPluginIntegrationSpec.groovy

    """
    
            buildFile << """
                apply from: '$server.uri/external.gradle'
                defaultTasks 'doStuff'
    """
    
            then:
            succeeds()
        }
    
        def "emits useful warning when applying script via http"() {
            when:
            server.useHostname()
            def script = file('external.gradle')
            server.beforeHandle {
                fail("No requests were expected.")
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 30 08:26:30 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  10. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/ProjectBuilder.java

     *
     * <p>The {@code ProjectBuilder} implementation bundled with Gradle 3.0 and 3.1 suffers from a
     * binary compatibility issue exposed by applying plugins compiled with Gradle 2.7 and earlier.
     * Applying those pre-compiled plugins in a ProjectBuilder context will result in a {@link ClassNotFoundException}.</p>
     */
    public class ProjectBuilder {
    
        private File projectDir;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top