Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for fn_name (0.17 sec)

  1. src/crypto/x509/parser.go

    			}
    			emailAddresses = append(emailAddresses, email)
    		case nameTypeDNS:
    			name := string(data)
    			if err := isIA5String(name); err != nil {
    				return errors.New("x509: SAN dNSName is malformed")
    			}
    			dnsNames = append(dnsNames, string(name))
    		case nameTypeURI:
    			uriStr := string(data)
    			if err := isIA5String(uriStr); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    		} else {
    			// pure HTTP headless services should not need a full push since they do not
    			// require a Listener based on IP: https://github.com/istio/istio/issues/48207
    			configsUpdated.Insert(model.ConfigKey{Kind: kind.DNSName, Name: config.Name, Namespace: config.Namespace})
    		}
    	}
    
    	if len(configsUpdated) > 0 {
    		// For headless services, trigger a full push.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/hash/Hashing.java

            return functions[0];
          }
    
          // We can't refer to JAVA_UTIL_ZIP directly at compile time because of J2ObjC.
          Crc32CSupplier javaUtilZip = functions[0];
    
          try {
            Class.forName("java.util.zip.CRC32C");
            return javaUtilZip;
          } catch (ClassNotFoundException runningUnderJava8) {
            return ABSTRACT_HASH_FUNCTION;
          }
        }
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  4. maven-di/src/main/java/org/apache/maven/di/impl/Types.java

            } else if (type instanceof GenericArrayType) {
                Class<?> rawComponentType = getRawType(((GenericArrayType) type).getGenericComponentType());
                try {
                    return Class.forName("[L" + rawComponentType.getName() + ";");
                } catch (ClassNotFoundException e) {
                    throw new RuntimeException(e);
                }
            } else if (type instanceof TypeVariable) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  5. guava/src/com/google/common/primitives/UnsignedBytes.java

         * to do so.
         */
        static Comparator<byte[]> getBestComparator() {
          try {
            Class<?> theClass = Class.forName(UNSAFE_COMPARATOR_NAME);
    
            // requireNonNull is safe because the class is an enum.
            Object[] constants = requireNonNull(theClass.getEnumConstants());
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/BeanDynamicObject.java

        }
    
        private static final MethodHandle ADD_INVOCATION_HOOKS_TO_META_CLASS_METHOD;
    
        static {
            try {
                Class<?> metaClassHelperClass = Class.forName("org.gradle.internal.classpath.InstrumentedGroovyMetaClassHelper");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  7. pilot/pkg/model/sidecar.go

    	for _, h := range istioListener.Hosts {
    		parts := strings.SplitN(h, "/", 2)
    		if len(parts) < 2 {
    			log.Errorf("Illegal host in sidecar resource: %s, host must be of form namespace/dnsName", h)
    			continue
    		}
    		if parts[0] == currentNamespace {
    			parts[0] = configNamespace
    		}
    
    		ns := parts[0]
    		hName := host.Name(parts[1])
    		if _, exists := hostsByNamespace[ns]; !exists {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
Back to top