Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,244 for m_regex (0.11 sec)

  1. build-logic/publishing/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle.gradle.kts

                    .replace("\"sha1\":\\s+\"\\w+\"".toRegex(), "\"sha1\": \"\"")
                    .replace("\"sha256\":\\s+\"\\w+\"".toRegex(), "\"sha256\": \"\"")
                    .replace("\"md5\":\\s+\"\\w+\"".toRegex(), "\"md5\": \"\"")
                it.writeText(content)
            }
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. okhttp-logging-interceptor/src/test/java/okhttp3/logging/LoggingEventListenerTest.kt

          .assertLogMatch(Regex("""callStart: Request\{method=POST, url=$url\}"""))
          .assertLogMatch(Regex("""proxySelectStart: $url"""))
          .assertLogMatch(Regex("""proxySelectEnd: \[DIRECT]"""))
          .assertLogMatch(Regex("""dnsStart: ${url.host}"""))
          .assertLogMatch(Regex("""dnsEnd: \[.+]"""))
          .assertLogMatch(Regex("""connectStart: ${url.host}/.+ DIRECT"""))
          .assertLogMatch(Regex("""connectEnd: http/1.1"""))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Jan 14 10:20:09 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. operator/pkg/patch/patch_test.go

        - v3
        - v3_regex
        name: n2
      c:
    `,
    		},
    		{
    			desc: "DeleteListEntry",
    			path: `a.b.[name:n1]`,
    			want: `
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: istio-citadel
      namespace: istio-system
    a:
      b:
      - list:
        - v1
        - v2
        - v3_regex
        name: n2
      c:
    `,
    		},
    		{
    			desc: "DeleteListEntryValue",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 29 08:32:11 UTC 2022
    - 10.3K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/builder/testdata/http/extended-allow-full-rule-out.yaml

                                    regex: .+
                - orIds:
                    ids:
                    - authenticated:
                        principalName:
                          safeRegex:
                            regex: .*/ns/ns/.*
                    - authenticated:
                        principalName:
                          safeRegex:
                            regex: .*/ns/ns-prefix-.*/.*
                    - authenticated:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 18:02:42 UTC 2024
    - 39K bytes
    - Viewed (0)
  5. pilot/pkg/security/authz/builder/testdata/tcp/deny-both-http-tcp-out.yaml

                          safeRegex:
                            regex: .*/ns/ns/.*
                    - authenticated:
                        principalName:
                          safeRegex:
                            regex: .*/ns/.*ns-suffix/.*
                    - authenticated:
                        principalName:
                          safeRegex:
                            regex: .*/ns/ns-prefix.*/.*
                    - authenticated:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 16:35:46 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlWriter.java

            writeNullableAttribute(VERSION, trustedArtifact.getVersion());
            writeNullableAttribute(FILE, trustedArtifact.getFileName());
            if (trustedArtifact.isRegex()) {
                writeAttribute(REGEX, "true");
            }
            writeNullableAttribute(REASON, trustedArtifact.getReason());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 13:40:00 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  7. operator/pkg/tpath/tree_test.go

      - name: n1
        value: v1
      - name: n2
        list:
        - v1
        - v2
        - v3_regex
        - foo
    `,
    		},
    		{
    			desc:      "ModifyListEntryValue",
    			path:      `a.b.[name:n1].value`,
    			value:     `v2`,
    			wantFound: true,
    			want: `
    a:
      b:
      - name: n1
        value: v2
      - list:
        - v1
        - v2
        - v3_regex
        name: n2
    `,
    		},
    		{
    			desc:      "ModifyListEntryValueQuoted",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 15.6K bytes
    - Viewed (0)
  8. samples/addons/prometheus.yaml

          - role: endpoints
          relabel_configs:
          - action: keep
            regex: true
            source_labels:
            - __meta_kubernetes_service_annotation_prometheus_io_scrape
          - action: drop
            regex: true
            source_labels:
            - __meta_kubernetes_service_annotation_prometheus_io_scrape_slow
          - action: replace
            regex: (https?)
            source_labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  9. pilot/pkg/security/authz/builder/testdata/http/allow-full-rule-out.yaml

                                regex: .+
                - orIds:
                    ids:
                    - authenticated:
                        principalName:
                          safeRegex:
                            regex: .*/ns/ns/.*
                    - authenticated:
                        principalName:
                          safeRegex:
                            regex: .*/ns/ns-prefix-.*/.*
                    - authenticated:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    #  define EXPECT_DEBUG_DEATH(statement, regex) \
      GTEST_EXECUTE_STATEMENT_(statement, regex)
    
    #  define ASSERT_DEBUG_DEATH(statement, regex) \
      GTEST_EXECUTE_STATEMENT_(statement, regex)
    
    # else
    
    #  define EXPECT_DEBUG_DEATH(statement, regex) \
      EXPECT_DEATH(statement, regex)
    
    #  define ASSERT_DEBUG_DEATH(statement, regex) \
      ASSERT_DEATH(statement, regex)
    
    # endif  // NDEBUG for EXPECT_DEBUG_DEATH
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
Back to top