Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,345 for auds (0.04 sec)

  1. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/event/ListenerBroadcast.java

         */
        public int size() {
            return broadcast.size();
        }
    
        /**
         * Adds a listener.
         *
         * @param listener The listener.
         */
        public void add(T listener) {
            broadcast = broadcast.add(listener);
        }
    
        /**
         * Adds the given listeners.
         *
         * @param listeners The listeners
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/envoy-filter-patch-operation.yaml

                    [":path"] = "/acl",
                    [":authority"] = "internal.org.net"
                   },
                  "authorize call",
                  5000)
                end
      # The second patch adds the cluster that is referenced by the Lua code
      # cds match is omitted as a new cluster is being added
      - applyTo: CLUSTER
        match:
          context: SIDECAR_OUTBOUND
        patch:
          operation: REPLACE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 5K bytes
    - Viewed (0)
  3. security/tools/jwt/README.md

    optional arguments:
      -h, --help            show this help message and exit
      -iss ISS, --iss ISS   iss claim. This should be your service account email.
      -aud AUD, --aud AUD   aud claim. This is comma-separated-list of audiences.
      -sub SUB, --sub SUB   sub claim. If not provided, it is set to the same as
                            iss claim.
      -claims CLAIMS, --claims CLAIMS
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/test/groovy/org/gradle/swiftpm/plugins/SwiftPackageManagerExportPluginTest.groovy

        def projectDir = tmpDir.createDir("project")
        def project = ProjectBuilder.builder().withProjectDir(projectDir).withName("testLib").build()
    
        def "adds generate task"() {
            given:
            project.pluginManager.apply(SwiftPackageManagerExportPlugin)
    
            expect:
            def generateManifest = project.tasks['generateSwiftPmManifest']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  5. security/tools/jwt/sa-jwt.py

            payload["iss"] = args.iss
    
        if args.sub:
            payload["sub"] = args.sub
        else:
            payload["sub"] = args.iss
    
        if args.aud:
            if "," in args.aud:
                payload["aud"] = args.aud.split(",")
            else:
                payload["aud"] = args.aud
    
        if args.claims:
            for item in args.claims.split(","):
                k, v = item.split(':')
                payload[k] = v
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 2.6K bytes
    - Viewed (0)
  6. pilot/pkg/xds/ads_test.go

    	s := xdsfake.NewFakeDiscoveryServer(t, xdsfake.FakeOptions{})
    
    	ads := s.ConnectADS().WithType(v3.EndpointType)
    	res := ads.RequestResponseAck(t, &discovery.DiscoveryRequest{ResourceNames: []string{"fake-cluster"}})
    	// Close the connection and reconnect
    	ads.Cleanup()
    
    	ads = s.ConnectADS().WithType(v3.EndpointType)
    
    	// Reconnect with the same resources
    	ads.RequestResponseAck(t, &discovery.DiscoveryRequest{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/build/BuildWorkGraph.java

        boolean schedule(Collection<ExportedTaskNode> taskNodes);
    
        /**
         * Adds tasks and other nodes to this work graph.
         */
        void populateWorkGraph(Consumer<? super BuildLifecycleController.WorkGraphBuilder> action);
    
        /**
         * Adds a task filter to this work graph.
         */
        void addFilter(Spec<Task> filter);
    
        /**
         * Adds a finalization step to this work graph.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 31 05:15:28 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/webApplication/customized/groovy/build.gradle

    }
    
    dependencies {
        providedCompile "javax.servlet:servlet-api:2.5"
    }
    
    war {
        webAppDirectory = file('src/main/webapp')
        from 'src/rootContent' // adds a file-set to the root of the archive
        webInf { from 'src/additionalWebInf' } // adds a file-set to the WEB-INF dir.
        webXml = file('src/someWeb.xml') // copies a file to WEB-INF/web.xml
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 538 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/core-plugins/codenarc_plugin.adoc

    ====
    
    The plugin adds a number of tasks to the project that perform the quality checks when used with the <<groovy_plugin.adoc#groovy_plugin, Groovy Plugin>>. You can execute the checks by running `gradle check`.
    
    [[sec:codenarc_tasks]]
    == Tasks
    
    The CodeNarc plugin adds the following tasks to the project:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 12:08:34 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/attributes/CompatibilityRuleChain.java

     * @param <T> the type of the attribute
     */
    @HasInternalProtocol
    public interface CompatibilityRuleChain<T> {
        /**
         * Adds an ordered check rule to this chain.
         *
         * @param comparator the comparator to use
         */
        void ordered(Comparator<? super T> comparator);
    
        /**
         * Adds an reverse ordered check rule to this chain.
         *
         * @param comparator the comparator to use
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 3K bytes
    - Viewed (0)
Back to top