Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for StringValue (0.07 sec)

  1. istioctl/pkg/writer/compare/testdata/configdump.json

                                            "typed_config": {
                                              "@type": "type.googleapis.com/google.protobuf.StringValue",
                                              "value": "inbound-vip|80||sleep.default.svc.cluster.local-http"
                                            }
                                          }
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-03-12 10:02
    - 52K bytes
    - Viewed (0)
  2. guava/src/com/google/common/primitives/ParseRequest.java

      }
    
      static ParseRequest fromString(String stringValue) {
        if (stringValue.length() == 0) {
          throw new NumberFormatException("empty string");
        }
    
        // Handle radix specifier if present
        String rawValue;
        int radix;
        char firstChar = stringValue.charAt(0);
        if (stringValue.startsWith("0x") || stringValue.startsWith("0X")) {
          rawValue = stringValue.substring(2);
          radix = 16;
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-21 03:10
    - 1.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/primitives/ParseRequest.java

      }
    
      static ParseRequest fromString(String stringValue) {
        if (stringValue.length() == 0) {
          throw new NumberFormatException("empty string");
        }
    
        // Handle radix specifier if present
        String rawValue;
        int radix;
        char firstChar = stringValue.charAt(0);
        if (stringValue.startsWith("0x") || stringValue.startsWith("0X")) {
          rawValue = stringValue.substring(2);
          radix = 16;
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-21 03:10
    - 1.7K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                                            "typed_config": {
                                              "@type": "type.googleapis.com/google.protobuf.StringValue",
                                              "value": "inbound-vip|80||sleep.default.svc.cluster.local-http"
                                            }
                                          }
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-03-12 10:02
    - 51.6K bytes
    - Viewed (0)
  5. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/metadata/KotlinMetadataQueries.kt

                    data2 = annotation.getMemberValue("d2")?.stringArrayValue ?: arrayOf(),
                    extraString = annotation.getMemberValue("xs")?.stringValue ?: "",
                    packageName = annotation.getMemberValue("pn")?.stringValue ?: "",
                    extraInt = annotation.getMemberValue("xi")?.intValue ?: 0
                )
            }
    
        private
    Registered: 2025-05-28 11:36
    - Last Modified: 2024-08-21 12:41
    - 4.8K bytes
    - Viewed (0)
  6. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/JavassistExtensions.kt

                    value = node.value
                }
            })
            if (value == null) throw annotationMemberValueNotFound(typeOf<Int>())
            return value!!
        }
    
    
    internal
    val MemberValue.stringValue: String
        get() {
            var value: String? = null
            accept(object : MemberValueVisitorAdapter() {
                override fun visitStringMemberValue(node: StringMemberValue) {
                    value = node.value
    Registered: 2025-05-28 11:36
    - Last Modified: 2020-12-09 08:14
    - 4.6K bytes
    - Viewed (0)
  7. istioctl/pkg/proxyconfig/testdata/config_dump.json

                                            "typed_config": {
                                              "@type": "type.googleapis.com/google.protobuf.StringValue",
                                              "value": "inbound-vip|8000||httpbin.default.svc.cluster.local-http"
                                            }
                                          }
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-01-03 23:08
    - 54.8K bytes
    - Viewed (0)
  8. istioctl/pkg/writer/envoy/configdump/testdata/ecds/output.json

                                    }
                                }
                            },
                            "configuration": {
                                "@type": "type.googleapis.com/google.protobuf.StringValue",
                                "value": "{\"header_1\":\"some_value_1\",\"header_2\":\"another_value\"}"
                            }
                        }
                    }
                },
    Registered: 2025-05-28 22:53
    - Last Modified: 2025-02-12 05:08
    - 4.2K bytes
    - Viewed (0)
  9. istioctl/pkg/writer/envoy/configdump/testdata/ecds/configdump.json

                                        }
                                    },
                                    "configuration": {
                                        "@type": "type.googleapis.com/google.protobuf.StringValue",
                                        "value": "{\"header_1\":\"some_value_1\",\"header_2\":\"another_value\"}"
                                    }
                                }
                            }
    Registered: 2025-05-28 22:53
    - Last Modified: 2023-12-24 08:16
    - 5.3K bytes
    - Viewed (0)
  10. istioctl/pkg/writer/envoy/configdump/testdata/ecds/output.yaml

        name: default.display-metadata
        typedConfig:
          '@type': type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm
          config:
            configuration:
              '@type': type.googleapis.com/google.protobuf.StringValue
              value: '{"header_1":"some_value_1","header_2":"another_value"}'
            name: default.display-metadata
            vmConfig:
              code:
                local:
    Registered: 2025-05-28 22:53
    - Last Modified: 2025-02-12 05:08
    - 2.5K bytes
    - Viewed (0)
Back to top