Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 81 for order1 (0.8 sec)

  1. guava-tests/test/com/google/common/collect/SetsTest.java

                        return Sets.unmodifiableNavigableSet(set);
                      }
    
                      @Override
                      public List<String> order(List<String> insertionOrder) {
                        return Ordering.natural().sortedCopy(insertionOrder);
                      }
                    })
                .named("Sets.unmodifiableNavigableSet[TreeSet]")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/regalloc.go

    		}
    	}
    
    	// Linear scan register allocation can be influenced by the order in which blocks appear.
    	// Decouple the register allocation order from the generated block order.
    	// This also creates an opportunity for experiments to find a better order.
    	s.visitOrder = layoutRegallocOrder(f)
    
    	// Compute block order. This array allows us to distinguish forward edges
    	// from backward edges and compute how far they go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Iterators.java

            removeFrom.remove();
            result = true;
          }
        }
        return result;
      }
    
      /**
       * Determines whether two iterators contain equal elements in the same order. More specifically,
       * this method returns {@code true} if {@code iterator1} and {@code iterator2} contain the same
       * number of elements and every element of {@code iterator1} is equal to the corresponding element
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/CharMatcher.java

      /**
       * Returns the index of the first matching BMP character in a character sequence, or {@code -1} if
       * no matching character is present.
       *
       * <p>The default implementation iterates over the sequence in forward order calling {@link
       * #matches} for each character.
       *
       * @param sequence the character sequence to examine from the beginning
       * @return an index, or {@code -1} if no character matches
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Iterators.java

            removeFrom.remove();
            result = true;
          }
        }
        return result;
      }
    
      /**
       * Determines whether two iterators contain equal elements in the same order. More specifically,
       * this method returns {@code true} if {@code iterator1} and {@code iterator2} contain the same
       * number of elements and every element of {@code iterator1} is equal to the corresponding element
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/xcoff.go

    	XCOFF_R_TLSM   = 0x24 // Module reference to TLS symbol
    	XCOFF_R_TLSML  = 0x25 // Module reference to local (own) module
    
    	XCOFF_R_TOCU = 0x30 // Relative to TOC - high order bits
    	XCOFF_R_TOCL = 0x31 // Relative to TOC - low order bits
    )
    
    type XcoffLdStr64 struct {
    	size uint16
    	name string
    }
    
    // xcoffFile is used to build XCOFF file.
    type xcoffFile struct {
    	xfhdr           XcoffFileHdr64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/buildlist.go

    		// (https://golang.org/ref/mod#lazy-loading) only if the module graph is
    		// pruned.
    		//
    		// In unpruned modules,we load the module graph much more aggressively (in
    		// order to detect inconsistencies that wouldn't be feasible to spot-check),
    		// so it wouldn't be useful to log when that occurs (because it happens in
    		// normal operation all the time).
    		readModGraphDebugOnce.Do(func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/debug.go

    func (ls liveSlot) absent() bool {
    	return ls.Registers == 0 && !ls.onStack()
    }
    
    // StackOffset encodes whether a value is on the stack and if so, where.
    // It is a 31-bit integer followed by a presence flag at the low-order
    // bit.
    type StackOffset int32
    
    func (s StackOffset) onStack() bool {
    	return s != 0
    }
    
    func (s StackOffset) stackOffsetValue() int32 {
    	return int32(s) >> 1
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  9. fess-crawler/src/test/resources/ajax/js/jquery-2.1.1.min.js

    +(d[2]||"px"):b}function Hb(a,b,c,d,e){for(var f=c===(d?"border":"content")?4:"width"===b?1:0,g=0;4>f;f+=2)"margin"===c&&(g+=n.css(a,c+R[f],!0,e)),d?("content"===c&&(g-=n.css(a,"padding"+R[f],!0,e)),"margin"!==c&&(g-=n.css(a,"border"+R[f]+"Width",!0,e))):(g+=n.css(a,"padding"+R[f],!0,e),"padding"!==c&&(g+=n.css(a,"border"+R[f]+"Width",!0,e)));return g}function Ib(a,b,c){var d=!0,e="width"===b?a.offsetWidth:a.offsetHeight,f=wb(a),g="border-box"===n.css(a,"boxSizing",!1,f);if(0>=e||null==e){if(e=x...
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 82.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

        def "fails when property has multiple producers attached"() {
            def owner1 = owner()
            owner1.modelIdentityDisplayName >> displayName("<owner 1>")
            def owner2 = owner()
            owner2.modelIdentityDisplayName >> displayName("<owner 2>")
    
            given:
            def property = propertyWithNoValue()
            property.attachProducer(owner1)
    
            when:
            property.attachProducer(owner2)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
Back to top