Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 76 for fn_name (0.1 sec)

  1. src/crypto/tls/handshake_client.go

    				c.sendAlert(alertBadCertificate)
    				return err
    			}
    		} else {
    			opts := x509.VerifyOptions{
    				Roots:         c.config.RootCAs,
    				CurrentTime:   c.config.time(),
    				DNSName:       c.serverName,
    				Intermediates: x509.NewCertPool(),
    			}
    
    			for _, cert := range certs[1:] {
    				opts.Intermediates.AddCert(cert)
    			}
    			var err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  2. cluster/gce/windows/smoke-test.sh

      ${kubectl} delete deployment "$windows_command_deployment"
    }
    
    function test_linux_node_to_linux_pod {
      echo "TODO: ${FUNCNAME[0]}"
    }
    
    function test_linux_node_to_windows_pod {
      echo "TODO: ${FUNCNAME[0]}"
    }
    
    function test_linux_pod_to_linux_pod {
      echo "TEST: ${FUNCNAME[0]}"
      local linux_command_pod
      linux_command_pod="$(get_linux_command_pod_name)"
      local linux_webserver_pod_ip
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java

            }
        }
    
        protected boolean isSupportedCharset(final String charsetName) {
            if (charsetName == null) {
                return false;
            }
            try {
                Charset.forName(charsetName);
            } catch (final Exception e) {
                return false;
            }
            return true;
        }
    
        protected String loadCharset(final InputStream inputStream) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/cmd/link/internal/ld/dwarf.go

    		sn := d.ldr.SymName(rsym)
    		tn := sn[len(dwarf.InfoPrefix):]
    		ts := d.ldr.Lookup("type:"+tn, 0)
    		d.defgotype(ts)
    	}
    }
    
    func expandFile(fname string) string {
    	fname = strings.TrimPrefix(fname, src.FileSymPrefix)
    	return expandGoroot(fname)
    }
    
    // writeDirFileTables emits the portion of the DWARF line table
    // prologue containing the include directories and file names,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top