Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 209 for bland (0.04 sec)

  1. src/go/ast/ast.go

    		// Walk lines, stripping trailing white space and adding to list.
    		for _, l := range cl {
    			lines = append(lines, stripTrailingWhitespace(l))
    		}
    	}
    
    	// Remove leading blank lines; convert runs of
    	// interior blank lines to a single blank line.
    	n := 0
    	for _, line := range lines {
    		if line != "" || n > 0 && lines[n-1] != "" {
    			lines[n] = line
    			n++
    		}
    	}
    	lines = lines[0:n]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  2. javadoc-stylesheet.css

    }
    
    /*
     Fixes for a number of issues with the default stylesheet.
     */
    
    /* Fixes huge font size in <pre>{@code} blocks. */
    pre code {
        font-size:inherit;
    }
    
    /*
     Fixes issue with no blank line before <pre> in class-level Javadoc
     when the <pre> is preceded by a block of text with no <p>.
     */
    .description .block pre {
        margin-top:1em;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jul 17 21:01:06 UTC 2013
    - 11.2K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseWtpComponent.java

    import java.util.Map;
    import java.util.Set;
    
    import static org.gradle.util.internal.ConfigureUtil.configure;
    
    /**
     * Enables fine-tuning wtp component details of the Eclipse plugin
     * <p>
     * Example of use with a blend of all possible properties.
     * Bear in mind that usually you don't have to configure them directly because Gradle configures it for free!
     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'war' // or 'ear' or 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  4. src/regexp/exec_test.go

    		re        *Regexp
    		refull    *Regexp
    		nfail     int
    		ncase     int
    	)
    	for lineno := 1; scanner.Scan(); lineno++ {
    		line := scanner.Text()
    		switch {
    		case line == "":
    			t.Fatalf("%s:%d: unexpected blank line", file, lineno)
    		case line[0] == '#':
    			continue
    		case 'A' <= line[0] && line[0] <= 'Z':
    			// Test name.
    			t.Logf("%s\n", line)
    			continue
    		case line == "strings":
    			str = str[:0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/PluginHelper.java

            final String fileName = artifact.getFileName();
            final String url = artifact.getUrl();
            if (StringUtil.isBlank(url)) {
                throw new PluginException("url is blank: " + artifact.getName());
            }
            if (url.startsWith("http:") || url.startsWith("https:")) {
                try (final CurlResponse response = createCurlRequest(url).execute()) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  6. src/cmd/trace/tasks.go

    		return trace.NoGoroutine
    	}
    	return st.Resource.Goroutine()
    }
    
    func elapsed(d time.Duration) string {
    	b := fmt.Appendf(nil, "%.9f", d.Seconds())
    
    	// For subsecond durations, blank all zeros before decimal point,
    	// and all zeros between the decimal point and the first non-zero digit.
    	if d < time.Second {
    		dot := bytes.IndexByte(b, '.')
    		for i := 0; i < dot; i++ {
    			b[i] = ' '
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. src/go/types/check.go

    	imports       []*PkgName                // list of imported packages
    	dotImportMap  map[dotImportKey]*PkgName // maps dot-imported objects to the package they were dot-imported through
    	recvTParamMap map[*ast.Ident]*TypeParam // maps blank receiver type parameters to their type
    	brokenAliases map[*TypeName]bool        // set of aliases with broken (not yet determined) types
    	unionTypeSets map[*Union]*_TypeSet      // computed type sets for union types
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. src/crypto/rsa/rsa_test.go

    			}
    
    			// Decrypt with blinding.
    			out, err = DecryptOAEP(sha1, random, private, message.out, nil)
    			if err != nil {
    				t.Errorf("#%d,%d (blind) error: %s", i, j, err)
    			} else if !bytes.Equal(out, message.in) {
    				t.Errorf("#%d,%d (blind) bad result: %#v (want %#v)", i, j, out, message.in)
    			}
    		}
    		if testing.Short() {
    			break
    		}
    	}
    }
    
    func Test2DecryptOAEP(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 12 00:55:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseProject.java

    import java.util.Set;
    
    import static org.gradle.util.internal.ConfigureUtil.configure;
    
    /**
     * Enables fine-tuning project details (.project file) of the Eclipse plugin
     * <p>
     * Example of use with a blend of all possible properties.
     * Bear in mind that usually you don't have configure eclipse project directly because Gradle configures it for free!
     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/check.go

    	dotImportMap  map[dotImportKey]*PkgName   // maps dot-imported objects to the package they were dot-imported through
    	recvTParamMap map[*syntax.Name]*TypeParam // maps blank receiver type parameters to their type
    	brokenAliases map[*TypeName]bool          // set of aliases with broken (not yet determined) types
    	unionTypeSets map[*Union]*_TypeSet        // computed type sets for union types
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
Back to top