Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for StringValue (0.19 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"
                                            }
                                          }
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Mar 12 10:02:09 GMT 2024
    - 52K bytes
    - Viewed (0)
  2. 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;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Apr 22 13:09:25 GMT 2021
    - 1.7K bytes
    - Viewed (0)
  3. 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
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Jun 07 08:20:38 GMT 2023
    - 4.6K 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"
                                            }
                                          }
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Mar 12 10:02:09 GMT 2024
    - 51.6K bytes
    - Viewed (0)
  5. 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
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 4.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/primitives/UnsignedLongs.java

       */
      @CanIgnoreReturnValue
      public static long decode(String stringValue) {
        ParseRequest request = ParseRequest.fromString(stringValue);
    
        try {
          return parseUnsignedLong(request.rawValue, request.radix);
        } catch (NumberFormatException e) {
          NumberFormatException decodeException =
              new NumberFormatException("Error parsing value: " + stringValue);
          decodeException.initCause(e);
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 17.6K bytes
    - Viewed (0)
  7. 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:
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sun Dec 24 08:16:26 GMT 2023
    - 2.5K bytes
    - Viewed (0)
  8. 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\"}"
                                    }
                                }
                            }
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sun Dec 24 08:16:26 GMT 2023
    - 5.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/primitives/UnsignedInts.java

       */
      @CanIgnoreReturnValue
      public static int decode(String stringValue) {
        ParseRequest request = ParseRequest.fromString(stringValue);
    
        try {
          return parseUnsignedInt(request.rawValue, request.radix);
        } catch (NumberFormatException e) {
          NumberFormatException decodeException =
              new NumberFormatException("Error parsing value: " + stringValue);
          decodeException.initCause(e);
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 13.4K bytes
    - Viewed (0)
  10. 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\"}"
                            }
                        }
                    }
                },
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sun Dec 24 08:16:26 GMT 2023
    - 4.2K bytes
    - Viewed (0)
Back to top