Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 119 for toSend (0.23 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/profile/JdkVersionProfileActivator.java

            for (String token : range.split(",")) {
                if (token.startsWith("[")) {
                    ranges.add(new RangeValue(token.replace("[", ""), true));
                } else if (token.startsWith("(")) {
                    ranges.add(new RangeValue(token.replace("(", ""), false));
                } else if (token.endsWith("]")) {
                    ranges.add(new RangeValue(token.replace("]", ""), true));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 16:51:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/JdkVersionProfileActivator.java

            for (String token : range.split(",")) {
                if (token.startsWith("[")) {
                    ranges.add(new RangeValue(token.replace("[", ""), true));
                } else if (token.startsWith("(")) {
                    ranges.add(new RangeValue(token.replace("(", ""), false));
                } else if (token.endsWith("]")) {
                    ranges.add(new RangeValue(token.replace("]", ""), true));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 16:51:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. platforms/software/antlr/src/integTest/groovy/org/gradle/api/plugins/antlr/Antlr4PluginIntegrationTest.groovy

            assert file("grammar-builder/build/generated-src/antlr/main/${grammarName}BaseListener.java").exists()
            assert file("grammar-builder/build/generated-src/antlr/main/${grammarName}Lexer.java").exists()
            assert file("grammar-builder/build/generated-src/antlr/main/${grammarName}Lexer.tokens").exists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/lifetime/KaLifetimeTracker.kt

    /**
     * [KaLifetimeTracker] is an *engine service* which tracks the current [KtLifetimeToken].
     *
     * It can be used in the implementation of custom lifetime tokens to check that the accessed token is in scope.
     */
    public interface KaLifetimeTracker : KaEngineService {
        /**
         * Returns the [KtLifetimeToken] for the currently active analysis, or `null` if no analysis is in progress.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/phases/init/data.go

    	KubeConfigPath() string
    	ManifestDir() string
    	KubeletDir() string
    	ExternalCA() bool
    	OutputWriter() io.Writer
    	Client() (clientset.Interface, error)
    	ClientWithoutBootstrap() (clientset.Interface, error)
    	Tokens() []string
    	PatchesDir() string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 06 10:43:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. platforms/software/antlr/src/integTest/groovy/org/gradle/api/plugins/antlr/Antlr3RelocationIntegrationTest.groovy

                    antlr 'org.antlr:antlr:3.5.2'
                }
            """
        }
    
        @Override
        protected extractResultsFrom(TestFile projectDir) {
            def result = [
                "Test.tokens",
                "org/acme/test/TestLexer.java",
                "org/acme/test/TestParser.java",
            ]
                .collect { projectDir.file("build/generated-src/antlr/main/$it").text.split(/\n/) }
                .flatten()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/output/ztunnel.golden.yaml

              runAsNonRoot: false
              runAsUser: 0
            volumeMounts:
            - mountPath: /var/run/secrets/istio
              name: istiod-ca-cert
            - mountPath: /var/run/secrets/tokens
              name: istio-token
          nodeSelector:
            kubernetes.io/os: linux
          priorityClassName: system-node-critical
          serviceAccountName: ztunnel
          terminationGracePeriodSeconds: 30
          tolerations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 31 23:49:40 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. samples/ratelimit/local-rate-limit-service.yaml

                    tokens_per_fill: 100
                    fill_interval: 60s
                  enable_x_ratelimit_headers: DRAFT_VERSION_03 # This adds the ability to see headers for how many tokens are left in the bucket, how often the bucket refills, and what is the token bucket max.
                  filter_enabled:
                    runtime_key: test_enabled
                    default_value:
                      numerator: 100
                      denominator: HUNDRED
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 31 08:22:09 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/init/data_test.go

    func (t *testInitData) Client() (clientset.Interface, error)                 { return nil, nil }
    func (t *testInitData) ClientWithoutBootstrap() (clientset.Interface, error) { return nil, nil }
    func (t *testInitData) Tokens() []string                                     { return nil }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 06 10:43:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/files/copy/kotlin/build.gradle.kts

    tasks.register<Copy>("filter") {
        from("src/main/webapp")
        into(layout.buildDirectory.dir("explodedWar"))
        // Substitute property tokens in files
        expand("copyright" to "2009", "version" to "2.3.1")
        // Use some of the filters provided by Ant
        filter(FixCrLfFilter::class)
        filter(ReplaceTokens::class, "tokens" to mapOf("copyright" to "2009", "version" to "2.3.1"))
        // Use a closure to filter each line
        filter { line: String ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.2K bytes
    - Viewed (0)
Back to top