Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 209 for bland (0.04 sec)

  1. src/main/webapp/WEB-INF/view/common/admin/sidebar.jsp

    <%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %>
    <aside class="main-sidebar sidebar-dark-primary">
    	<la:link href="/admin/" styleClass="brand-link text-center">
    		<span class="brand-text">
    		<c:if test="${empty param.brandName or empty param.logoPath}"><img src="${fe:url('/images/logo-head.png')}" alt="<la:message key="labels.header_brand_name" />" /></c:if
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 15 20:55:28 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  2. src/encoding/csv/reader.go

    //
    //	field1,field2,field3
    //
    // White space is considered part of a field.
    //
    // Carriage returns before newline characters are silently removed.
    //
    // Blank lines are ignored. A line with only whitespace characters (excluding
    // the ending newline character) is not considered a blank line.
    //
    // Fields which start and stop with the quote character " are called
    // quoted-fields. The beginning and ending quote are not part of the
    // field.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:32:28 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. docs/pl/docs/help-fastapi.md

    ich o dostarczenie <a href="https://stackoverflow.com/help/minimal-reproducible-example" class="external-link" target="_blank">minimalnego, odtwarzalnego przykładu</a>, który możesz **skopiować i wkleić** i uruchomić lokalnie, aby zobaczyć ten sam błąd lub zachowanie, które widzą, lub lepiej zrozumieć ich przypadki użycia.
    
    * Jeśli jesteś wyjątkowo pomocny, możesz spróbować **stworzyć taki przykład** samodzielnie, opierając się tylko na opisie problemu. Miej na uwadze, że może to zająć...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

                System.arraycopy( e8, 0, e, i * 8, 8 );
            }
        }
    
        static String DEFAULT_DOMAIN;
        static String DEFAULT_USERNAME;
        static String DEFAULT_PASSWORD;
        static final String BLANK = "";
    
        public static final NtlmPasswordAuthentication ANONYMOUS = new NtlmPasswordAuthentication("", "", "");
    
        static void initDefaults() {
            if (DEFAULT_DOMAIN != null) return;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 22.5K bytes
    - Viewed (0)
  5. src/encoding/binary/binary_test.go

    			}
    
    			// zero values must have been written for blank fields
    			var p BlankFieldsProbe
    			if err := Read(bytes.NewReader(buf), LittleEndian, &p); err != nil {
    				t.Error(err)
    			}
    
    			// quick test: only check first value of slices
    			if p.P0 != 0 || p.P1[0] != 0 || p.P2[0] != 0 || p.P3.F[0] != 0 {
    				t.Errorf("non-zero values for originally blank fields: %#v", p)
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:16:18 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/resolver.go

    		obj  *Func        // method
    		ptr  bool         // true if pointer receiver
    		recv *syntax.Name // receiver type name
    	}
    	var methods []methodInfo // collected methods with valid receivers and non-blank _ names
    	var fileScopes []*Scope
    	for fileNo, file := range check.files {
    		// The package identifier denotes the current package,
    		// but there is no corresponding package object.
    		check.recordDef(file.PkgName, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  7. src/go/types/resolver.go

    	type methodInfo struct {
    		obj  *Func      // method
    		ptr  bool       // true if pointer receiver
    		recv *ast.Ident // receiver type name
    	}
    	var methods []methodInfo // collected methods with valid receivers and non-blank _ names
    	var fileScopes []*Scope
    	for fileNo, file := range check.files {
    		// The package identifier denotes the current package,
    		// but there is no corresponding package object.
    		check.recordDef(file.Name, nil)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  8. pkg/registry/core/pod/strategy.go

    		} else {
    			loc.Host = podIP
    		}
    	} else {
    		loc.Host = net.JoinHostPort(podIP, port)
    	}
    	return loc, rt, nil
    }
    
    // LogLocation returns the log URL for a pod container. If opts.Container is blank
    // and only one container is present in the pod, that container is used.
    func LogLocation(
    	ctx context.Context, getter ResourceGetter,
    	connInfo client.ConnectionInfoGetter,
    	name string,
    	opts *api.PodLogOptions,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  9. fess-crawler-es/src/main/java/org/codelibs/fess/crawler/service/impl/EsUrlQueueService.java

        public boolean visited(final EsUrlQueue urlQueue) {
            final String url = urlQueue.getUrl();
            if (StringUtil.isBlank(url)) {
                if (logger.isDebugEnabled()) {
                    logger.debug("URL is a blank: {}", url);
                }
                return false;
            }
    
            final String sessionId = urlQueue.getSessionId();
            if (super.exists(sessionId, url)) {
                return true;
            }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_unix.go

    		from, err = anyToSockaddr(fd, &rsa)
    	}
    	return
    }
    
    // Recvmsg receives a message from a socket using the recvmsg system call. The
    // received non-control data will be written to p, and any "out of band"
    // control data will be written to oob. The flags are passed to recvmsg.
    //
    // The results are:
    //   - n is the number of non-control data bytes read into p
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 16.5K bytes
    - Viewed (0)
Back to top