Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of about 10,000 for lisp (0.14 sec)

  1. src/cmd/vendor/golang.org/x/arch/x86/x86asm/inst.go

    			plus = "+"
    		}
    		if m.Scale > 1 {
    			scale = fmt.Sprintf("%d*", m.Scale)
    		}
    		index = m.Index.String()
    	}
    	if m.Disp != 0 || m.Base == 0 && m.Scale == 0 {
    		disp = fmt.Sprintf("%+#x", m.Disp)
    	}
    	return "[" + base + plus + scale + index + disp + "]"
    }
    
    // A Rel is an offset relative to the current instruction pointer.
    type Rel int32
    
    func (Rel) isArg() {}
    
    func (r Rel) String() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/sso/aad/AzureAdAuthenticatorTest.java

            list.clear();
            authenticator.addGroupOrRoleName(list, "test", false);
            assertEquals(1, list.size());
            assertEquals("test", list.get(0));
    
            list.clear();
            authenticator.addGroupOrRoleName(list, "******@****.***", true);
            assertEquals(2, list.size());
            assertEquals("******@****.***", list.get(0));
            assertEquals("test", list.get(1));
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/SortedLists.java

              @ParametricNullness E key,
              List<? extends E> list,
              int foundIndex) {
            return FIRST_PRESENT.resultIndex(comparator, key, list, foundIndex) - 1;
          }
        };
    
        abstract <E extends @Nullable Object> int resultIndex(
            Comparator<? super E> comparator,
            @ParametricNullness E key,
            List<? extends E> list,
            int foundIndex);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    			seg += "%fs:"
    		}
    		if haveGS {
    			seg += "%gs:"
    		}
    		disp := ""
    		if x.Disp != 0 {
    			disp = fmt.Sprintf("%#x", x.Disp)
    		}
    		if x.Scale == 0 || x.Index == 0 && x.Scale == 1 && (x.Base == ESP || x.Base == RSP || x.Base == 0 && inst.Mode == 64) {
    			if x.Base == 0 {
    				return seg + disp
    			}
    			return fmt.Sprintf("%s%s(%s)", seg, disp, gccRegName[x.Base])
    		}
    		base := gccRegName[x.Base]
    		if x.Base == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/core/collection/SLinkedListTest.java

            list.addLast(null);
            list.addLast("1");
            list.addLast("2");
            assertThat(list.remove("3"), is(not(true)));
            assertThat(list.remove("1"), is(true));
            assertThat(list.remove(null), is(true));
            list.clear();
            list.addLast("1");
            list.addLast("2");
            list.addLast("3");
            list.remove(1);
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. internal/event/targetlist.go

    	defer list.RUnlock()
    
    	targets := []Target{}
    	for _, tgt := range list.targets {
    		targets = append(targets, tgt)
    	}
    
    	return targets
    }
    
    // List - returns available target IDs.
    func (list *TargetList) List() []TargetID {
    	list.RLock()
    	defer list.RUnlock()
    
    	keys := []TargetID{}
    	for k := range list.targets {
    		keys = append(keys, k)
    	}
    
    	return keys
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Lists.java

      public static <T extends @Nullable Object> List<List<T>> partition(List<T> list, int size) {
        checkNotNull(list);
        checkArgument(size > 0);
        return (list instanceof RandomAccess)
            ? new RandomAccessPartition<>(list, size)
            : new Partition<>(list, size);
      }
    
      private static class Partition<T extends @Nullable Object> extends AbstractList<List<T>> {
        final List<T> list;
        final int size;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/reflect/TypeTokenSubtypeTest.java

          return isSubtype(list);
        }
    
        @TestSubtype(suppressGetSupertype = true, suppressGetSubtype = true)
        public <T> Iterable<? extends T> wildCardsDoNotMatchByUpperBound(List<?> list) {
          return notSubtype(list);
        }
    
        @TestSubtype(suppressGetSupertype = true, suppressGetSubtype = true)
        public <T> Iterable<? super String> wildcardsMatchByLowerBound(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/templates/java-junit5-test-for-list-library/src/test/java/org/gradle/sample/list/LinkedListTest.java

            list.add("two");
            assertEquals(2, list.size());
            assertEquals("two", list.get(1));
        }
    
        @Test public void testRemove() {
            LinkedList list = new LinkedList();
    
            list.add("one");
            list.add("two");
            assertTrue(list.remove("one"));
    
            assertEquals(1, list.size());
            assertEquals("two", list.get(0));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/kotlinapplication/multi/list/junit5/LinkedListTest.kt.template

            list.add("one")
            list.add("two")
            assertTrue(list.remove("one"))
    
            assertEquals(1, list.size())
            assertEquals("two", list.get(0))
    
            assertTrue(list.remove("two"))
            assertEquals(0, list.size())
        }
    
        @Test fun testRemoveMissing() {
            val list = LinkedList()
    
            list.add("one")
            list.add("two")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top