Search Options

Results per page
Sort
Preferred Languages
Advance

Results 321 - 330 of 4,159 for alse (0.03 sec)

  1. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                for (final Object child : (String[]) obj) {
                    if (first) {
                        first = false;
                    } else {
                        buf.append(',');
                    }
                    buf.append(escapeJson(child));
                }
                buf.append(']');
            } else if (obj instanceof List<?>) {
                buf.append('[');
                boolean first = true;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:46 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  2. cmd/net.go

    	host1, port1, err := extractHostPort(addr1)
    	if err != nil {
    		return false, err
    	}
    	host2, port2, err := extractHostPort(addr2)
    	if err != nil {
    		return false, err
    	}
    
    	var addr1Local, addr2Local bool
    
    	if host1 == "" {
    		// If empty host means it is localhost
    		addr1Local = true
    	} else if addr1Local, err = isLocalHost(host1, port1, port1); err != nil {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Jun 19 14:34:00 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/MapInterfaceTest.java

          if (value != null) {
            try {
              int unused = value.hashCode();
            } catch (Exception e) {
              return false;
            }
            return true;
          }
        }
        return true;
      }
    
      /**
       * Checks all the properties that should always hold of a map. Also calls {@link
       * #assertMoreInvariants} to check invariants that are peculiar to specific implementations.
       *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/netbios/Lmhosts.java

                    j = i;
                    while( j < data.length && Character.isWhitespace( data[j] ) == false ) {
                        j++;
                    }
    
                    name = new Name( line.substring( i, j ), 0x20, null );
                    addr = new NbtAddress( name, ip, false, NbtAddress.B_NODE,
                                        false, false, true, true,
                                        NbtAddress.UNKNOWN_MAC_ADDRESS );
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 5.8K bytes
    - Viewed (0)
  5. scan.go

    				continue
    			}
    			values[idx] = new(interface{})
    		}
    	} else if len(columnTypes) > 0 {
    		for idx, columnType := range columnTypes {
    			if columnType.ScanType() != nil {
    				values[idx] = reflect.New(reflect.PtrTo(columnType.ScanType())).Interface()
    			} else {
    				values[idx] = new(interface{})
    			}
    		}
    	} else {
    		for idx := range columns {
    			values[idx] = new(interface{})
    		}
    	}
    }
    
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Mon Jun 24 09:42:59 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/publicsuffix/PublicSuffixDatabase.kt

            var currentLabelByteIndex = 0
            var publicSuffixByteIndex = 0
    
            var expectDot = false
            while (true) {
              val byte0: Int
              if (expectDot) {
                byte0 = '.'.code
                expectDot = false
              } else {
                byte0 = labels[currentLabelIndex][currentLabelByteIndex] and 0xff
              }
    
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. impl/maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java

                            result = false;
                            break;
                        }
                    }
                    // check for exact match
                    else if (repo.equals(originalId)) {
                        result = true;
                        break;
                    }
                    // check for external:*
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  8. compat/maven-compat/src/main/java/org/apache/maven/project/artifact/ActiveProjectArtifact.java

                return false;
            }
    
            Artifact a = (Artifact) o;
    
            if (!a.getGroupId().equals(getGroupId())) {
                return false;
            } else if (!a.getArtifactId().equals(getArtifactId())) {
                return false;
            } else if (!a.getVersion().equals(getVersion())) {
                return false;
            } else if (!a.getType().equals(getType())) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

                            continue;
                        }
                        tmp[i++] = RESOLVER_WINS;
                    } else if( s.equalsIgnoreCase( "BCAST" )) {
                        tmp[i++] = RESOLVER_BCAST;
                    } else if( s.equalsIgnoreCase( "DNS" )) {
                        ; // skip
                    } else if( log.level > 1 ) {
                        log.println( "unknown resolver method: " + s );
                    }
                }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 17.4K bytes
    - Viewed (0)
  10. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/JavaSourceQueries.kt

                if (declaration.matchesNameAndIsSince(classSimpleName, version)) true
                else super.visit(declaration, arg)
    
            override fun visit(declaration: AnnotationDeclaration, arg: Unit?): Boolean? =
                if (declaration.matchesNameAndIsSince(classSimpleName, version)) true
                else super.visit(declaration, arg)
    
            override fun visit(declaration: EnumDeclaration, arg: Unit?): Boolean? =
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Fri Jun 28 08:29:24 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top