Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,558 for necessarily (0.36 sec)

  1. guava/src/com/google/common/net/PercentEscaper.java

       */
      private final boolean[] safeOctets;
    
      /**
       * Constructs a percent escaper with the specified safe characters and optional handling of the
       * space character.
       *
       * <p>Not that it is allowed, but not necessarily desirable to specify {@code %} as a safe
       * character. This has the effect of creating an escaper which has no well-defined inverse but it
       * can be useful when escaping additional characters.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildRegistryTest.groovy

            nestedBuild1.identityPath == Path.path(":buildSrc")
    
            def nestedBuild2 = registry.getBuildSrcNestedBuild(parent)
            // Shows current behaviour, not necessarily desired behaviour
            nestedBuild2.buildIdentifier == buildIdentifier(":parent:buildSrc")
            nestedBuild2.identityPath == Path.path(":parent:buildSrc")
        }
    
        def build(String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 14:36:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Ordering.java

       * from least to greatest. If there are fewer than {@code k} elements present, all will be
       * included.
       *
       * <p>The implementation does not necessarily use a <i>stable</i> sorting algorithm; when multiple
       * elements are equivalent, it is undefined which will come first.
       *
       * <p><b>Java 8+ users:</b> Use {@code Streams.stream(iterable).collect(Comparators.least(k,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskClassChangesIncrementalCompilationIntegrationTest.groovy

            when:
            source api: ["class A { \n}"]
            run "impl:${language.compileTaskName}"
    
            then:
            impl.noneRecompiled()
        }
    
        // This test checks the current behavior, not necessarily the desired one.
        // If all classes are compiled by the same compile task, we do not know if a
        // change is an abi change or not. Hence, an abi change is always assumed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  5. src/go/types/union.go

    			// in the beginning. Embedded interfaces with tilde are excluded above. If we reach
    			// here, we must have at least two terms in the syntactic term list (but not necessarily
    			// in the term list of the union's type set).
    			if f != nil {
    				tset := f.typeSet()
    				switch {
    				case tset.NumMethods() != 0:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. src/compress/gzip/gzip.go

    	}
    	// GZIP strings are NUL-terminated.
    	z.buf[0] = 0
    	_, err = z.w.Write(z.buf[:1])
    	return err
    }
    
    // Write writes a compressed form of p to the underlying [io.Writer]. The
    // compressed bytes are not necessarily flushed until the [Writer] is closed.
    func (z *Writer) Write(p []byte) (int, error) {
    	if z.err != nil {
    		return 0, z.err
    	}
    	var n int
    	// Write the GZIP header lazily.
    	if !z.wroteHeader {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. src/index/suffixarray/sais2.go

    	// happen at sa[i´] for some i´ > i, that is, in the portion of sa we have
    	// yet to scan. A single pass therefore sees indexes j, j-1, j-2, j-3,
    	// and so on, in sorted but not necessarily adjacent order, until it finds
    	// one preceded by an index of type S, at which point it must stop.
    	//
    	// As we scan through the array, we clear the worked entries (sa[i] > 0) to zero,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. src/net/dial.go

    	Cancel <-chan struct{}
    
    	// If Control is not nil, it is called after creating the network
    	// connection but before actually dialing.
    	//
    	// Network and address parameters passed to Control function are not
    	// necessarily the ones passed to Dial. For example, passing "tcp" to Dial
    	// will cause the Control function to be called with "tcp4" or "tcp6".
    	//
    	// Control is ignored if ControlContext is not nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/DiscreteDomain.java

       * and {@code distance(end, start) == -3}. As well, {@code distance(a, a)} is always zero.
       *
       * <p>Note that this function is necessarily well-defined for any discrete type.
       *
       * @return the distance as described above, or {@link Long#MIN_VALUE} or {@link Long#MAX_VALUE} if
       *     the distance is too small or too large, respectively.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/build_overlay.txt

    stderr '(compile|gccgo)( |\.exe).*test_cache.go'  # not cached
    env CACHE=$OLD_GOCACHE
    
    # Run same tests but with gccgo.
    env GO111MODULE=off
    [!exec:gccgo] stop
    [cross] stop  # gccgo can't necessarily cross-compile
    
    ! go build -compiler=gccgo .
    go build -compiler=gccgo -overlay overlay.json -o main_gccgo$GOEXE .
    exec ./main_gccgo$goexe
    stdout '^hello$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 29 00:40:18 UTC 2022
    - 7.9K bytes
    - Viewed (0)
Back to top